geopy allows you to convert between partial place names and latitude/longitude coordinates by wrapping six different online API's and providing access through one standard interface.

learn more… | top users | synonyms

1
vote
1answer
55 views

Efficient way to do spatial anaylsis with pandas

I am running into problems doing spatial analysis with a Panda's DataFrame. Right now I have a DataFrame with > 1000 rows and the columns "user", "latitude", "longitude". Based on this dataset I ...
1
vote
0answers
35 views

Geopy Error with Reverse Geocoding

I am using Geopy. I get follwoing error for the code. I have using the same code as on https://code.google.com/p/geopy/wiki/ReverseGeocoding from geopy import geocoders g = geocoders.GeoNames() ...
0
votes
2answers
55 views

ERROR: “No JSON object can be decoded” in Geopy when extracting lat, long from geocode_url

I am using the following code: from geopy import geocoders def main(): gn = geocoders.GeoNames() city = 'roman' place, (lat, lng) = ...
0
votes
1answer
327 views

“ AttributeError: 'NoneType' object has no attribute 'split' ” while installing geopy

I'm trying to install the packages from a requirements file for a django project. The problem is that while installing geopy I get the error AttributeError: 'NoneType' object has no attribute ...
3
votes
1answer
166 views

GPS positioning with Python, geopy, shapely

I'm trying to work on the following scenario: Getting polygon coordinates from google earth Getting boundaries with Shapely: >>> polygon = ...
1
vote
1answer
143 views

Geocoding non-addresses: Geopy

Using geopy to geocode alcohol outlets in NZ. The problem I have is that some places do not have street addresses but are places in Google Maps. For example, plugging: Furneaux Lodge, Endeavour ...
3
votes
1answer
425 views

Geopy ValueError “Didn't find exactly one match” when geocoding

In Django, I have been trying to get a search field to geocode a location and spit out a list from my db sorted by distance. So far everything works except when I search for a location that Google ...
0
votes
1answer
63 views

Eclipse unresolved external with geopy

import csv from geopy import geocoders import time g = geocoders.Google() spamReader = csv.reader(open('locations.csv', 'rb'), delimiter='\t', quotechar='|') f = open("output.txt",'w') for row in ...
2
votes
1answer
330 views

Return individual address components (city, state, etc.) from GeoPy geocoder

I'm using GeoPy to geocode addresses to lat,lng. I would also like to extract the itemized address components (street, city, state, zip) for each address. GeoPy returns a string with the address -- ...
0
votes
1answer
317 views

Why is Geopy Distance.Distance is wrong?

from geopy import distance from geopy import Point p1 = Point("-113.4741271000000040 53.4235217000000020") p2 = Point("-113.5013688000000229 53.5343457999999970") result = ...
0
votes
2answers
68 views

GeocoderDotUS… Syntax of Python check for 'None'

import csv from geopy import geocoders import time g = geocoders.GeocoderDotUS() spamReader = csv.reader(open('locations.csv', 'rb'), delimiter='\t', quotechar='|') f = open("output.txt",'w') for ...
0
votes
1answer
141 views

GeocoderDotUS Geopy ('NoneType' object is not iterable)

import csv from geopy import geocoders import time g = geocoders.GeocoderDotUS() spamReader = csv.reader(open('locations.csv', 'rb'), delimiter='\t', quotechar='|') f = open("output.txt",'w') for ...
1
vote
1answer
505 views

Geopy with error handling

I have some Python code with error handling in place but for some reason the code still seems to be unable to handle this particular error: raise GQueryError("No corresponding geographic location ...
0
votes
1answer
295 views

Geopy exception handling

Traceback (most recent call last): File "C:\Users\Penguin\workspace\geocode-nojansdatabase\src\geocode.py", line 15, in place, (lat, lng) = g.geocode(a) File ...
0
votes
2answers
236 views

Too many values to unpack with python CSV reader and Geopy

import csv from geopy import geocoders g = geocoders.Google() spamReader = csv.reader(open('locations.csv', 'rb'), delimiter='\t', quotechar='|') for row in spamReader: a = ', '.join(row) ...
1
vote
1answer
719 views

Convert between coordinate systems with GeoDjango

I'm trying to add coordinate information to my database, adding django.contrib.gis support to my app. I'm writing a south data migration that takes the addresses from the database, and asks Google for ...
0
votes
1answer
316 views

Custom field error from try/except in Django view?

I have a form for geocoding an address in my app. If a non-address is entered, the geocoder raises a "GQueryError". Using try/except I'd like to catch this error and send a custom error back to the ...
1
vote
2answers
112 views

How can I store a non-unicode string in the database of my Django App?

I'm trying to access a field in views.py in order to perform an operation on it which will calculate its distance from a user-inputted point (using geopy). The input needs to be a plain string but is ...
0
votes
2answers
312 views

Store 3 nearest coordinates

I have an XML file that contains a number of points with their longitude and latitude. My python code at the moment gets the nearest point by simply looping through the XML file, finding the nearest, ...
0
votes
1answer
242 views

Python to run geopy via ActivePython

Trying to get a location using Python and Google Maps, so I tried to use Geopy module by installing activepython using pypm install geopy but i get a problem which is geo required business edition ...
1
vote
2answers
2k views

Bearing between two points

Ive been using the geopy package , which does a great job, however some of the results i get are inconsistant or come with a relatively large displacement, i suspect that the problem resides with my ...
1
vote
4answers
1k views

Normalizing street addresses in Django/Python

I have a Django form where one of the fields is a TextInput for a street address. I want to normalize the data. For example: >> normalize('420 East 24th St.') '420 E. 24th Street' >> ...
2
votes
1answer
904 views

Django - determining if geographic coordinates are inside of an circle

Does django have anything that will look at a geographic coordinate (decimal lat/long) and determine if is inside a circle with a certain radius (let's say 100 Km)? I have certain type of data, each ...
0
votes
4answers
981 views

Conversion of miles to latitude and longitude degrees using geopy

Background I want to add a model manager function that filters a queryset based on the proximity to coordinates. I found this blog posting with code that is doing precisely what I want. Code The ...
0
votes
1answer
715 views

Geopy in Django: JSONDecodeError

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 ...
1
vote
1answer
345 views

How to find if lat/long falls in an area using Django and geopy

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 ...
0
votes
2answers
1k views

Python - Using “Google AJAX Search” API's Local Search Objects

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 ...
1
vote
2answers
837 views

Getting Easting & Northing Values from geopy

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 ...