I use
- python 2.7.12
- django 1.10.6
- postgreSQL 9.5.6
- postGIS 2.2.2
First question
I need to use GeoDjango to calculate the distance between two points. When I checked the documentation , it says that GeoQuerySet.distance () is deprecated and uses Distance () from django.contrib.gis.db instead. models.functions.
The following code works fine:
from django.contrib.gis.db.models.functions import Distance
p1 = Instrument.objects.get(pk=151071000).coordinates
p2 = Instrument.objects.filter(pk=151071008)
for i in p2.annotate(distance=Distance('coordinates', p1)):
print i.distance
print i.distance.__class__
Conclusion:
461.10913945 m
<class 'django.contrib.gis.measure.Distance'>
My model:
class Instrument(models.Model):
...
coordinates = gis_models.PointField(null=True, blank=True, dim=3)
But I only have two points, so when I try to use Distance () without annotate (), it returns an instance of the django.contrib.gis.db.models.functions.Distance () rathen class than django.contrib.gis. measure.Distance ():
p1 = Instrument.objects.get(pk=151071000).coordinates
p2 = Instrument.objects.get(pk=151071008).coordinates
print Distance(p1, p2)
Conclusion:
Distance(Value(SRID=4326;POINT Z (-76.48623600000001 44.260223 0)), GeomValue(SRID=4326;POINT Z (-76.490923 44.262658 0)))
How to get the same result as using annotate ()?
Second question
, /. , , 2d. 200 :
p1 = Instrument.objects.get(pk=151071000)
p1.coordinates = 'SRID=4326;POINT Z (-76.48623600000001 44.260223 200)'
p2 = Instrument.objects.filter(pk=151071008)
for i in p2.annotate(distance=Distance('coordinates', p1.coordinates)):
print i.distance
:
461.10913945 m