vote up 1 vote down star

Hello!

I am working on an application (.net 2.0) that uses mif/mid data format to display GIS data. I need to find a way to edit these files with some sort of editor (outside of application). I googled a lot but was unable to find anything suitable (Map Maker worked but did not display labels from mid file). I see following solutions (in order of preference):

  1. Find some editor that will allow to edit mif/mid format correctly. Which one?
  2. Find some editor that will allow to edit some other format and have conversion utilities to convert to this format and back to mif/mid. Which one?
  3. Find some editor that will allow to edit some other format and have conversion utilities to convert once to this format. In this case I'll have to write my own parser. I do not like this idea :).

Free editors are preferred.

Thank you!

UPD 1 I forgot to mention that I need to load Unicode mid files or at least specify the codepage. That's why, for example, OpenJump's plugin does not work (I guess)

UPD 2 This seems to be a real trouble. Most tools either do not do mif at all or do it in read-only mode. Anyone with real experience with MIF read-write?

UPD 3 In this update I'll keep track of all my attempts to solve this issue:

  1. OpenJump - plugin failed to load non-ascii code. Unicode load failed

  2. QGIS - succedeed loading MIF file, but failed to save it - unable to save feature. I'm not sure, but it looks like it does not support write mode for MIF's. I've tried to save selection as shape file. Later I was unable to convert it with OGR layer converter - failed with access violation.

  3. MapInfo Professional 10 failed to load my MIF file with access violation.
  4. GV sig does not support MIF format.
  5. UDIG does not support MIF format.
  6. WinGrass did not start on my PC.

tbc...

flag
You can choose the "encoding" on load of MID/MIF in Quantum GIS. Is this what you need? – luapyad Jun 25 at 20:58
I'm stuck with QGIS - it does what I want byt it does not save back to original format - just says - failed to save N features. I've got QGIS sources and will try to figure out why. Everything else looks good :). – Nikolay R Jun 29 at 14:54
Odd that QGIS refused to save. Were you trying to overwrite the original files? – MarkJ Jul 13 at 8:14
Yes, I was just unchecking edit mode in imported vecrot layer. – Nikolay R Jul 31 at 14:53

2 Answers

vote up 3 vote down check

Free conversion tool: OGR (also see Mitab)

Free GIS Editors (that can read MID/MIF): Quantum GIS, OpenJump, others*

Commercial GIS Editors: Lots*. (Note: MID/MIF is a Mapinfo format).

* See GIS software for a good list.

Can provide more detail if this does not point you in the right direction.

link|flag
So mapinfo it finally was. Free one-s did not do :( – Nikolay R Jul 6 at 22:27
vote up 1 vote down

Quantum GIS, OpenJump, uDig or GRASS should do what you want. However, you should be aware that all these editors will most likely use OGR as the data abstraction library for that file format. Therefore, they have the limitations of that OGR driver.

From the driver documentation:

MapInfo datasets in native (TAB) format and in interchange (MIF/MID) format are supported for reading and writing. Update of existing files is not currently supported.

That is probably what you are running into. Try QGIS again and be mindful of this.

link|flag
Do you mean that I can open existing file do some modifications and save it with another name? It does not differ a lot from editing existing file. At least from end user perspective. However - how can I write to MIF file with QGIS? I've found only one way - remove edit mode from current layer and it looks like it fails to update existing object. – Nikolay R Jul 6 at 14:20
1  
If you are running into a bug with one of your GIS editors (QGIS or whatever) an easy way to bypass this is to: Download the ogr2ogr utility at trac.osgeo.org/gdal/wiki/… then run ogr2ogr --formats to make sure you have the "MapInfo File" format installed. Convert it to Shapefile ogr2ogr -f "ESRI Shapefile" test2 test2.tab test2 Edit it in your favorite editor (QGIS works fine with shapefiles). Convert it back to mapinfo ogr2ogr -f "MapInfo File" test3 test2.shp test2 – rburhum Jul 6 at 15:33
Hmm. I'm interested - why mif1->shp->mif2 makes mif1!=mif2? I thought it should be fully reversable. Still testing your solution. – Nikolay R Jul 6 at 19:54
Attempting to convert another file lead to Error 6: Error during reading record. Is there a way to make it a bit more verbose? – Nikolay R Jul 6 at 21:16
Use "ogrinfo -al test2.tab" to list all the features. I am not sure what you mean by mif1 != mif2. Are features missing? Did the loose attributes? Is the geometry different? I tested the methodology I gave you and it worked fine for me. First you need to know what version of GDAL you have installed and then see if you are running into a bug from here trac.osgeo.org/gdal/report/… It could be the case that there is something wrong with your data. Send an e-mail to the GDAL mailing list... people are very helpful there. – rburhum Jul 6 at 23:08
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.