From 2177fc4b3744b4c416ee56ce19162f6e6ba1e9c6 Mon Sep 17 00:00:00 2001 From: "stephen.worsley" Date: Mon, 21 Feb 2022 14:59:30 +0000 Subject: [PATCH 1/3] update changelog --- docs/src/CHANGELOG.md | 47 ++++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/docs/src/CHANGELOG.md b/docs/src/CHANGELOG.md index a2cf97d9..3471afda 100644 --- a/docs/src/CHANGELOG.md +++ b/docs/src/CHANGELOG.md @@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] + +This release added the ability to regrid data stored on a UGRID mesh. + +### Added + +- [PR#51](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/51) + [PR#55](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/55) + [PR#96](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/96) + Added the unstructured regridders `GridToMeshESMFRegridder` and + `MeshToGridESMFRegridder`. + [@stephenworsley](https://github.com/stephenworsley) +- [PR#132](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/132) + Added functions for saving of the unstructured regridders. + [@stephenworsley](https://github.com/stephenworsley) +- [PR#132](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/132) + improved generation of benchmark data to allow caching of generated data. + [@trexfeathers](https://github.com/trexfeathers) + +## [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](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/125) + Added support for curvilinear grids, i.e. cubes with 2D lat/lon coords. + [@stephenworsley](https://github.com/stephenworsley) +- [PR#124](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/124) + Improved generation of benchmark data to allow data to be generated from + a common version/environment. + [@trexfeathers](https://github.com/trexfeathers) + ## [0.2] - 2021-08-25 The major change in this version is the addition of lazy regridding. @@ -31,17 +64,3 @@ when the data is a dask array. Calculations may be parallelised via dask. Fixed an issue with directory naming. [@lbdreyer](https://github.com/lbdreyer) - [PR#83](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/83) Added missing docstrings. [@stephenworsley](https://github.com/stephenworsley) - -## [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](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/125) - Added support for curvilinear grids, i.e. cubes with 2D lat/lon coords. - [@stephenworsley](https://github.com/stephenworsley) -- [PR#124](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/124) - Improved generation of benchmark data to allow data to be generated from - a common version/environment. - [@trexfeathers](https://github.com/trexfeathers) From 5b05f4480e7530bbd219929c8384d4b90c60b258 Mon Sep 17 00:00:00 2001 From: "stephen.worsley" Date: Tue, 22 Feb 2022 13:26:20 +0000 Subject: [PATCH 2/3] address review comments --- docs/src/CHANGELOG.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/src/CHANGELOG.md b/docs/src/CHANGELOG.md index 3471afda..638068f3 100644 --- a/docs/src/CHANGELOG.md +++ b/docs/src/CHANGELOG.md @@ -11,18 +11,22 @@ This release added the ability to regrid data stored on a UGRID mesh. ### Added -- [PR#51](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/51) +- [PR#31](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/31) + [PR#32](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/32) + [PR#36](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/36) + [PR#39](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/39) + [PR#46](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/46) [PR#55](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/55) [PR#96](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/96) Added the unstructured regridders `GridToMeshESMFRegridder` and `MeshToGridESMFRegridder`. - [@stephenworsley](https://github.com/stephenworsley) + [@stephenworsley](https://github.com/stephenworsley) with extensive review + work from [@abooton](https://github.com/abooton) and + [@jamesp](https://github.com/jamesp) with benchmarking help from + [@trexfeathers](https://github.com/trexfeathers) - [PR#132](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/132) Added functions for saving of the unstructured regridders. [@stephenworsley](https://github.com/stephenworsley) -- [PR#132](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/132) - improved generation of benchmark data to allow caching of generated data. - [@trexfeathers](https://github.com/trexfeathers) ## [0.3] - 2021-12-21 From 6529e7ae842a70454d5ab9e9324e4fe3c5bc2fe1 Mon Sep 17 00:00:00 2001 From: stephenworsley <49274989+stephenworsley@users.noreply.github.com> Date: Tue, 22 Feb 2022 14:36:39 +0000 Subject: [PATCH 3/3] Update docs/src/CHANGELOG.md Co-authored-by: Martin Yeo <40734014+trexfeathers@users.noreply.github.com> --- docs/src/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/CHANGELOG.md b/docs/src/CHANGELOG.md index 638068f3..76ceca05 100644 --- a/docs/src/CHANGELOG.md +++ b/docs/src/CHANGELOG.md @@ -24,7 +24,8 @@ This release added the ability to regrid data stored on a UGRID mesh. work from [@abooton](https://github.com/abooton) and [@jamesp](https://github.com/jamesp) with benchmarking help from [@trexfeathers](https://github.com/trexfeathers) -- [PR#132](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/132) +- [PR#130](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/130) + [PR#137](https://github.com/SciTools-incubator/iris-esmf-regrid/pull/137) Added functions for saving of the unstructured regridders. [@stephenworsley](https://github.com/stephenworsley)