Image and vector transformations#
There are several useful utility functions in cartopy to help transform and reshape data when going from one projection to another.
Image transformations#
Generic functionality to support Cartopy image transformations.
|
Return sample points in the given projection which span the entire projection range evenly. |
|
Regrid the data array from the source projection to the target projection. |
|
Regrid the data array from the source projection to the target projection. |
|
Regrid the image file from the source projection to the target projection. |
Vector transformations#
Generic functionality to support Cartopy vector transforms.
|
Transform and interpolate a vector field to a regular grid in the target projection. |
Longitude wrapping#
Utilities that are useful in conjunction with cartopy.
|
Add a cyclic point to an array and optionally a corresponding coordinate. |
|
Add a cyclic point to an array and optionally corresponding x/longitude and y/latitude coordinates. |
LinearRing/LineString projection#
Trace pulls together proj, GEOS and _crs.pyx
to implement a function
to project a LinearRing
/ LineString
.
In general, this should never be called manually, instead leaving the
processing to be done by the cartopy.crs.Projection
subclasses.
|
Project a geometry from one projection to another. |