Skip to content

Latest commit

 

History

History
104 lines (84 loc) · 4.77 KB

CHANGELOG.md

File metadata and controls

104 lines (84 loc) · 4.77 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • PR#217 Changed the behaviour of coordinate fetching to allow Cubes with both 1D DimCoords and 2D AuxCoords. In this case the DimCoords are prioritised.
  • PR#220 Matured the benchmarking architecture in line with the latest setup in SciTools/iris.

[0.5] - 2022-10-14

This release improves the support for features such as Bilinear regridding, curvilinear grids and low resolution grids.

Added

  • PR#148 Added support for Bilinear regridding for unstructured regridding.
  • PR#165 Added RefinedGridInfo and resolution keyword for unstructured regridders.
  • PR#166 Made weights array handling more robust for different formats of pre-computed weights matrices.
  • PR#175 Add curvilinear support for unstructured regridders.
  • PR#208 Unpin Python.

[0.4] - 2022-02-24

This release added the ability to regrid data stored on a UGRID mesh.

Added

[0.3] - 2021-12-21

The major change with this version was the addition of the ability to regrid curvilinear grids (i.e. grids with 2D arrays of coordinates).

Added

  • PR#125 Added support for curvilinear grids, i.e. cubes with 2D lat/lon coords. @stephenworsley
  • PR#124 Improved generation of benchmark data to allow data to be generated from a common version/environment. @trexfeathers

[0.2] - 2021-08-25

The major change in this version is the addition of lazy regridding. This defers the calculation of regridding to the realisation of the data when the data is a dask array. Calculations may be parallelised via dask.

Added

Fixed