You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _episodes/03-configuration.md
+31-5Lines changed: 31 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "Configuration"
3
3
teaching: 0
4
4
exercises: 0
5
5
questions:
6
-
- "What is user configuration file and how can I use it?"
6
+
- "What is the user configuration file and how can I use it?"
7
7
objectives:
8
8
- "Understand the data directories structure"
9
9
- "Configure ESMValTool to ignore some settings"
@@ -25,19 +25,40 @@ Make a copy and rename it to ``config-user.yml``:
25
25
26
26
This file contains the information for:
27
27
* Directory structure for the data from different projects
28
-
*Rootpaths to input data
28
+
*Rootpath to input data
29
29
* Number of available CPUs
30
30
* Destination directory
31
31
* Auxiliary data directory
32
32
* Output settings
33
33
34
34
## Directory structure for the data from different projects
35
-
ESMValTool uses several categories (in ESMValTool, this is referred to as projects) for input data based on their source, like CMIP for dataset from climate model intercomparison project, and OBS for observational dataset that adhere to (CMOR standard)[https://cmor.llnl.gov/].
36
-
For each category, you can define either one path or several pathes as a list.
35
+
Input data can be from various models, observations and reanalysis data that adhere to the [CF/CMOR standard](https://cmor.llnl.gov/). ESMValTool uses several categories (in ESMValTool, this is referred to as projects) for input data based on their source.
36
+
The current categories in the configuration file are mentioned below. For example, CMIP is used for a dataset from the climate model intercomparison project whereas OBS for an observational dataset. For each category, you can define either one path or several pathes as a list.
37
+
38
+
~~~
39
+
rootpath:
40
+
CMIP3: [~/cmip3_inputpath1, ~/cmip3_inputpath2]
41
+
CMIP5: [~/cmip5_inputpath1, ~/cmip5_inputpath2]
42
+
CMIP6: [~/cmip6_inputpath1, ~/cmip6_inputpath2]
43
+
OBS: ~/obs_inputpath
44
+
OBS6: ~/obs6_inputpath
45
+
obs4mips: ~/obs4mips_inputpath
46
+
ana4mips: ~/ana4mips_inputpath
47
+
native6: ~/native6_inputpath
48
+
RAWOBS: ~/rawobs_inputpath
49
+
default: ~/default_inputpath
50
+
~~~
51
+
{: .source}
52
+
53
+
> ## Attention
54
+
>
55
+
> * For more information about data from different projects, you can visit ESMValTool [documentation](https://esmvaltool.readthedocs.io/en/latest/getting_started/inputdata.html).
56
+
{: .callout}
37
57
38
58
## Rootpaths to input data
59
+
The ``rootpath`` specifies the directories where ESMValTool will look for input data.
39
60
In this lesson, you work with data from (CMIP5)[https://esgf-node.llnl.gov/projects/cmip5/].
40
-
Add the root path of the folder where you downloaded the data during the (Setup)[https://escience-academy.github.io/lesson-esmvaltool/setup.html].
61
+
Add the root path of the folder where you downloaded the data during the (Setup)[https://esmvalgroup.github.io/tutorial/setup.html].
41
62
42
63
~~~
43
64
rootpath:
@@ -46,6 +67,11 @@ Add the root path of the folder where you downloaded the data during the (Setup)
46
67
~~~
47
68
{: .source}
48
69
70
+
> ## Attention
71
+
>
72
+
> * For more information about setting the correct rootpath, you can visit ESMValTool [documentation](https://esmvaltool.readthedocs.io/projects/esmvalcore/en/latest/esmvalcore/datafinder.html).
73
+
{: .callout}
74
+
49
75
## Number of available CPUs
50
76
## Auxiliary data directory (used for some additional datasets)
0 commit comments