Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a data download link to the running your first recipe episode #100

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions _episodes/04-recipe.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,20 @@ Please note the following sections:

> ## Running ESMValTool
>
> Use the command:
> The example recipe presented above requires a single data file. If you are not
> working on a system with data available, you can download the file with the
> command:
>
> ~~~bash
> wget http://esgf-data1.ceda.ac.uk/thredds/fileServer/esg_dataroot/cmip5/output1/MOHC/HadGEM2-ES/historical/mon/ocean/Omon/r1i1p1/v20110916/thetaoga/thetaoga_Omon_HadGEM2-ES_historical_r1i1p1_185912-200512.nc
> ~~~
Comment on lines +276 to +282
Copy link
Contributor

@sverhoeven sverhoeven Jul 31, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section might be better placed on setup.md

Also if we tell user to download to ~/default_inputpath/ we can reduce some typing.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I fear that people will not be able to find it in that very long document.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see #103

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once #104 is merged we should point to that section of the setup.md instead of having the command here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's wait for that before continuing with this PR then

>
> Make sure to move the downloaded file to the directory you configured in
> [episode #3]({{ page.root}}{% link _episodes/03-configuration.md %}).
>
> To run the recipe, use the command:
> ~~~bash
> esmvaltool run --config_file ./path_to_file/user-config.yml ./path_to_file/recipe_example.yml
> esmvaltool run ./recipe_example.yml
> ~~~
>
> Follow the terminal guiding you through the subprocesses that are running. Can
Expand Down