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
+76-1Lines changed: 76 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,82 @@ objectives:
9
9
keypoints:
10
10
- "First key point. Brief Answer to questions. (FIXME)"
11
11
---
12
-
FIXME
12
+
13
+
## The configuration file
14
+
15
+
The ``config-user.yml`` configuration file contains all the global level
16
+
information needed by ESMValTool to run. This is an (YAML file) [https://yaml.org/spec/1.2/spec.html]. An example configuration file can be found in the root directory of the ESMValTool repository.
17
+
Make a copy and rename it to ``config-user.yml``.
18
+
19
+
~~~
20
+
cp config-user-example.yml config-user.yml
21
+
~~~
22
+
{: .source}
23
+
24
+
This file contains:
25
+
* Rootpaths to the data from different projects
26
+
* Directory structure for input data
27
+
* Number of available CPUs
28
+
* Destination directory
29
+
* Auxiliary data directory
30
+
* Output settings
31
+
32
+
## Rootpaths to input data
33
+
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, OBS for observational dataset that adhere to (CMOR standard)[https://cmor.llnl.gov/]
34
+
For each category, you can define either one path or several pathes as a list.
35
+
Add the root path of the folder where you downloaded the data during the (Setup)[https://escience-academy.github.io/lesson-esmvaltool/setup.html]
0 commit comments