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

Extend CMORizer NCEP-DOE-R2 #3469

Merged
merged 2 commits into from
Feb 20, 2024
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/sphinx/source/input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,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'
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 @@ -636,9 +636,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