app/django/contrib/gis/db/models/__init__.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 14 Oct 2008 16:00:59 +0000
changeset 323 ff1a9aa48cfd
permissions -rw-r--r--
Load ../vendor/django into trunk/app/django.

# Want to get everything from the 'normal' models package.
from django.db.models import *

# The GeoManager
from django.contrib.gis.db.models.manager import GeoManager

# The GeoQ object
from django.contrib.gis.db.models.query import GeoQ

# The geographic-enabled fields.
from django.contrib.gis.db.models.fields import \
     GeometryField, PointField, LineStringField, PolygonField, \
     MultiPointField, MultiLineStringField, MultiPolygonField, \
     GeometryCollectionField

# The geographic mixin class.
from mixin import GeoMixin