How I can export (import) data from TAB format to MIF and vice versa?
Asked
Active
Viewed 1.5k times
2 Answers
8
If you would like to use an Open Source Tool you could use GDAL/OGR: http://www.gdal.org/ogr/drv_mitab.html
To convert from one ogr-supported (MIF, TAB, SHAPE, PostGIS, GML, ...) format to another you could for example do the following:
ogr2ogr -f "MapInfo File" dst_datasource -dsco FORMAT=MIF src_datasource
This would convert any ogr-file in the folder 'src_datasource' to a MIF-File in the folder 'dst_datasource'. Without the switch "-dsco FORMAT=MIF" you will get TAB-Format. Assume you would like to convert Esri Shapefiles to TAB:
ogr2ogr -f "ESRI Shapefile" dst_datasource src_datasource
Torsten
- 524
- 3
- 5