I wonder if there is any API I could query OSM data through, for example; Are (lon_1, lat_1) at land or at sea? Or could it be possible to get an island as a well-defined polygon? The only usage I've seen so far has just been tools for rendering OSM data (generating tiles).

Update:

I've found a great API for reading Openstreetmap data; Mapscript. This is an interface to MapServer, which is able to read *.map and *.shp files, and is very, very fast.

link|improve this question

50% accept rate
This MapServer seems to be quite interesting. Thanks – vikingosegundo Feb 12 '11 at 16:57
feedback

3 Answers

Yes, there is an api and xapi (extended api).

I havent used these yet.

But there is also the cloudmade api to OSM. I played a bit with the python api.

I am not sure, if any of them could help you with your particular problem, but you could search for a coastline near to your point. If your point is within the polygon tagged natural=coastline, you have an island (or a continent)...

link|improve this answer
Ok, thanks for the tip. – Yngve Sneen Lindal Jul 10 '09 at 21:15
What is the XML format it delivers and how would I render that into a raster image in my application? – Matthew Lock Sep 17 '09 at 8:14
2  
to generate a iamge from the xml u need a renderer. there a several. see here wiki.openstreetmap.org/wiki/Renderers – vikingosegundo Sep 17 '09 at 12:27
feedback

You can use CloudMade's Geocoding API to search for an island in the OpenStreetMap data. The API will return the geometry of the result by default, and this sounds to me what you are looking for. For example, Arran off the coast of Scotland can be found by the following http request:

http://geocoding.cloudmade.com/BC9A493B41014CAABB98F0471D759707/geocoding/find/Arran,UK.js?results=1

(and as a neat little hack, changing the .js to .html previews the result.

More docs and examples on the API are at developers.cloudmade.com/projects/show/geocoding-http-api If you don't want to use the http api, then abstraction APIs are available in multiple languages - ruby, python, perl and others.

link|improve this answer
feedback

Of course, the javascript api is called openlayers.

link|improve this answer
1  
I know about openlayers, but isn't that just for displaying/operating on rendered tiles? – Yngve Sneen Lindal Jul 7 '09 at 23:58
feedback

Your Answer

 
or
required, but never shown

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