diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2016-12-16 01:00:08 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-15 14:00:08 -0500 |
| commit | 5a23cc00f535a045db6d9c04c3c14594ee23fbec (patch) | |
| tree | c46bf08855a9d039ed316a21ae774661fbd49c54 /docs | |
| parent | d2a26c1a90e837777dabdf3d67ceec4d2a70fb86 (diff) | |
Fixed #27607 -- Added Oracle support for AsGML GIS function.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/functions.txt | 8 | ||||
| -rw-r--r-- | docs/releases/1.11.txt | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index ad375dca46..670b23cd78 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -379,7 +379,7 @@ Function PostGIS Oracle MySQL SpatiaLite ==================================== ======= ====== =========== ========== :class:`Area` X X X X :class:`AsGeoJSON` X X -:class:`AsGML` X X +:class:`AsGML` X X X :class:`AsKML` X X :class:`AsSVG` X X :class:`BoundingCircle` X diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt index 456ffb83e7..3a731c96f9 100644 --- a/docs/ref/contrib/gis/functions.txt +++ b/docs/ref/contrib/gis/functions.txt @@ -81,7 +81,7 @@ Keyword Argument Description .. class:: AsGML(expression, version=2, precision=8, **extra) -*Availability*: PostGIS, SpatiaLite +*Availability*: Oracle, PostGIS, SpatiaLite Accepts a single geographic field or expression and returns a `Geographic Markup Language (GML)`__ representation of the geometry. @@ -98,13 +98,17 @@ Keyword Argument Description ===================== ===================================================== ``precision`` Specifies the number of significant digits for the coordinates in the GML representation -- the default - value is 8. + value is 8. Ignored on Oracle. ``version`` Specifies the GML version to use: 2 (default) or 3. ===================== ===================================================== __ https://en.wikipedia.org/wiki/Geography_Markup_Language +.. versionchanged:: 1.11 + + Oracle support was added. + ``AsKML`` ========= diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index a46edbdfb9..40467eca88 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -164,7 +164,8 @@ Minor features :lookup:`isvalid` lookup. * Added Oracle support for the - :class:`~django.contrib.gis.db.models.functions.IsValid` function and + :class:`~django.contrib.gis.db.models.functions.AsGML` function, + :class:`~django.contrib.gis.db.models.functions.IsValid` function, and :lookup:`isvalid` lookup. :mod:`django.contrib.messages` |
