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

24 lines
348 B
Python
Raw Normal View History

from django.db.models import Aggregate
__all__ = ['Collect', 'Extent', 'Extent3D', 'MakeLine', 'Union']
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'