vote up 0 vote down star

Hi, I'm looking for an API or a combination of API's where I can send "Anjuna, India" and get back a list of places nearby. The data is mostly for "third world" countries, less so for Europe/US. Any suggestions/ideas about how to structure this?

flag

40% accept rate

3 Answers

vote up 1 vote down check

You could make use of a couple of Yahoo's Geo APIs in the following manner.

  1. Get woeid (Where On Earth Identifier) for input location(s)
  2. Determine neighboring places

A quick example, combining those APIs together with Yahoo's YQL would provide neighbor locations for "Anjuna, India" using the query:

SELECT * 
FROM geo.places.neighbors 
WHERE neighbor_woeid IN (
    SELECT woeid 
    FROM geo.places 
    WHERE text="Anjuna, India" 
    LIMIT 1
)

Try this in YQL Console (must be logged in)

link|flag
vote up 0 vote down

You would need place lists with coordinates. Then go trought that list and calculate distance between cities. Then sort results by least distance. I have not done any GPS programming tho.

link|flag
vote up 0 vote down

Do give Yahoo geocoding services a go http://developer.yahoo.com/maps/rest/V1/geocode.html

More here: http://developer.yahoo.com/geo/

Here is the response with your location "Anjuna India" hhttp://local.yahooapis.com/MapsService/V1/geocode?appid=YD-9G7bey8_JXxQP6rxl.fBFGgCdNjoDMACQA--&location=Anjuna+India

link|flag

Your Answer

Get an OpenID
or

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