Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I have a latitude and longitude, how do I find out the country of that location.. If found out about Google Reverse Geocoding, but unfortunately, it requires the service to be used along with Google Maps, which is not my case..

Is there a static database or something which I can refer to? It would be better if I have a static database as opposed to a service..

share|improve this question

3 Answers

up vote 1 down vote accepted

Whitout a service it is much work.
First, you need the country polygons with asigned country code. one country will have on average aprox 50.000 vertices.

then its a simple point in polygon search.

use a spatial index to limit the country polygon to search. it becomes a bit more difficult if you have to consider enclaves.

share|improve this answer
Thanks! I actually found this kml file here.. That is what you meant by polygon data,right? – SatheeshJM Jan 26 at 15:48
Not bad! this is useable, but at the borders it is not acurate, of course. – AlexWien Jan 26 at 16:20
ah well.. accuracy is not too much of an issue for me. so I guess the next thing to do is use some point-in-polygon algorithm or something to determine country.. Thanks a lot! – SatheeshJM Jan 26 at 16:28

You can use Bing Maps Api, it doesn't require displaying maps as far as I know,

http://dev.virtualearth.net/services/v1/geocodeservice/geocodeservice.asmx/ReverseGeocode?latitude=22.98&longitude=35.43637&key=[YOU_KEY]&culture=%22en-us%22&format=json
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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