-
Notifications
You must be signed in to change notification settings - Fork 0
/
Download Illustration dataset.txt
68 lines (56 loc) · 1.81 KB
/
Download Illustration dataset.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
In this file we describe the steps to download the Illustration dataset presented in the Article.
1 - go to https://doi.org/10.24381/cds.fe90a594 and "download" tab.
2 - Many options are available to download the files:
- For API request please use the following request:
import cdsapi
c = cdsapi.Client()
c.retrieve(
'sis-biodiversity-era5-regional',
{
'region': 'europe',
'origin': 'era5',
'variable': [
'cloud_cover', 'meridional_wind_speed', 'precipitation',
'precipitation_seasonality', 'temperature_seasonality', 'wind_speed',
],
'derived_variable': 'monthly_mean',
'statistic': [
'mean', 'median',
],
'version': '1.0',
'format': 'zip',
},
'download.zip')
- For Toolbox request use:
import cdstoolbox as ct
@ct.application(title='Download data')
@ct.output.download()
def download_application():
data = ct.catalogue.retrieve(
'sis-biodiversity-era5-regional',
{
'region': 'europe',
'origin': 'era5',
'variable': [
'cloud_cover', 'meridional_wind_speed', 'precipitation',
'precipitation_seasonality', 'temperature_seasonality', 'wind_speed',
],
'derived_variable': 'monthly_mean',
'statistic': [
'mean', 'median',
],
'version': '1.0',
}
)
return data
- Via web-browser, please thick:
[Region][Europe]
[Origin][ERA5]
[Variable][BIO04,BIO15]
[Essential climate variables][Precipitation, Cloud cover]
[Wind indicators][Wind speed, Meridional wind speed]
[Derived variable][Monthly mean]
[Statistic][Mean, Median]
[Version][1.0]
[Format][.zip]
3 - Place the downloads files in a folder called 'Datasets' within the main folder of the .RProj