This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building wheels for collected packages: image-blender | |
Building wheel for image-blender (pyproject.toml) ... error | |
error: subprocess-exited-with-error | |
× Building wheel for image-blender (pyproject.toml) did not run successfully. | |
│ exit code: 1 | |
╰─> [17 lines of output] | |
Warning: 'classifiers' should be a list, got type 'tuple' | |
running bdist_wheel | |
running build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python2 | |
import mapnik | |
import cairo | |
import sys | |
# a2 = 16.55 x 23.4 inches | |
# take one inch on each margin | |
# a2_margin = 14.55 x 21.4 | |
# 300 dpi for printing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python3 | |
import shapely.wkt | |
import shapely.wkb | |
import shapely.geometry | |
import psycopg2 | |
s= open('121897178.wkt').read() | |
sh= shapely.wkt.loads(s) |