2009-01-15 19:06:34 +08:00
|
|
|
from django.db.models import Aggregate
|
2009-01-16 03:35:04 +08:00
|
|
|
from django.contrib.gis.db.models.sql import GeomField
|
2009-01-15 19:06:34 +08:00
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class Collect(Aggregate):
|
2009-03-31 01:15:49 +08:00
|
|
|
name = 'Collect'
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class Extent(Aggregate):
|
2009-01-15 19:06:34 +08:00
|
|
|
name = 'Extent'
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class Extent3D(Aggregate):
|
2009-11-17 02:49:00 +08:00
|
|
|
name = 'Extent3D'
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class MakeLine(Aggregate):
|
2009-01-15 19:06:34 +08:00
|
|
|
name = 'MakeLine'
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class Union(Aggregate):
|
2009-01-15 19:06:34 +08:00
|
|
|
name = 'Union'
|