Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.

This commit is contained in:
Sergey Fedoseev 2015-12-01 08:08:41 +05:00 committed by Tim Graham
parent d3b488f5bd
commit 0825f77f76
5 changed files with 12 additions and 9 deletions

View file

@ -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
======================= ======= ====== ==========

View file

@ -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')