/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
- 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'