comparison README.md @ 2:b9d9fe0c2ce7 draft

planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables commit 6045302c39c9c11fb6a73966a364cc395f2f9b28
author climate
date Sun, 23 Jun 2019 11:16:11 -0400
parents 5c0ab9932311
children 9ee8db6ffba3
comparison
equal deleted inserted replaced
1:8b30be2cef81 2:b9d9fe0c2ce7
7 7
8 To be able to retrieve data, you would need to register and get your [CDS API key](https://cds.climate.copernicus.eu/api-how-to). 8 To be able to retrieve data, you would need to register and get your [CDS API key](https://cds.climate.copernicus.eu/api-how-to).
9 9
10 The CDS API Key needs to be: 10 The CDS API Key needs to be:
11 - located in a file called `.cdsapirc`in the HOME area 11 - located in a file called `.cdsapirc`in the HOME area
12 (as defined the `HOME` environment variable). 12 (as defined the `HOME` environment variable).
13 - or passed in an enviroment variable called `GALAXY_COPERNICUS_CDSAPIRC`. 13 The file `.cdsapirc` should look like that:
14 When passed in `GALAXY_COPERNICUS_CDSAPIRC`, make sure the key does not contain 14
15 the string `key: ` but the key itself only (starting with a number). The file 15 ```
16 `.cdsapirc` will then be created and placed in the HOME area (using HOME 16 url: https://cds.climate.copernicus.eu/api/v2
17 environment variable). 17 key: 111:8789787-qwerz4e47-888-not-real
18 verify: 0
19 ```
20 - or passed in an enviroment variable called `GALAXY_COPERNICUS_CDSAPIRC_KEY`.
21 This environment variable should contain a string that looks like that:
22 ```
23 111:8789787-qwerz4e47-888-not-real
24 ```
25 When passed in `GALAXY_COPERNICUS_CDSAPIRC_KEY`, make sure the key does not
26 contain the string `key: ` but the key itself only (starting with a number).
27 The file `.cdsapirc` will then be created and placed in the HOME area (using
28 HOME environment variable).
29 - or use `GALAXY_COPERNICUS_CDSAPIRC_KEY_FILE` to specify where your key file
30 is stored on your system.
31