@@ -38,7 +38,7 @@ the following:
38
38
documentation :
39
39
description : |
40
40
Recipe to produce time series figures of the derived variable, the
41
- Atlantic meriodinal overturning circulation (AMOC).
41
+ Atlantic meridional overturning circulation (AMOC).
42
42
This recipe also produces transect figures of the stream functions for
43
43
the years 2001-2004.
44
44
@@ -102,8 +102,8 @@ Here it is an example concatenating the `historical` experiment with `rcp85`
102
102
datasets :
103
103
- {dataset: CanESM2, project: CMIP5, exp: [historical, rcp85], ensemble: r1i1p1, start_year: 2001, end_year: 2004}
104
104
105
- It is also possible to define the ensemble as a list, although it is useful only
106
- case the two experiments have different ensemble names
105
+ It is also possible to define the ensemble as a list when the two experiments have different ensemble names.
106
+ In this case, the specified datasets are concatenated into a single cube:
107
107
108
108
.. code-block :: yaml
109
109
@@ -113,22 +113,24 @@ case the two experiments have different ensemble names
113
113
ESMValTool also supports a simplified syntax to add multiple ensemble members from the same dataset.
114
114
In the ensemble key, any element in the form `(x:y) ` will be replaced with all numbers from x to y (both inclusive),
115
115
adding a dataset entry for each replacement. For example, to add ensemble members r1i1p1 to r10i1p1
116
- you can use the following abreviatted syntax:
116
+ you can use the following abbreviated syntax:
117
117
118
118
.. code-block :: yaml
119
119
120
120
datasets :
121
- - {dataset: CanESM2, project: CMIP5, exp: historical, ensemble: r(1:10)i1p1, start_year: 2001, end_year: 2004}
121
+ - {dataset: CanESM2, project: CMIP5, exp: historical, ensemble: " r(1:10)i1p1" , start_year: 2001, end_year: 2004}
122
122
123
123
It can be included multiple times in one definition. For example, to generate the datasets definitions
124
124
for the ensemble members r1i1p1 to r5i1p1 and from r1i2p1 to r5i1p1 you can use:
125
125
126
126
.. code-block :: yaml
127
127
128
128
datasets :
129
- - {dataset: CanESM2, project: CMIP5, exp: historical, ensemble: r(1:5)i(1:2)p1, start_year: 2001, end_year: 2004}
129
+ - {dataset: CanESM2, project: CMIP5, exp: historical, ensemble: " r(1:5)i(1:2)p1" , start_year: 2001, end_year: 2004}
130
130
131
131
Please, bear in mind that this syntax can only be used in the ensemble tag.
132
+ Also, note that the combination of multiple experiments and ensembles, like
133
+ exp: [historical, rcp85], ensemble: [r1i1p1, "r(2:3)i1p1"] is not supported and will raise an error.
132
134
133
135
Note that this section is not required, as datasets can also be provided in the
134
136
Diagnostics _ section.
@@ -140,7 +142,7 @@ Diagnostics_ section.
140
142
Recipe section: ``preprocessors ``
141
143
=================================
142
144
143
- The preprocessor section of the recipe includes one or more preprocesors , each
145
+ The preprocessor section of the recipe includes one or more preprocessors , each
144
146
of which may call the execution of one or several preprocessor functions.
145
147
146
148
Each preprocessor section includes:
0 commit comments