From 460aac30ab561619b2efb9aa7845905a2744b512 Mon Sep 17 00:00:00 2001 From: Will Benfold Date: Tue, 3 May 2022 09:12:31 +0100 Subject: [PATCH] MAX_RUN into docs --- docs/src/whatsnew/latest.rst | 3 +++ lib/iris/analysis/__init__.py | 1 + 2 files changed, 4 insertions(+) diff --git a/docs/src/whatsnew/latest.rst b/docs/src/whatsnew/latest.rst index 383d029ccf..e611110ebe 100644 --- a/docs/src/whatsnew/latest.rst +++ b/docs/src/whatsnew/latest.rst @@ -49,6 +49,9 @@ This document explains the changes made to Iris for this release ``standard_parallel`` and ``scale_factor_at_projection_origin`` to :class:`~iris.coord_system.Mercator`. (:issue:`3844`, :pull:`4609`) +#. `@wjbenfold`_ and `@stephenworsley`_ (reviewer) added a maximum run length + aggregator (:class:`~iris.analysis.MAX_RUN`). (:pull:`4676`) + 🐛 Bugs Fixed ============= diff --git a/lib/iris/analysis/__init__.py b/lib/iris/analysis/__init__.py index 63b9173e6c..cf035d568f 100644 --- a/lib/iris/analysis/__init__.py +++ b/lib/iris/analysis/__init__.py @@ -64,6 +64,7 @@ "HMEAN", "Linear", "MAX", + "MAX_RUN", "MEAN", "MEDIAN", "MIN",