Pyresample¶
Pyresample is a python package for resampling geospatial image data. It is the primary method for resampling in the SatPy library, but can also be used as a standalone library. Resampling or reprojection is the process of mapping input geolocated data points to a new target geographic projection and area.
Pyresample can operate on both fixed grids of data and geolocated swath data. To describe these data Pyresample uses various “geometry” objects including the AreaDefinition and SwathDefinition classes.
Pyresample offers multiple resampling algorithms including:
Nearest Neighbor
Elliptical Weighted Average (EWA)
Bilinear
Bucket resampling (count hits per bin, averaging, ratios)
For nearest neighbor and bilinear interpolation pyresample uses a kd-tree approach by using the fast KDTree implementation provided by the pykdtree library. Pyresample works with numpy arrays and numpy masked arrays. Interfaces to XArray objects (including dask array support) are provided in separate Resampler class interfaces and are in active development. Utility functions are available to easily plot data using Cartopy.
Changed in version 1.15: Dropped Python 2 and Python <3.4 support.
Documentation¶
- Installing Pyresample
- Geometry definitions
- Geometry Utilities
- Geographic filtering
- Resampling of gridded data
- Resampling of swath data
- Using multiple processor cores
- Preprocessing of grids
- Spherical Geometry Operations
- Plotting with pyresample and Cartopy
- Reduction of swath data
- Roadmap
- API
- Subpackages
- Submodules
- pyresample.area_config module
- pyresample.boundary module
- pyresample.data_reduce module
- pyresample.geo_filter module
- pyresample.geometry module
- pyresample.grid module
- pyresample.image module
- pyresample.kd_tree module
- pyresample.plot module
- pyresample.resampler module
- pyresample.slicer module
- pyresample.spherical module
- pyresample.spherical_geometry module
- pyresample.spherical_utils module
- pyresample.version module
- Module contents