summaryrefslogtreecommitdiff
path: root/parts/django/django/contrib/gis/db/models/aggregates.py
blob: cd26839eb51156100fd28bb1cbcaba496a516dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'