Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
499 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 ...
1
vote
2answers
72 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 ...
1
vote
2answers
856 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
3answers
427 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' >> ...
1
vote
1answer
238 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 ...
1
vote
2answers
617 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 ...
0
votes
1answer
187 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
115 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 ...
0
votes
2answers
139 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
123 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 ...
0
votes
4answers
530 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
505 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 ...
0
votes
2answers
842 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 ...