Skip to content

Commit

Permalink
Adding pr, tauu, tauv, tos to NCEP2 CMORISer (#3765)
Browse files Browse the repository at this point in the history
Co-authored-by: Max Proft <[email protected]>
Co-authored-by: Max Proft <[email protected]>
Co-authored-by: Romain Beucher <[email protected]>
Co-authored-by: Max Proft <[email protected]>
  • Loading branch information
5 people authored Oct 28, 2024
1 parent c4b8d02 commit b86acb3
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,11 @@ authors:
family-names: Phillips
given-names: Adam
orcid: "https://orcid.org/0000-0003-4859-8585"
-
affiliation: "ACCESS-NRI, Australia"
family-names: Proft
given-names: Max
orcid: "https://orcid.org/0009-0003-1611-9516"
-
affiliation: "University of Arizona, USA"
family-names: Russell
Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/source/input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ A list of the datasets for which a CMORizers is available is provided in the fol
| | tasmax, tasmin, ts, ua, va, wap, zg (Amon) | | |
| | pr, rlut, ua, va (day) | | |
+------------------------------+------------------------------------------------------------------------------------------------------+------+-----------------+
| NCEP-DOE-R2 | clt, hur, prw, ta, wap (Amon) | 2 | Python |
| NCEP-DOE-R2 | clt, hur, prw, ta, wap, pr, tauu, tauv, tos (Amon) | 2 | Python |
+------------------------------+------------------------------------------------------------------------------------------------------+------+-----------------+
| NDP | cVeg (Lmon) | 3 | Python |
+------------------------------+------------------------------------------------------------------------------------------------------+------+-----------------+
Expand Down
22 changes: 22 additions & 0 deletions esmvaltool/cmorizers/data/cmor_config/NCEP-DOE-R2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,25 @@ variables:
mip: Amon
raw: omega
file: 'omega\.mon\.mean\.nc'
pr_month:
short_name: pr
mip: Amon
raw: prate
file: 'prate.sfc.mon.mean.nc'
tauu_month:
short_name: tauu
mip: Amon
raw: uflx
file: 'uflx.sfc.mon.mean.nc'
make_negative: true
tauv_month:
short_name: tauv
mip: Amon
raw: vflx
file: 'vflx.sfc.mon.mean.nc'
make_negative: true
tos_month:
short_name: tos
mip: Amon
raw: skt
file: 'skt.sfc.mon.mean.nc'
5 changes: 5 additions & 0 deletions esmvaltool/cmorizers/data/datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -961,9 +961,14 @@ datasets:
pressure/
rhum.mon.mean.nc
air.mon.mean.nc
omega.mon.mean.nc
https://downloads.psl.noaa.gov/Datasets/ncep.reanalysis2/Monthlies/
gaussian_grid
tcdc.eatm.mon.mean.nc
prate.sfc.mon.mean.nc
uflx.sfc.mon.mean.nc
vflx.sfc.mon.mean.nc
skt.sfc.mon.mean.nc
https://downloads.psl.noaa.gov/Datasets/ncep.reanalysis2/Monthlies/
surface
pr_wtr.eatm.mon.mean.nc
Expand Down
8 changes: 8 additions & 0 deletions esmvaltool/cmorizers/data/downloaders/datasets/ncep_doe_r2.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,11 @@ def download_dataset(config, dataset, dataset_info, start_date, end_date,
wget_options=[])
downloader.download_file(url + "surface/pr_wtr.eatm.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "gaussian_grid/prate.sfc.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "gaussian_grid/uflx.sfc.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "gaussian_grid/vflx.sfc.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "gaussian_grid/skt.sfc.mon.mean.nc",
wget_options=[])
4 changes: 4 additions & 0 deletions esmvaltool/recipes/examples/recipe_check_obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,10 @@ diagnostics:
prw:
ta:
wap:
pr:
tauu:
tauv:
tos:
additional_datasets:
- {dataset: NCEP-DOE-R2, project: OBS6, mip: Amon, tier: 2,
type: reanaly, version: 2, start_year: 1979, end_year: 2022}
Expand Down

0 comments on commit b86acb3

Please sign in to comment.