| author | ymh <ymh.work@gmail.com> |
| Mon, 31 May 2010 11:14:39 +0200 | |
| changeset 32 | e28089cee66c |
| parent 29 | cc9b7e14412b |
| permissions | -rw-r--r-- |
| 0 | 1 |
from django.db.models import Aggregate |
2 |
from django.contrib.gis.db.models.sql import GeomField |
|
3 |
||
| 29 | 4 |
class Collect(Aggregate): |
| 0 | 5 |
name = 'Collect' |
6 |
||
| 29 | 7 |
class Extent(Aggregate): |
| 0 | 8 |
name = 'Extent' |
9 |
||
| 29 | 10 |
class Extent3D(Aggregate): |
11 |
name = 'Extent3D' |
|
12 |
||
13 |
class MakeLine(Aggregate): |
|
| 0 | 14 |
name = 'MakeLine' |
15 |
||
| 29 | 16 |
class Union(Aggregate): |
| 0 | 17 |
name = 'Union' |