Vector Format Conversion Using ogr2ogr: Difference between revisions

Content deleted Content added
Created page with "This page lists useful batch file examples for using ogr2ogr.exe. For complete documentation on this tool please visit '''<u>[https://gdal.org/programs/ogr2ogr.html#ogr2ogr gd..."
 
No edit summary
Line 2:
 
===Basic Format Conversion===
Format conversion can be done using "<tt>-f <format_name></tt>" then specifying the "<tt><destination_filename> <source_filename></tt>".<br>
'''SHP to GPKG'''<Br>
<pre>ogr2ogr.exe -f GPKG 2d_code_M01_R.gpkg 2d_code_M01_R.shp</pre>
'''MIF to SHP''' - ''assuming only one geometry type exists in the MIF file''<Br>
<pre>ogr2ogr.exe -f "ESRI Shapefile" 2d_code_M01_R.shp 2d_code_M01.mif</pre>