You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to geodjango
I have this model:
class MyPoint(models.Model):
point = models.PointField(null=True,blank=True)
If I have two instances of this model, point1 and point2 and a
distance d=Distance(km=5). What is the best way to determine wether
point1 is within the distance d of point2?