Skip to content

Commit e506f9a

Browse files
committed
update the drs for code and data
1 parent 9e47ed6 commit e506f9a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

_episodes/03-configuration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ keypoints:
1717

1818
The ``config-user.yml`` configuration file contains all the global level information needed by ESMValTool to run.
1919
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.
20-
Let's change our working directory to ESMValTool, then make a copy of the file and rename it to ``config-user.yml``, then run a text editor called Nano to open it:
20+
Let's change our working directory to ``esmvaltool_tutorial`` that is made during the [Setup](https://esmvalgroup.github.io/tutorial/setup.html). Then we copy the config file and rename it to ``config-user.yml``, then run a text editor called Nano to open it:
2121

2222
~~~bash
23-
cd ESMValTool
24-
cp config-user-example.yml config-user.yml
23+
cd esmvaltool_tutorial
24+
cp ESMValTool/config-user-example.yml config-user.yml
2525
nano config-user.yml
2626
~~~
2727

@@ -59,17 +59,18 @@ rootpath:
5959
~~~
6060

6161
In this lesson, we will work with data from [CMIP5](https://esgf-node.llnl.gov/projects/cmip5/).
62-
Add the root path of the folder where you downloaded the data during the [Setup](https://esmvalgroup.github.io/tutorial/setup.html).
62+
We add the root path of the folder where data is available.
6363

6464
~~~YAML
6565
rootpath:
6666
...
67-
CMIP5: [~/cmip5_inputpath1, ~/cmip5_inputpath2, ~/tutorial/test_data]
67+
CMIP5: [~/cmip5_inputpath1, ~/cmip5_inputpath2, ~/esmvaltool_tutorial/data]
6868
~~~
6969

7070
> ## Setting the correct rootpath
7171
>
72-
> For more information about setting the rootpath, you can visit ESMValTool [documentation](https://esmvaltool.readthedocs.io/projects/esmvalcore/en/latest/esmvalcore/datafinder.html).
72+
> * To get the data (or its correct rootpath), check instruction in [Setup](https://esmvalgroup.github.io/tutorial/setup.html).
73+
> * For more information about setting the rootpath, you can visit ESMValTool [documentation](https://esmvaltool.readthedocs.io/projects/esmvalcore/en/latest/esmvalcore/datafinder.html).
7374
{: .callout}
7475

7576
## Directory structure for the data from different projects

0 commit comments

Comments
 (0)