Tagged Questions
4
votes
3answers
163 views
ogrinfo bash script failure
I need to recursively document a bunch of Shapefiles using orginfo in many directories. For example,
$ tree -P *.shp
.
├── acfish2s
│ └── acfish2.shp
├── airports
│ ├── airport_runways.shp
│ ...
2
votes
3answers
318 views
How to merge a large amount of polygon-features in a script?
We have a very large shapefile with over 30000 features and want to merge it with a script on a server. Currently we try it with QGIS, but the processing takes way too much time.
Is there a way to do ...