utils.CoordinateTransformer#
- class seismostats.utils.CoordinateTransformer(local_proj: int | str, ref_easting: float = 0.0, ref_northing: float = 0.0, ref_altitude: float = 0.0, external_proj: int | str = 4326, ref_proj: int | str | None = None)#
Class to transform between a external geographic (default ESPG:4326, also known as WGS84), and a local cartesian CRS.
Any EPSG code or proj4 string can be used for the
local_projinput, for instance 2056 to represent the swiss coordinate system, or “+proj=utm +zone=32 +ellps=WGS84 +datum=WGS84 +units=m +no_defs” to represent a UTM coordinate system.It is possible to pass a reference point, which will be used as the origin of the local coordinate system. If no reference point is passed, the origin will be set to (0, 0, 0). The projection of the reference point is assumed to be the same as the local projection, unless specified otherwise in the
ref_projkwarg.Notes
4326 as well as eg 2056 are 2D coordinate systems, so altitude is not taken into account and only calculated in reference to the ref.
Methods
Transform local coordinates to geographic coordinates.
Transform polygon from local coordinates to geographic coordinates.
Transform polygon from geographic coordinates to local coordinates.
Transform geographic coordinates to local coordinates.