Class SpatialRefSysMixin
The SpatialRefSysMixin is a class used by the database-dependent SpatialRefSys objects to reduce redundant code.
Declaration
class SpatialRefSysMixin
source linkDocumentation
Methods
▷ def __str__(self) Return the string representation, a 'pretty' OGC WKT.
▷ def angular_name(self) @property Return the name of the angular units.
@property
def angular_name(self)
@property
def angular_units(self)
▷ def datum(self) @property Return the datum for this spatial reference.
▷ def ellipsoid(self) @property Return a tuple of the ellipsoid parameters: (semimajor axis, semiminor axis, and inverse flattening).
@property
def ellipsoid(self)
▷ def geographic(self) @property Is this Spatial Reference geographic?
@property
def geographic(self)
▷ def linear_name(self) @property Return the linear units name.
@property
def linear_name(self)
@property
def linear_units(self)
▷ def local(self) @property Is this Spatial Reference local?
▷ def name(self) @property Return the projection name.
▷ def projected(self) @property Is this Spatial Reference projected?
@property
def projected(self)
▷ def spheroid(self) @property Return the spheroid name for this spatial reference.
@property
def spheroid(self)
▷ def srs(self) @property Return a GDAL SpatialReference object.
▷ def units(self) @property Return a tuple of the units and the name.
Class methods
▷ def get_spheroid(cls, wkt, string=True) @classmethod Class method used by GeometryField on initialization to retrieve the `SPHEROID[..]` parameters from the given WKT.
@classmethod
def get_spheroid(
cls,
wkt,
string=True,
)
▷ def get_units(cls, wkt) @classmethod Return a tuple of (unit_value, unit_name) for the given WKT without using any of the database fields.
@classmethod
def get_units(
cls,
wkt,
)
Subclasses
Reexports