I have a table full of longitude/ latitude pairs in decimal format (e.g., -41.547, 23.456). I want to display the values in "Easting and Northing"/ UTM format. Does geopy provide a way to convert from decimal to UTM? I see in the code that it will parse UTM values, but I don't see how to get them back out and the geopy Google Group has g...
Hi! I've just started using Google's search API to find addresses and the distances between those addresses. I used geopy for this, but, I often had the problem of not getting the correct addresses for my queries. I decided to experiment, therefore, with Google's "Local Search" (http://code.google.com/apis/ajaxsearch/local.html).
Anywa...
I'm trying to create a Django app that would take an inputted address and return a list of political races that person would vote in. I have maps of all the districts (PDFs). And I know that I can use geopy to convert an inputted address into coordinates. How do I define the voter districts in Django so that I can run a query to see what...
Hello,
I have followed the tutorials in http://code.google.com/p/geopy/wiki/GettingStarted
This works fine:
g = geocoders.Google(resource='maps')
I want to use json as the output format because I want to handle the results in javascript.
BUT everytime I use:
g = geocoders.Google(resource='maps', output_format='json')
I get the e...