Is there an easy way to get the name of the country on whose territory a given point is located?
I don't care too much about accuracy nor about ambiguities given by political disputes. Just need a good enough approximation.
|
Is there an easy way to get the name of the country on whose territory a given point is located? I don't care too much about accuracy nor about ambiguities given by political disputes. Just need a good enough approximation.
| |||
|
feedback
|
|
Try the Yahoo! APIs.
The response element will give you the country, as well as many other elements. | ||||
feedback
|
|
How about using google's reverse geo-encoding service? | ||||
|
feedback
|
|
Just for the reference, geonames.org also has a nice webservice, but it's rate limited (which was an issue in my case since I had to look up a big batch of coordinates). Example: http://ws.geonames.org/findNearbyPlaceName?lat=47.3&lng=9 | |||
|
feedback
|
|
You could also look at the services from tinygeocoder. Another alternative is to download the country maps from natural earth (or another source). Using Geotools you could search whether the point is inside one of the countries. | |||
|
feedback
|