You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 648B

123456789101112131415
  1. """
  2. The GeoDjango GEOS module. Please consult the GeoDjango documentation
  3. for more details: https://docs.djangoproject.com/en/dev/ref/contrib/gis/geos/
  4. """
  5. from .collections import ( # NOQA
  6. GeometryCollection, MultiLineString, MultiPoint, MultiPolygon,
  7. )
  8. from .error import GEOSException # NOQA
  9. from .factory import fromfile, fromstr # NOQA
  10. from .geometry import GEOSGeometry, hex_regex, wkt_regex # NOQA
  11. from .io import WKBReader, WKBWriter, WKTReader, WKTWriter # NOQA
  12. from .libgeos import geos_version # NOQA
  13. from .linestring import LinearRing, LineString # NOQA
  14. from .point import Point # NOQA
  15. from .polygon import Polygon # NOQA