I'm familiar with the geonames API, whose findNearbyPlaceName resource takes an optional radius parameter and can return multiple places for a given lat/lng pair.

When doing a similar lookup in YDN PlaceFinder, using the R gflag to do a reverse lookup from a lat/lng, will there ever be more than 1 result returned? I have not found any instances yet, and from what I can tell, the PlaceFinder API doesn't allow for radius (though you can request offset from street).

link|improve this question

I would assume it can return multiple. The documentation does not specify, which makes me think that it can. (Everything else can return more than 1 location, so I would think they would specify if that could not.) – Corbin Dec 7 '11 at 21:53
feedback

1 Answer

up vote 1 down vote accepted

Yes, the PlaceFinder service will only return a single location. (In the case of an error or location not found, you would get 0 results.) It's designed to go between a place description and location (e.g., street address to lat/long).

I'm not sure what your needs are, but you could also check out the Yahoo GeoPlanet API which provides more hierarchical data around the point of interest. PlaceFinder and GeoPlanet can be used together in this way.

Here are a couple of hack projects that help demonstrate each of these APIs:

link|improve this answer
Thanks, this is what I was beginning to assume. We do use PF in conjunction with GP. Wish this was in the API documentation though, since there is a very similar Geonames resource findNearbyPlaceName that returns multiple results based on a radius (in kilometers) parameter. – danludwig Dec 30 '11 at 19:57
feedback

Your Answer

 
or
required, but never shown

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