mirror of
https://github.com/django/django.git
synced 2025-07-23 21:25:40 +00:00
Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.
This commit is contained in:
parent
d3b488f5bd
commit
0825f77f76
5 changed files with 12 additions and 9 deletions
|
@ -348,7 +348,7 @@ Aggregate PostGIS Oracle SpatiaLite
|
|||
:class:`Collect` X X
|
||||
:class:`Extent` X X X
|
||||
:class:`Extent3D` X
|
||||
:class:`MakeLine` X
|
||||
:class:`MakeLine` X X
|
||||
:class:`Union` X X X
|
||||
======================= ======= ====== ==========
|
||||
|
||||
|
|
|
@ -1297,11 +1297,15 @@ Example::
|
|||
|
||||
.. class:: MakeLine(geo_field)
|
||||
|
||||
*Availability*: PostGIS
|
||||
*Availability*: PostGIS, SpatiaLite
|
||||
|
||||
Returns a ``LineString`` constructed from the point field geometries in the
|
||||
``QuerySet``. Currently, ordering the queryset has no effect.
|
||||
|
||||
.. versionchanged:: 1.10
|
||||
|
||||
SpatiaLite support was added.
|
||||
|
||||
Example::
|
||||
|
||||
>>> print(City.objects.filter(name__in=('Houston', 'Dallas')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue