I'm working on a project that requires me to either A) Render Shape, Tab and WFS files as MapView overlays, or B) convert them to KML, since I already have a KML renderer working.

The best way to do this, I figured, would be to get GDAL / OGR (or preferably OGR in isolation) built for the iPhone, and brought into the project.

I noticed this question, but the author never mentioned whether or not he got it working.

Anyway, does anyone have some advice for me? PS, yes, I've seen the article by pseudo-green, but his build script does not seem to work on any version of GDAL that I've ever downloaded.

link|improve this question

I've integrated GDAL successfully into iOS apps without much problem. It's been a while, but I think that I started with the pseudo-green blog post. What is the specific issue you're having? – Josh Knauer Apr 19 '11 at 13:49
Generally, getting it to build. Building with version 1.8.0 of GDAL, the make / make install commands error out. Don't suppose you'd still have the built library files on hand?? – Jordaan Mylonas Apr 19 '11 at 21:41
The version of GDAL I'm using is customized (basically just removing portions we don't need to keep it's size small). What build errors are you getting? – Josh Knauer Apr 20 '11 at 13:41
The Last lines in the terminal window are: cpl_conv.cpp: In function ‘int CPLCheckForFile(char*, char**)’: cpl_conv.cpp:2282: error: aggregate ‘VSIStatBufL sStatBuf’ has incomplete type and cannot be defined make[1]: *** [cpl_conv.lo] Error 1 make: *** [port-target] Error 2 – Jordaan Mylonas Apr 20 '11 at 22:02
ok. I've seen similar build issues before. A few Q's, 1) What version of OSX/Xcode are you building with? 2) Where did you install proj to? 3) Where are you installing gdal to? 4) Are you building gdal for the simulator or the device? In my case the issue had to do with an older version version of the gdal headers being used since they were installed in the same place as the proj headers and got included accidentally. – Josh Knauer Apr 21 '11 at 12:46
feedback

1 Answer

up vote 1 down vote accepted

Most of my build script for GDAL (and other autotools libraries) is taken from here. Specifically for GDAL, I grabbed the PROJ.4 Library from route-me, and built the few dependent libs with the script from pseudogreen. In your case, you could probably get away with using the internal version of the libraries.

Your VSIStatBufL error is because GDAL is building with a 64 bit option turned on. To turn that off, use the --with-unix-stdio-64=no flag. Just as a jumping off point, the minimized drivers page is a good minimum to start with, and then just add the parts you need.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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