1
vote
1answer
144 views

Filtering query using django geographical span relationship is not accepted

I'm trying to filter some item using a geographical span relationship with geodjango, but I don't get why it doesn't work. Consider this example: class Location(models.Model): name = ...
1
vote
1answer
725 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
4answers
792 views

Django : is GeoDjango a Good Fit for my Website?

I'm building a real estate site in Django and have a Home model, which stores various information including the address. Database backend is using MySQL. Want to create a Yelp like search. A search ...
6
votes
2answers
673 views

django, location based searches

Excuse my ignorance, I am not even sure of the correct term for this. What I want to do is search by city and state or zip code in my django application and also include results within certain ...