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

Adding pr, tauu, tauv NOAA-CIRES-20CR-V2 CMORISER #3763

Merged
merged 11 commits into from
Oct 21, 2024
2 changes: 1 addition & 1 deletion doc/sphinx/source/input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 408,7 @@ A list of the datasets for which a CMORizers is available is provided in the fol
------------------------------ ------------------------------------------------------------------------------------------------------ ------ -----------------
| NIWA-BS | toz, tozStderr (Amon) | 3 | NCL |
------------------------------ ------------------------------------------------------------------------------------------------------ ------ -----------------
| NOAA-CIRES-20CR-V2 | clt, clwvi, hus, prw, rlut, rsut (Amon) | 2 | Python |
| NOAA-CIRES-20CR-V2 | clt, clwvi, hus, prw, rlut, rsut, pr, tauu, tauv (Amon) | 2 | Python |
max-anu marked this conversation as resolved.
Show resolved Hide resolved
------------------------------ ------------------------------------------------------------------------------------------------------ ------ -----------------
| NOAA-CIRES-20CR-V3 | clt, clwvi, hus, prw, rlut, rlutcs, rsut, rsutcs (Amon) | 2 | Python |
------------------------------ ------------------------------------------------------------------------------------------------------ ------ -----------------
Expand Down
16 changes: 16 additions & 0 deletions esmvaltool/cmorizers/data/cmor_config/NOAA-CIRES-20CR-V2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 44,19 @@ variables:
mip: Amon
raw: uswrf
file: 'uswrf.ntat.mon.mean.nc'
pr_month:
short_name: pr
mip: Amon
raw: prate
file: 'prate.mon.mean.nc'
tauu_month:
short_name: tauu
mip: Amon
raw: uflx
file: 'uflx.mon.mean.nc'
tauv_month:
short_name: tauv
mip: Amon
raw: vflx
file: 'vflx.mon.mean.nc'

4 changes: 3 additions & 1 deletion esmvaltool/cmorizers/data/datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 1045,9 @@ datasets:
gaussian/monolevel/tcdc.eatm.mon.mean.nc
gaussian/monolevel/ulwrf.ntat.mon.mean.nc
gaussian/monolevel/uswrf.ntat.mon.mean.nc

gaussian/monolevel/prate.mon.mean.nc
gaussian/monolevel/uflx.mon.mean.nc
gaussian/monolevel/vflx.mon.mean.nc
NOAA-CIRES-20CR-V3:
tier: 2
source: ftp.cdc.noaa.gov/Projects/20thC_ReanV3/Monthlies/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 34,7 @@ def download_dataset(config, dataset, dataset_info, start_date, end_date,
)
downloader.connect()

downloader.set_cwd("Projects/20thC_ReanV2/Monthlies/")
downloader.set_cwd("/Projects/20thC_ReanV2/Monthlies/")
downloader.download_file("monolevel/cldwtr.eatm.mon.mean.nc",
sub_folder='surface')
downloader.download_file("monolevel/pr_wtr.eatm.mon.mean.nc",
Expand All @@ -47,3 47,9 @@ def download_dataset(config, dataset, dataset_info, start_date, end_date,
sub_folder='surface_gauss')
downloader.download_file("gaussian/monolevel/uswrf.ntat.mon.mean.nc",
sub_folder='surface_gauss')
downloader.download_file("gaussian/monolevel/prate.mon.mean.nc",
sub_folder='surface_gauss')
downloader.download_file("gaussian/monolevel/uflx.mon.mean.nc",
sub_folder='surface_gauss')
downloader.download_file("gaussian/monolevel/vflx.mon.mean.nc",
sub_folder='surface_gauss')
3 changes: 3 additions & 0 deletions esmvaltool/recipes/examples/recipe_check_obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 690,9 @@ diagnostics:
prw:
rlut:
rsut:
pr:
tauu:
tauv:
additional_datasets:
- {dataset: NOAA-CIRES-20CR-V2, project: OBS6, mip: Amon, tier: 2,
type: reanaly, version: v2, start_year: 1871, end_year: 2012}
Expand Down