0

I have serval postgis tables that are converted from MIF/MID files, and I made some data processing on them.
I used ogr2org to convert MIF/MID to postgis tables,

ogr2ogr -f PostgreSQL PG:"<dbconn>" "xxx.mif"

but how can I convert the tables to MIF/MID?

zabop
  • 6,750
  • 3
  • 39
  • 84
Tom Leung
  • 334
  • 5
  • 18

1 Answers1

2

according to https://www.gdal.org/drv_mitab.html

ogr2ogr -f "MID" foo.mid PG:"dbconnectionstring" -sql "select * from table"
R. Martin
  • 411
  • 2
  • 11