| author | ymh <ymh.work@gmail.com> |
| Wed, 02 Jun 2010 18:57:35 +0200 | |
| changeset 38 | 77b6da96e6f1 |
| permissions | -rw-r--r-- |
from django.db.models import Aggregate from django.contrib.gis.db.models.sql import GeomField class Collect(Aggregate): name = 'Collect' class Extent(Aggregate): name = 'Extent' class Extent3D(Aggregate): name = 'Extent3D' class MakeLine(Aggregate): name = 'MakeLine' class Union(Aggregate): name = 'Union'