Skip to content

Commit

Permalink
Extend CMORizer NCEP-DOE-R2 (#3469)
Browse files Browse the repository at this point in the history
  • Loading branch information
axel-lauer authored Feb 20, 2024
1 parent 4a659bb commit e6e7a41
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/sphinx/source/input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,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 (Amon) | 2 | Python |
| NCEP-DOE-R2 | clt, hur, prw, ta, wap (Amon) | 2 | Python |
+------------------------------+------------------------------------------------------------------------------------------------------+------+-----------------+
| NDP | cVeg (Lmon) | 3 | Python |
+------------------------------+------------------------------------------------------------------------------------------------------+------+-----------------+
Expand Down
5 changes: 5 additions & 0 deletions esmvaltool/cmorizers/data/cmor_config/NCEP-DOE-R2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ variables:
mip: Amon
raw: air
file: 'air\.mon\.mean\.nc'
wap_month:
short_name: wap
mip: Amon
raw: omega
file: 'omega\.mon\.mean\.nc'
2 changes: 2 additions & 0 deletions esmvaltool/cmorizers/data/downloaders/datasets/ncep_doe_r2.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ def download_dataset(config, dataset, dataset_info, start_date, end_date,

url = "https://downloads.psl.noaa.gov/Datasets/ncep.reanalysis2/Monthlies/"

downloader.download_file(url + "pressure/omega.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "pressure/rhum.mon.mean.nc",
wget_options=[])
downloader.download_file(url + "pressure/air.mon.mean.nc", wget_options=[])
Expand Down
3 changes: 2 additions & 1 deletion esmvaltool/recipes/examples/recipe_check_obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -647,9 +647,10 @@ diagnostics:
hur:
prw:
ta:
wap:
additional_datasets:
- {dataset: NCEP-DOE-R2, project: OBS6, mip: Amon, tier: 2,
type: reanaly, version: 2, start_year: 1979, end_year: 2021}
type: reanaly, version: 2, start_year: 1979, end_year: 2022}
scripts: null


Expand Down

0 comments on commit e6e7a41

Please sign in to comment.