Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given the latitude and longitude, how do we convert it to street address using Javascript or Python?

share|improve this question
2  
Not a broad question at all. – Lightness Races in Orbit Jul 4 '11 at 17:47
1  
+1 for legitimate question, I also have the same question – Predator Jul 4 '11 at 17:48

3 Answers

up vote 5 down vote accepted

99% of the time, most people link you to Google Maps's API. Not a bad answer. HOWEVER -- Beware of the prohibited uses, usage limits and Terms of Use! While a distributed app many not run afoul of the usage limit, it is quite limiting for a web app. The TOS does not allow you to repurpose Google's data into an app with your skin on it. You would hate to have your business plan derailed by a cease and desist letter from Google, no?

All is not lost. There are several open sources of data, including US Government sources. Here are a few of the best:

The US Census Tiger Database, in particular, supports reverse geocoding and is free and open for US addresses. Most other databases derive from it in the US.

Geonames and OpenStreetMap are user supported in the Wikipedia model.

share|improve this answer

You could use the Google Maps API. It has an API function that does exactly this: http://code.google.com/intl/da-DK/apis/maps/documentation/javascript/services.html#ReverseGeocoding

share|improve this answer
+1 for nice answer – Predator Jul 4 '11 at 17:52

There is a google library for this. Visit this site.

share|improve this answer
+1 for nice link – Predator Jul 4 '11 at 17:50
Might run into some usage restrictions with google maps api -> "Note: the Geocoding API may only be used in conjunction with a Google map; geocoding results without displaying them on a map is prohibited." (from code.google.com/apis/maps/documentation/geocoding) – James Jul 4 '11 at 17:54

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.