Is there any tool available which let's me run millions of parcel shapefiles and simplify them?
|
|
You could try Shapely - a Python API built on top of GEOS. As both Shapely and GDAL have Python libraries you can easily combine them to data from many different sources (including shapefiles) and then simplifying and exporting as desired. The only downside may be speed if you are doing millions of features - it could be faster to use GEOS or JTS directly. See the simplify method:
|
|||
|
|
|
ogr2ogr has a "segmentize" option that appears to do what you need: GDAL ogr2ogr documentation From that page:
|
|||
|
|
|
If your data is stored in PostGIS, try using ST_SimplifyPreserveTopology. |
|||
|
|
|
GRASS v.generalize |
||||
|
|
Version 9.0 of GDAL/OGR added the -simplify option to the ogr2ogr command. The documentation indicates that it preserves topology.
Example usage:
|
|||
|
|
|
You could try Mapshaper. There are maybe some limitations due to your file size. |
|||
|
|
|
Inspire from Mapshaper, but directly in local, look on https://github.com/migurski/Bloch |
|||
|