File size: 1,261 Bytes
45b5ea7
 
 
1aa9885
45b5ea7
1aa9885
 
 
5142129
1aa9885
45b5ea7
 
 
 
 
 
7132894
 
 
 
 
 
 
3b3a085
7132894
 
45b5ea7
 
 
 
 
12a1218
 
 
 
506e7c9
3b3a085
12a1218
 
45b5ea7
 
3ec0cc7
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
---
tags:
- climate
license: other
---

## Terms of Use

By using the dataset, you agree to comply with the dataset license ([CC-by-4.0-Deed](https://creativecommons.org/licenses/by/4.0/deed.en)).  

## Download Instructions 


To download one file, please use 

```
from huggingface_hub import hf_hub_download

# Path of the directory where the data will be downloaded in your local machine
local_directory = 'LOCAL_DIRECTORY'
# Relative path of the file in the repository
filepath = 'FILE_PATH'

repo_id = "climateset/climateset"
repo_type = "dataset"
hf_hub_download(repo_id=repo_id, filename=filepath, local_dir=local_directory, repo_type=repo_type, local_dir_use_symlinks=False)
```

To download the content of the whole repository, please use 

```
from huggingface_hub import snapshot_download

# Path of the directory where the data will be downloaded in your local machine
local_directory = 'LOCAL_DIRECTORY'

repo_id = "climateset/climateset"
repo_type = "dataset"
snapshot_download(repo_id=repo_id, repo_type=repo_type, local_dir=local_directory, local_dir_use_symlinks=False)
```

Please note that the script `extract_climateset.py` can be used to extract the content of each of the .TAR archive files once they are downloaded in your local machine.