django1/django/contrib/gis/db/models/aggregates.py

22 lines
282 B
Python
Raw Normal View History

from django.db.models import Aggregate
2013-11-03 01:18:46 +08:00
class Collect(Aggregate):
name = 'Collect'
2013-11-03 01:18:46 +08:00
class Extent(Aggregate):
name = 'Extent'
2013-11-03 01:18:46 +08:00
class Extent3D(Aggregate):
name = 'Extent3D'
2013-11-03 01:18:46 +08:00
class MakeLine(Aggregate):
name = 'MakeLine'
2013-11-03 01:18:46 +08:00
class Union(Aggregate):
name = 'Union'