Tagged Questions
4
votes
1answer
605 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 = ...
