transform_points๏
- Equi7Grid_projection.transform_points(src_crs, x, y[, z])๏
Transform the given coordinates, in the given source coordinate system (
src_crs), to this coordinate system.- Parameters:
src_crs โ instance of
CRSthat represents the coordinate system ofx,yandz.x โ the x coordinates (array), in
src_crscoordinates, to transform. May be 1 or 2 dimensional.y โ the y coordinates (array), in
src_crscoordinates, to transform. Its shape must match that of x.z (optional) โ the z coordinates (array), in
src_crscoordinates, to transform. Defaults to None. If supplied, its shape must match that of x.trap โ Whether proj errors for โlatitude or longitude exceeded limitsโ and โtolerance condition errorโ should be trapped.
- Return type:
Array of shape
x.shape + (3, )in this coordinate system.