Datasets:
Commit
•
b7043ae
1
Parent(s):
627fbe4
Update README.md
Browse files
README.md
CHANGED
@@ -10,6 +10,8 @@ pretty_name: S2-100K
|
|
10 |
|
11 |
> The S2-100K dataset is a dataset of 100,000 multi-spectral satellite images sampled from Sentinel-2 via the Microsoft Planetary Computer. Copernicus Sentinel data is captured between Jan 1, 2021 and May 17, 2023. The dataset is sampled approximately uniformly over landmass and only includes images without cloud coverage. The dataset is available for research purposes only. If you use the dataset, please cite our paper. More information on the dataset can be found in our paper.
|
12 |
|
|
|
|
|
13 |
## Dataset Details
|
14 |
|
15 |
### Dataset Description
|
@@ -40,11 +42,25 @@ pretty_name: S2-100K
|
|
40 |
|
41 |
<!-- This section describes suitable use cases for the dataset. -->
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
|
|
44 |
|
45 |
-
|
|
|
|
|
|
|
46 |
```
|
47 |
-
|
|
|
|
|
|
|
|
|
48 |
```
|
49 |
|
50 |
|
|
|
10 |
|
11 |
> The S2-100K dataset is a dataset of 100,000 multi-spectral satellite images sampled from Sentinel-2 via the Microsoft Planetary Computer. Copernicus Sentinel data is captured between Jan 1, 2021 and May 17, 2023. The dataset is sampled approximately uniformly over landmass and only includes images without cloud coverage. The dataset is available for research purposes only. If you use the dataset, please cite our paper. More information on the dataset can be found in our paper.
|
12 |
|
13 |
+
See this [GitHub repo](https://github.com/microsoft/satclip/) for more details.
|
14 |
+
|
15 |
## Dataset Details
|
16 |
|
17 |
### Dataset Description
|
|
|
42 |
|
43 |
<!-- This section describes suitable use cases for the dataset. -->
|
44 |
|
45 |
+
To download the dataset you can use the `huggingface_hub` library.
|
46 |
+
|
47 |
+
```python
|
48 |
+
from huggingface_hub import snapshot_download
|
49 |
+
snapshot_download("davanstrien/satclip", local_dir='.', repo_type='dataset')
|
50 |
+
```
|
51 |
|
52 |
+
Alternatively you can run
|
53 |
|
54 |
+
```bash
|
55 |
+
# Make sure you have git-lfs installed (https://git-lfs.com)
|
56 |
+
git lfs install
|
57 |
+
git clone https://huggingface.co/datasets/davanstrien/satclip
|
58 |
```
|
59 |
+
|
60 |
+
To extract the images you can run the following command.
|
61 |
+
|
62 |
+
```bash
|
63 |
+
ls image/*.tar.xz |xargs -n1 tar -xzf
|
64 |
```
|
65 |
|
66 |
|