I am doing simplification of polygons for storage and calculation
efficiency. and would like to do polygon-simplification.
Currently I use the postgis function ST_SimplifyPreserveTopology to do the
simplification, however the dataset is growing large and I would like to
move the pre-processing away from the database which should be busy
answering real-time queries.
I am already doing pre-processing (parsing from list(x,y,level),
rasterisation and polygonization) in python (and distributed too, thanks to
the new multiprocessing module).
So, I spotted the shapely bindings for GEOS, and the thread
http://www.mail-archive.com/[email protected]/msg00510.htmlwhich
indicated that a Douglas-Peucker variant was easily accessible for me
and my pre-processing code.
However I have checked out the trunk and not been able to "from
shapely.geos.ops import simplify", or even find the shapely.geos.ops module
_______________________________________________
Community mailing list
[email protected]
http://lists.gispython.org/mailman/listinfo/community