Skip to content

Commit

Permalink
Merge pull request #101 from oloapinivad/bump-version
Browse files Browse the repository at this point in the history
Update version
  • Loading branch information
oloapinivad authored Sep 24, 2024
2 parents 4c71327 + f61fadd commit bc98702
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

Unreleased is the current development version, which is currently lying in `main` branch.

## [v0.1.10]

- Expand using first year for grdfile and areafile (#100)

## [v0.1.9]

- Specify numpy<2.0 to ensure all funcionalities
Expand Down
24 changes: 21 additions & 3 deletions docs/sphinx/source/performanceindices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,29 @@ Climatologies available
^^^^^^^^^^^^^^^^^^^^^^^

The performance indices built on the comparison between model data and a pre-computed climatology of several variables.
The ECmean climatology - from the previous CDO-based code - is currently defined as ``RK08``, and although still available, is not reccmmented for use since it is based on old datasets (e.g. ERA40).
The ECmean climatology - from the previous CDO-based code - is currently defined as ``RK08``, and although still available, is not recommended for use since it is based on old datasets (e.g. ERA40).

A new climatology has been developed making use of high-resolution data (e.g. CRU, ERA5, MSWEP, etc.) and is now defined as ``EC23``, using a 1x1 deg resolution and being the new default.

Properties of each climatology - as which variables, dataset and CMIP6 models used - can be inspected looking at ``ecmean/climatology/{clim}/pi_climatology_{clim}.yml`` files.
Details are provided here below

EC23 climatology
----------------

* 2m temperature (land-only): CRU TS 4.05, 1990-2019, 11 CMIP6 models over 1981-2010
* Precipitation: MSWEP, 1990-2019, 12 CMIP6 models over 1981-2010
* Net surface radiation: NOCS, 1990-2014, 8 CMIP6 models over 1981-2010
* Eastward wind stress: ORAS5, 1990-2019, 10 CMIP6 models over 1981-2010
* Meridional wind stress: ORAS5, 1990-2019, 10 CMIP6 models over 1981-2010
* Mean sea level pressure: ERA5, 1990-2019, 11 CMIP6 models over 1981-2010
* Zonal wind: ERA5, 1990-2019, 11 CMIP6 models over 1981-2010
* Meridional wind: ERA5, 1990-2019, 11 CMIP6 models over 1981-2010
* Air temperature: ERA5, 1990-2019, 11 CMIP6 models over 1981-2010
* Specific humidity: ERA5, 1990-2019, 10 CMIP6 models over 1981-2010
* Sea surface temperature: ESA-CCI-L4, 12 CMIP6 models over 1981-2010
* Sea surface salinity: ORAS5, 1990-2019, 8 CMIP6 models over 1981-2010
* Sea ice concentration: ESA-CCI-L4, 6 CMIP6 models over 1981-2010

Properties of each climatology - as which interpolation method and which CMIP6 models has been used - can be inspected looking at ``ecmean/climatology/{clim}/pi_climatology_{clim}.yml`` files.

Climatology computation
^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion ecmean/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""ECmean4 module"""

__version__ = '0.1.9'
__version__ = '0.1.10'

# functions to be accessible everywhere
from ecmean.libs.diagnostic import Diagnostic
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ channels:
dependencies:
- python>=3.9
- xesmf
- numpy<2.0
- eccodes
- pip
- pip:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
]
dependencies = [
"xarray",
"numpy<2.0",
"numpy",
"netcdf4",
"numba",
"dask",
Expand Down

0 comments on commit bc98702

Please sign in to comment.