Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enh/ecad wind indices #230

Merged
merged 11 commits into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/_static/logo_icclim_colored__displayed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/source/_static/logo_icclim_grey__displayed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/source/_static/logo_icclim_white__displayed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions doc/source/references/ecad_functions_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ Generated API
cw
wd
ww
fxx
fg6bft
fgcalm
fg
ddnorth
ddeast
ddsouth
ddwest
custom_index

.. Generated API comment:End
6 changes: 4 additions & 2 deletions doc/source/references/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Release history
===============

6.0.1 (unreleased)
6.1.0 (unreleased)
------------------
[fix] Add unit getter/setter for BoundedThreshold.
* [fix] Add unit getter/setter for BoundedThreshold.
* [enh] Add ECAD wind indices ``{fxx, fg6bft, fgcalm, fg, ddnorth, ddeast, ddsouth, ddwest}``.
`ddnorth` and `ddsouth` do not follow the ECAD's ATBD v11 requirements as their definition seems to be wrong in the document.

6.0.0
-----
Expand Down
3 changes: 3 additions & 0 deletions icclim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from icclim._generated_api import * # noqa
from icclim.generic_indices.threshold import build_threshold
from icclim.main import index, indice, indices
from icclim.models.constants import ICCLIM_VERSION
from icclim.pre_processing.rechunk import create_optimized_zarr_store
Expand All @@ -10,6 +11,8 @@
"indices",
# -- Rechunk function:
"create_optimized_zarr_store",
# -- Threshold factory function
"build_threshold",
]

__version__ = ICCLIM_VERSION
Loading