Vector Format Conversion Using ogr2ogr: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 16:
==Bulk Format Conversion==
<Br>
'''Convert All Files Within Folder to a Single GPKG'''<br>
<pre>ogr2ogr.exe -f GPKG all_layers.gpkg ./path/to/dir</pre>
'''Convert All Files Within Folder to a Single GPKG with Wildcard'''<br>
<pre>ogr2ogr.exe -f GPKG all_layers.gpkg ./path/to/dir/*.shp</pre>
'''Convert All Files From a GPKG to a SHP'''<br>