.. _regridding_schemes: Regridding schemes ================== Iris natively supports data regridding with its :meth:`iris.cube.Cube.regrid` method and a set of predefined regridding schemes provided in the :mod:`~iris.analysis` module (further details are given on `this `__ page). Here, further regridding schemes are provided that are compatible with :meth:`iris.cube.Cube.regrid`. Example: .. code:: python from esmvalcore.preprocessor.regrid_schemes import IrisESMFRegrid regridded_cube = cube.regrid(target_grid, IrisESMFRegrid(method="conservative")) .. automodule:: esmvalcore.preprocessor.regrid_schemes :no-show-inheritance: