/django/contrib/gis/geos/__init__.py

https://code.google.com/p/mango-py/ · Python · 14 lines · 9 code · 0 blank · 5 comment · 0 complexity · e1493b7a3fa15c0ce3160f5c1709aa4b MD5 · raw file

  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