datacube.utils.geometry.CRS¶
- class datacube.utils.geometry.CRS(crs_spec)[source]¶
Wrapper around pyproj.CRS for backwards compatibility.
- Parameters:
crs_str – string representation of a CRS, often an EPSG code like ‘EPSG:4326’
- Raises:
pyproj.exceptions.CRSError
- __init__(crs_spec)[source]¶
- Parameters:
crs_str – string representation of a CRS, often an EPSG code like ‘EPSG:4326’
- Raises:
pyproj.exceptions.CRSError
Methods
__init__(crs_spec)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_VERSIONDEPRECATED
List of dimension names of the CRS.
epsggeographicinverse_flatteningAccess proj.CRS object that this wraps
projectedsemi_major_axissemi_minor_axisList of dimension units of the CRS.
Return valid region of this CRS.
wktAttributes:
DEPRECATED
List of dimension names of the CRS.
Access proj.CRS object that this wraps
List of dimension units of the CRS.
Return valid region of this CRS.
Methods:
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.
- property dimensions: Tuple[str, str]¶
List of dimension names of the CRS. The ordering of the names is intended to reflect the numpy array axis order of the loaded raster.
- property proj: CRS¶
Access proj.CRS object that this wraps
- transformer_to_crs(other, always_xy=True)[source]¶
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.