@@ -22,7 +22,7 @@ keypoints:
2222
2323One of the key strenghts of ESMValTool is in making complex analyses reusable
2424and reproducible. But that doesn't mean everything in ESMValTool needs to be
25- complex. Sometimes, the biggest challenge is in making things simpler . You
25+ complex. Sometimes, the biggest challenge is in keeping things simple . You
2626probably know the 'warming stripes' visualization by Professor Ed Hawkins. On
2727the site < https://showyourstripes.info > you can find the same visualization for
2828many regions in the world.
@@ -46,9 +46,9 @@ preprocessing, and then runs our Python script.
4646
4747> ## Drawing up a plan
4848>
49- > Previously, we have seen that ESMValTool executed a number of
50- > tasks. Write down which tasks we will need to do in this episode. And what do
51- > each of these tasks do ?
49+ > Previously, we saw that running ESMValTool executes a number of
50+ > tasks. Write down what tasks we will need to execute in this episode and what
51+ > each of these tasks does ?
5252>
5353> > ## Answer
5454> >
@@ -95,6 +95,8 @@ description.
9595---
9696documentation :
9797 description : Reproducing Ed Hawkins' warming stripes visualization
98+ title : Reproducing Ed Hawkins' warming stripes visualization.
99+
98100```
99101
100102Notice that ` yaml ` always requires 2 spaces indentation between the different
@@ -117,9 +119,8 @@ Error validating data /home/user/esmvaltool_tutorial/recipe_barcodes.yml with sc
117119{: .error}
118120
119121Here, ESMValTool is telling us that it is missing a required field, namely the
120- authors. It is good to know that ESMValTool always tries to validate the recipe
121- in an early stage. This initial check doesn't catch everything though, so we
122- should always stay alert.
122+ authors. We see that ESMValTool always tries to validate the recipe
123+ at an early stage.
123124
124125Let's add some additional information to the recipe. Open the recipe file again,
125126and add an authors section below the description. ESMValTool expects the authors
@@ -139,6 +140,8 @@ below the documentation. The file should now look like:
139140---
140141documentation :
141142 description : Reproducing Ed Hawkins' warming stripes visualization
143+ title : Reproducing Ed Hawkins' warming stripes visualization.
144+
142145 authors :
143146 - doe_john
144147diagnostics :
@@ -353,7 +356,7 @@ for each of the modifications we'll make below.
353356> > You could have used `extract_point` or `extract_region`. We used
354357> > `extract_point`. Here's a copy of the [recipe at this
355358> > point](../files/recipe_warming_stripes_local.yml) and this is the difference
356- > > with the previous recipe:
359+ > > from the previous recipe:
357360> >
358361> > ```diff
359362> > --- recipe_warming_stripes.yml
0 commit comments