-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#3799: Copied quadmap recipe to new NEMO recipe
- Loading branch information
1 parent
ab2e662
commit 8d2a038
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# ESMValTool | ||
# recipe_ocean_quadmap.yml | ||
--- | ||
documentation: | ||
title: Tool to produce a four pane map figure | ||
|
||
description: | | ||
Recipe to demonstrate the Diagnostic Maps quad. | ||
Based on the ocean assess/Marine Assess toolkit plots. | ||
authors: | ||
- demora_lee | ||
|
||
maintainer: | ||
- demora_lee | ||
|
||
references: | ||
- demora2018gmd | ||
|
||
projects: | ||
- ukesm | ||
|
||
|
||
datasets: | ||
# working datasets | ||
- {dataset: HadGEM2-CC, project: CMIP5, exp: historical, ensemble: r1i1p1, start_year: 2001, end_year: 2003, } | ||
- {dataset: HadGEM2-ES, project: CMIP5, exp: historical, ensemble: r1i1p1, start_year: 2001, end_year: 2003, } | ||
|
||
|
||
preprocessors: | ||
prep_quad_map: # For Global 2D fields | ||
extract_time: | ||
start_year: 2001 | ||
start_month: 1 | ||
start_day: 1 | ||
end_year: 2003 | ||
end_month: 12 | ||
end_day: 31 | ||
climate_statistics: | ||
operator: mean | ||
regrid: | ||
target_grid: 1x1 | ||
scheme: linear | ||
|
||
|
||
diagnostics: | ||
# -------------------------------------------------- | ||
# Quad Maps diagnostics | ||
# ----------------------------------------------- | ||
diag_map_1: | ||
description: Global surface quad plots | ||
variables: | ||
tos: # Temperature ocean surface | ||
preprocessor: prep_quad_map | ||
mip: Omon | ||
additional_datasets: | ||
- {dataset: ARC-SST-1-1, project: obs4MIPs, level: L3, start_year: 2001, end_year: 2003, tier: 1} | ||
scripts: | ||
Global_Ocean_map: &Global_Ocean_map | ||
script: ocean/diagnostic_maps_quad.py | ||
control_model: {dataset: HadGEM2-CC, project: CMIP5, mip: Omon, exp: historical, ensemble: r1i1p1} | ||
exper_model: {dataset: HadGEM2-ES, project: CMIP5, mip: Omon, exp: historical, ensemble: r1i1p1} | ||
observational_dataset: {dataset: ARC-SST-1-1, project: obs4MIPs,} |