|
0
|
1 |
""" |
|
|
2 |
The GeoDjango GEOS module. Please consult the GeoDjango documentation |
|
|
3 |
for more details: |
|
|
4 |
http://geodjango.org/docs/geos.html |
|
|
5 |
""" |
|
|
6 |
from django.contrib.gis.geos.geometry import GEOSGeometry, wkt_regex, hex_regex |
|
|
7 |
from django.contrib.gis.geos.point import Point |
|
|
8 |
from django.contrib.gis.geos.linestring import LineString, LinearRing |
|
|
9 |
from django.contrib.gis.geos.polygon import Polygon |
|
|
10 |
from django.contrib.gis.geos.collections import GeometryCollection, MultiPoint, MultiLineString, MultiPolygon |
|
|
11 |
from django.contrib.gis.geos.error import GEOSException, GEOSIndexError |
|
|
12 |
from django.contrib.gis.geos.io import WKTReader, WKTWriter, WKBReader, WKBWriter |
|
|
13 |
from django.contrib.gis.geos.factory import fromfile, fromstr |
|
|
14 |
from django.contrib.gis.geos.libgeos import geos_version, geos_version_info, GEOS_PREPARE |