I have just incorporated MITAB code into my shareware mapping system (the WINDOZE version). My compliments to those who wrote the code; it took very little...
Daniel, I have been experimenting with an S57 to Mapinfo translation using ogr2ogr, and run into some problems. One issue is that my dataset generates an...
... <snip> ... Stephen, That was a problem writing the pen/brush/symbol/font definitions in the file. When the amount of information to write exceeded the...
Hi Patrick, ... Thanks, I've added '\t39; to most of the MIF parsing calls. ... I assume that you meant calls to GetFeatureRef() since gotoFeature() is a...
Calling GotoFeature ( 20 ) GotoFeature ( 21 ) Always did the reading from the beginning of the file for both calls. Solved by Remembering the last feature int...
Found some MIF files with tab characters in it. The parser failed to recongize the fields so I have added the \t in the TokenizeStringComplex. It might be...
... Andrew, The file tab2tab.cpp that comes with the library does work with the TABFile class. Have you been able to compile it with BCPP? Compiling ...
I am trying to using the C++ object TabFile. However I am having problems getting my program to compile with mitab.h and ctype.h. Dose anybody have sample C++...
Folks, I have checked in what I hope to be working support for NonEarth coordinate systems for mif and tab files. NonEarth coordinate systems should now be ...
MITAB users, I have placed a new release of MITAB (V1.0.2) on the lib's website at http://pages.infinit.net/danmo/e00/index-mitab.html The change log for this...
Folks, I have updated the mitab CVS tree with fixes for all the uninitialized and unused variables I found compiling with "gcc -O2 -Wall". I have also updated...
... Ned, You're right, MITAB is not expected to be thread-safe (yet!) I will try to prepare a snapshot of the code in the next 1 or 2 days and send that to...
... I never really thought myself about what the requirements would be exactly. As long as there is some kind of recognition somewhere that your software uses...
Daniel, 2 things: First, I wanted to confirm the copyright/licensing of the MITab library. It seems to me if I use it, I just need to include a copyright for...
... Antoine, The current version of the library does not support update of existing tables. You can only create new tables. The code that you had included in...
hi ok, i have understand some things and concepts.. only one major problem yet i insert the object, but that flush all the already existing features in the...
revised mail Hi i have written a small piece of code, this code don't work. it flush all my records of the MapInfo table and add a empty record, with no fields...
Hi i have written a small piece of code, this code don't work. it flush all my records of the MapInfo table and add a empty record, with no fields informations...
hi I'm a java programmer... I just want to make a simple test ; Add a feature (point) to a MapInfo Table. Do i have to pass by an OGR object ? Antoine...
... Bonjour Martin, I haven't heard of anything Java-related done with MITAB yet. Maybe others on the list will see a similar need and would like to work with...
Hi bonjour, :-) I'm evaluating using MITAB for a client. We'd like to port it to Java. Do you know if any work has been done in that sense? I'm very...
... Kevin, The lib is able to create the .IND file automatically as the .TAB dataset is created. The problem here is that the MIF2TAB program has not yet been...
Hello, We're using the Mif2Tab program to built new MapInfo Tables. It seems that when the originally Mif file contains Indexes, the Mif2Tab program does not...
... Eric, I think the VB interface will make lots of potential users happy. If you want, you could prepare a ZIP file with the MapBasic and VB declaration...
Hi List, In trying to make the declare statements for VB, I gave up on the mitab.dll as it was and tried making all the exports stdcall instead (I read VB...
Eric, Daniel... Would it be enough to use ByVal keyword on lpstr parameters on Declare statement. See the following snippet. <snip> (from Dan Appleman's Visual...
... I have looked at that a long time ago but unfortunately I don't have an easy solution for you. All I know is that VB has a special way to handle strings...
... At the lower-level in the lib, mitab_handle and mitab_feature are pointers to C++ objects but we make them visible as void pointers to make the C API's...
ah, I had the impression it was like MI's Object variable, actually containing the data. so it's a handle or pointer to the records? in some of the C functions...