Class SpatialReference
A wrapper for the OGRSpatialReference object. According to the GDAL Web site, the SpatialReference object "provide[s] services to represent coordinate systems (projections and datums) and to transform between them."
Declaration
source linkDocumentation
Methods
▶ def __getitem__(self, target) Return the value of the given string attribute node, None if the node doesn't exist. Can also take a tuple as a parameter, (target, child), where child is the index of the attribute in the WKT. For example:
>>> wkt = 'GEOGCS["WGS 84", DATUM["WGS_1984, ... AUTHORITY["EPSG","4326"]]'
>>> srs = SpatialReference(wkt) # could also use 'WGS84', or 4326
>>> print(srs['GEOGCS'])
WGS 84
>>> print(srs['DATUM'])
WGS_1984
>>> print(srs['AUTHORITY'])
EPSG
>>> print(srs['AUTHORITY', 1]) # The authority value
4326
>>> print(srs['TOWGS84', 4]) # the fourth value in this wkt
0
>>> print(srs['UNIT|AUTHORITY']) # For the units authority, have to use the pipe symbole.
EPSG
>>> print(srs['UNIT|AUTHORITY', 1]) # The authority value for the units
9122
▶ def __init__(self, srs_input='', srs_type='user', axis_order=None) Create a GDAL OSR Spatial Reference object from the given input.
The input may be string of OGC Well Known Text (WKT), an integer
EPSG code, a PROJ string, and/or a projection "well known" shorthand
string (one of 'WGS84', 'WGS72', 'NAD27', 'NAD83').
▷ def __str__(self) Use 'pretty' WKT.
▷ def angular_name(self) @property Return the name of the angular units.
@property
def angular_name(self)
▷ def angular_units(self) @property Return the value of the angular units.
@property
def angular_units(self)
▷ def attr_value(self, target, index=0) The attribute value for the given target node (e.g. 'PROJCS'). The index keyword specifies an index of the child node to return.
▷ def auth_code(self, target) Return the authority code for the given string target node.
▷ def auth_name(self, target) Return the authority name for the given string target node.
▷ def clone(self) Return a clone of this SpatialReference object.
▷ def ellipsoid(self) @property Return a tuple of the ellipsoid parameters: (semimajor axis, semiminor axis, and inverse flattening)
@property
def ellipsoid(self)
▷ def from_esri(self) Morph this SpatialReference from ESRI's format to EPSG.
▷ def geographic(self) @property Return True if this SpatialReference is geographic (root node is GEOGCS).
@property
def geographic(self)
▷ def identify_epsg(self) This method inspects the WKT of this SpatialReference, and will add EPSG authority nodes where an EPSG identifier is applicable.
▷ def import_epsg(self, epsg) Import the Spatial Reference from the EPSG code (an integer).
▷ def import_proj(self, proj) Import the Spatial Reference from a PROJ string.
▷ def import_user_input(self, user_input) Import the Spatial Reference from the given user input string.
▷ def import_wkt(self, wkt) Import the Spatial Reference from OGC WKT (string)
▷ def import_xml(self, xml) Import the Spatial Reference from an XML string.
▷ def inverse_flattening(self) @property Return the Inverse Flattening for this Spatial Reference.
@property
def inverse_flattening(self)
▷ def linear_name(self) @property Return the name of the linear units.
@property
def linear_name(self)
▷ def linear_units(self) @property Return the value of the linear units.
@property
def linear_units(self)
▷ def local(self) @property Return True if this SpatialReference is local (root node is LOCAL_CS).
▷ def name(self) @property Return the name of this Spatial Reference.
▷ def pretty_wkt(self, simplify=0) @property Return the 'pretty' representation of the WKT.
@property
def pretty_wkt(
self,
simplify=0,
)
▷ def proj(self) @property Return the PROJ representation for this Spatial Reference.
▷ def proj4(self) @property Alias for proj().
▷ def projected(self) @property Return True if this SpatialReference is a projected coordinate system (root node is PROJCS).
@property
def projected(self)
▷ def semi_major(self) @property Return the Semi Major Axis for this Spatial Reference.
@property
def semi_major(self)
▷ def semi_minor(self) @property Return the Semi Minor Axis for this Spatial Reference.
@property
def semi_minor(self)
▷ def srid(self) @property Return the SRID of top-level authority, or None if undefined.
▷ def to_esri(self) Morph this SpatialReference to ESRI's format.
▷ def units(self) @property Return a 2-tuple of the units value and the units name. Automatically determine whether to return the linear or angular units.
▷ def validate(self) Check to see if the given spatial reference is valid.
▷ def wkt(self) @property Return the WKT representation of this Spatial Reference.
▷ def xml(self, dialect='') @property Return the XML representation of this Spatial Reference.
@property
def xml(
self,
dialect='',
)