| author | ymh <ymh.work@gmail.com> |
| Tue, 25 May 2010 02:43:45 +0200 | |
| changeset 29 | cc9b7e14412b |
| parent 0 | 0d40e90630ef |
| 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' |