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

https://code.google.com/p/mango-py/ · Python · 17 lines · 12 code · 5 blank · 0 comment · 0 complexity · 365a87575f2202f6b66244e6f9a67906 MD5 · raw file

  1. from django.db.models import Aggregate
  2. from django.contrib.gis.db.models.sql import GeomField
  3. class Collect(Aggregate):
  4. name = 'Collect'
  5. class Extent(Aggregate):
  6. name = 'Extent'
  7. class Extent3D(Aggregate):
  8. name = 'Extent3D'
  9. class MakeLine(Aggregate):
  10. name = 'MakeLine'
  11. class Union(Aggregate):
  12. name = 'Union'