summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2015-10-24 19:12:38 +0500
committerTim Graham <timograham@gmail.com>2015-10-24 11:39:24 -0400
commita7bb5af50be7b0efbb784011a41fd25fdfe4d42c (patch)
tree52f88dbe3e7a756aeab035c30284b7c200080eb9 /docs
parent02ef96c5e58d8d3492b6e38246c8268f1a0de47e (diff)
Fixed #25583 -- Allowed calling `transform` with `CoordTransform` even if SRID is invalid.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/geos.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index c9979b415a..776e70c5a3 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -553,6 +553,14 @@ is returned instead.
Requires GDAL. Raises :class:`~django.contrib.gis.geos.GEOSException` if
GDAL is not available or if the geometry's SRID is ``None`` or less than 0.
+ It doesn't impose any constraints on the geometry's SRID if called with a
+ :class:`~django.contrib.gis.gdal.CoordTransform` object.
+
+ .. versionchanged:: 1.10
+
+ In previous versions, it required the geometry's SRID to be a positive
+ integer even if it was called with a
+ :class:`~django.contrib.gis.gdal.CoordTransform` object.
``Point``
---------