mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #25853 -- Added support for GeoHash function on SpatiaLite.
This commit is contained in:
parent
b61eab18f7
commit
25f5b5c19d
4 changed files with 16 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue