diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2015-12-04 09:52:16 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-04 08:09:21 -0500 |
| commit | 25f5b5c19dc23c6c09877c9c652a934e9669573d (patch) | |
| tree | b2a3b429032ac56c54ba633a9632a7753f2bea78 /docs | |
| parent | b61eab18f71f3afb36b3e8cb208a145046b3d8f6 (diff) | |
Fixed #25853 -- Added support for GeoHash function on SpatiaLite.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/functions.txt | 6 | ||||
| -rw-r--r-- | docs/releases/1.10.txt | 3 |
3 files changed, 8 insertions, 3 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index 45bc18992b..3eebe4e1f8 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -316,7 +316,7 @@ Function PostGIS Oracle MySQL SpatiaLite :class:`Distance` X X X (≥ 5.6.1) X :class:`Envelope` X X X :class:`ForceRHR` X -:class:`GeoHash` X +:class:`GeoHash` X X (≥ 4.0, LWGEOM) :class:`Intersection` X X X (≥ 5.6.1) X :class:`Length` X X X X :class:`MemSize` X diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt index 8fa45efbc7..4ac7a4bc72 100644 --- a/docs/ref/contrib/gis/functions.txt +++ b/docs/ref/contrib/gis/functions.txt @@ -266,11 +266,15 @@ GeoHash .. class:: GeoHash(expression, **extra) -*Availability*: PostGIS +*Availability*: PostGIS, SpatiaLite (≥ 4.0, LWGEOM) Accepts a single geographic field or expression and returns a `GeoHash`__ representation of the geometry. +.. versionchanged:: 1.10 + + SpatiaLite support was added. + __ https://en.wikipedia.org/wiki/Geohash Intersection diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt index 37bdf61d13..88ef9fd2e6 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -80,7 +80,8 @@ Minor features and :attr:`~django.contrib.gis.gdal.GDALBand.std` attributes. * Added support for the :class:`~django.contrib.gis.db.models.MakeLine` - aggregate on SpatiaLite. + aggregate and :class:`~django.contrib.gis.db.models.functions.GeoHash` + function on SpatiaLite. * Added support for the :class:`~django.contrib.gis.db.models.functions.Difference`, |
