Opened 9 years ago

Last modified 9 months ago

#25342 assigned Bug

Altitude of Point object for equality check — at Version 1

Reported by: Bhargav Kowshik Owned by: nobody
Component: GIS Version: dev
Severity: Normal Keywords: geodjango, equality
Cc: olivier.tabone@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Bhargav Kowshik)

Checking equality of two django.contrib.gis.geos.Point objects does not take into consideration the altitude of the point.

from django.contrib.gis.geos import Point

p1 = Point(x=1, y=1, z=1, srid=4326)
print p1 == p1  # True

p2 = Point(x=1.1, y=1, z=1, srid=4326)
print p1 == p2  # False

p3 = Point(x=1, y=1, z=2, srid=4326)
print p1 == p3  # True. Is this a bug?

Change History (1)

comment:1 by Bhargav Kowshik, 9 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top