Module geos
The GeoDjango GEOS module. Please consult the GeoDjango documentation for more details: https://docs.djangoproject.com/en/dev/ref/contrib/gis/geos/
source linkRe-exported Classes
-
The base GEOS exception, indicates a GEOS-related error.
[django.contrib.gis.geos.error.GEOSException]
-
A class that, generally, encapsulates a GEOS geometry.
[django.contrib.gis.geos.geometry.GEOSGeometry]
-
[django.contrib.gis.geos.collections.GeometryCollection]
-
[django.contrib.gis.geos.linestring.LineString]
-
[django.contrib.gis.geos.linestring.LinearRing]
-
[django.contrib.gis.geos.collections.MultiLineString]
-
[django.contrib.gis.geos.collections.MultiPoint]
-
[django.contrib.gis.geos.collections.MultiPolygon]
-
[django.contrib.gis.geos.point.Point]
-
[django.contrib.gis.geos.polygon.Polygon]
-
[django.contrib.gis.geos.io.WKBReader]
-
[django.contrib.gis.geos.prototypes.io.WKBWriter]
-
[django.contrib.gis.geos.io.WKTReader]
-
[django.contrib.gis.geos.prototypes.io.WKTWriter]
Re-exported Functions
Given a string file name, returns a GEOSGeometry. The file may contain WKB, WKT, or HEX.
[django.contrib.gis.geos.factory.fromfile]
Given a string value, return a GEOSGeometry object.
[django.contrib.gis.geos.factory.fromstr]
Return the string version of the GEOS library.
[django.contrib.gis.geos.libgeos.geos_version]
Submodules
This module houses the Geometry Collection objects: GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon
This module houses the GEOSCoordSeq object, which is used internally by GEOSGeometry to house the actual coordinates of the Point, LineString, and LinearRing geometries.
This module contains the 'base' GEOSGeometry object -- all GEOS Geometries inherit from this object.
Module that holds classes for performing I/O operations on GEOS geometry objects. Specifically, this has Python implementations of WKB/WKT reader and writer classes.
This module houses the ctypes initialization procedures, as well as the notice and error handler function callbacks (get called when an error occurs in GEOS).
This module contains a base type which provides list-style mutations without specific data storage methods.
This module contains all of the GEOS ctypes function prototypes. Each prototype handles the interaction between the GEOS library and Python via ctypes.