﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25342	Altitude of Point object for equality check	Bhargav Kowshik	Olivier Tabone	"Checking equality of two django.contrib.gis.geos.Point objects does not take into consideration the altitude of the point.

{{{#!python
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?
}}}"	Bug	assigned	GIS	dev	Normal		geodjango, equality	olivier.tabone@…	Accepted	0	0	0	0	0	0
