Tagged Questions
1
vote
1answer
52 views
GeoDjango - Use GDAL python binding in the shell
I would like to use the GDAL python binding in my GeoDjango site. The aim of this is to use ogr2ogr capabilities in a script. I am on windows 7 so I have installed GDAL-1.9.2.win32-py2.7 downloaded ...
4
votes
1answer
606 views
Best GeoDjango MySQL workaround for distance queries
I'm using mysql 5.1.50, so the distance QuerySet method is not available to me.
Here is my model:
class Location(models.Model):
name = models.CharField(max_length='100')
point = ...