features2gpkg_parallel.py: New development
stevendlander opened this issue · 2 comments
stevendlander commented
Create a script that can accept certain OGR-supported vector files and creates a GeoPackage with from that data.
techmavengeospatial commented
Is that really needed since GDAL OGR already natively supports that. Use OGR2OGR and convert any OGR Vector File or Database to a GeoPackage http://www.gdal.org/ogr2ogr.html
You can process an entire folder of shapefiles or individual files
ogr2ogr -f GPKG %outputfolder%\name.gpkg %sourcefolder%
stevendlander commented
Probably not need any longer since OGR does indeed support this now. Back in late 2014, I dont think the support was there.