gis.geos.Point

class Point(x=None, y=None, z=None, srid=None)

Point objects are instantiated using arguments that represent the component coordinates of the point or with a single sequence coordinates. For example, the following are equivalent:

>>> pnt = Point(5, 23)
>>> pnt = Point([5, 23])

Empty Point objects may be instantiated by passing no arguments or an empty sequence. The following are equivalent:

>>> pnt = Point()
>>> pnt = Point([])
Changed in Django 1.10:

In previous versions, an empty Point couldn’t be instantiated.

doc_Django
2016-10-09 18:38:29
Comments
Leave a Comment

Please login to continue.