datacube.utils.geometry.CRS¶
-
class
datacube.utils.geometry.
CRS
(crs_str)[source]¶ Wrapper around pyproj.CRS for backwards compatibility.
-
__init__
(crs_str)[source]¶ - Parameters
crs_str (
Any
) – string representation of a CRS, often an EPSG code like ‘EPSG:4326’- Raises
pyproj.exceptions.CRSError
Methods
__init__
(crs_str)- type crs_str
to_epsg
()EPSG Code of the CRS or None
to_wkt
([pretty, version])WKT representation of the CRS
transformer_to_crs
(other[, always_xy])Returns a function that maps x, y -> x’, y’ where x, y are coordinates in this stored either as scalars or ndarray objects and x’, y’ are the same points in the other CRS.
Attributes
DEFAULT_WKT_VERSION
crs_str
DEPRECATED
dimensions
List of dimension names of the CRS.
epsg
geographic
inverse_flattening
proj
Access proj.CRS object that this wraps
projected
semi_major_axis
semi_minor_axis
units
List of dimension units of the CRS.
valid_region
Return valid region of this CRS.
wkt
-