summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2016-11-30 18:39:03 +0600
committerTim Graham <timograham@gmail.com>2016-11-30 07:39:03 -0500
commit21322f92710a447708409f1fce52ee9d18752eaf (patch)
tree5549bc48f1a80d9b47d98ec8a9c1213ac1ae96ec /docs/ref
parent8eb56f3c786b4dd7f78a60145ae2e483e24b62c1 (diff)
Fixed #27552 -- Added docs/test for GEOSGeometry.normalize().
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/gis/geos.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index 55bd5a3744..165f3c0754 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -652,6 +652,17 @@ Other Properties & Methods
positive integer even if it was called with a
:class:`~django.contrib.gis.gdal.CoordTransform` object.
+.. method:: GEOSGeometry.normalize()
+
+ Converts this geometry to canonical form::
+
+ >>> g = MultiPoint(Point(0, 0), Point(2, 2), Point(1, 1))
+ >>> print(g)
+ MULTIPOINT (0 0, 2 2, 1 1)
+ >>> g.normalize()
+ >>> print(g)
+ MULTIPOINT (2 2, 1 1, 0 0)
+
``Point``
---------