Skip to content

Commit 97f0a8d

Browse files
committed
reduce line lengths
1 parent 60f2a15 commit 97f0a8d

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

_episodes/11-esmvalcoreapi.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,13 @@ You will need to use a python environment with ESMValTool and ESMValCore install
5252

5353
## Configuration in the notebook
5454

55-
We can look at the default user configuration file, by default found in `~/.esmvaltool/config-user.yml`
56-
by calling a `CFG` object as a dictionary structure. This gives us the ability to edit the settings.
55+
We can look at the default user configuration file, by default found in
56+
`~/.esmvaltool/config-user.yml` by calling a `CFG` object as a dictionary structure.
57+
This gives us the ability to edit the settings.
5758
The tool can automatically download the climate data files required to run a recipe for you.
5859
You can check your download directory and output directory where your recipe runs will be saved.
59-
This `CFG` object is from the `config` module in the ESMValCore API, for more details see [here][api-config].
60+
This `CFG` object is from the `config` module in the ESMValCore API,
61+
for more details see [here][api-config].
6062

6163
> Call the `CFG` object in a Jupyter notebook and inspect the values.
6264
> > ## Solution
@@ -302,9 +304,9 @@ See the [documentation][recipe-section-preprocessors]{:target="_blank"} to read
302304
303305
> ## Note: Warnings
304306
> When the notebook cell runs you may get some warnings. These would be similar to what is in the
305-
> *main_log.txt* and *main_log_debug.txt* files in the output of a recipe run. The warnings can come
306-
> from any of the python libraries used to process the data. If they are just warnings the cell can
307-
> still complete and return an output
307+
> *main_log.txt* and *main_log_debug.txt* files in the output of a recipe run.
308+
> The warnings can come from any of the python libraries used to process the data.
309+
> If they are just warnings the cell can still complete and return an output
308310
> > ## Example warnings
309311
> > ![image](../fig/preproc_warnings.png)
310312
> {: .solution}
@@ -323,7 +325,7 @@ print(da)
323325
### Plot data
324326
The output from the preprocessor functions are Iris cubes.
325327
[Iris](https://scitools-iris.readthedocs.io/en/latest/index.html){:target="_blank"}
326-
has wrappers for [matplotlib](https://matplotlib.org/){:target="_blank"} to [plot the processed
328+
has wrappers for [matplotlib](https://matplotlib.org/){:target="_blank"} to [plot the processed
327329
cubes][iris-plot]{:target="_blank"}.
328330
This is useful in a notebook to help develop your recipe with the esmvalcore preprocessors.
329331
```python

0 commit comments

Comments
 (0)