Datasets:

Modalities:
Image
ArXiv:
DOI:
License:
edornd commited on
Commit
a5762fb
1 Parent(s): c97a99a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md CHANGED
@@ -1,3 +1,91 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - sparse-labels
7
+ - segmentation
8
+ - eo
9
+ pretty_name: SPADA Dataset
10
+ size_categories:
11
+ - 10M<n<100M
12
  ---
13
+
14
+ # SPADA Dataset
15
+
16
+ This dataset contains images and sparse labels used in the paper [Land Cover Segmentation with Sparse Annotations from Sentinel-2 Imagery
17
+ ](https://arxiv.org/abs/2306.16252), published at IGARSS 2023.
18
+
19
+ ---------
20
+ - **Repository:** https://github.com/links-ads/igarss-spada
21
+ - **Paper:** https://paperswithcode.com/paper/land-cover-segmentation-with-sparse
22
+ ---------
23
+ ![Dataset sample](assets/sample.png)
24
+
25
+ ## Dataset Preparation
26
+
27
+ The dataset has been compressed into segmented tarballs for ease of use within Git LFS (that is, tar > gzip > split).
28
+ To revert the process into files and directories, follow these steps:
29
+
30
+ ```console
31
+ $ git clone https://huggingface.co/datasets/links-ads/spada-dataset
32
+ $ cd spada-dataset
33
+ # revert the multipart compression: merge first, then untar
34
+ $ cat data/train/train.tar.* | tar -xzvf - -i
35
+ $ cat data/test/test.tar.* | tar -xzvf - -i
36
+ $ cat data/val/val.tar.* | tar -xzvf - -i
37
+ ```
38
+
39
+ It is very likely that the extracted files will retain the internal directory structure, making the `train/val/test` directories useless.
40
+ Adapt the output structure as you see fit, the original structure is shown below.
41
+
42
+ ## Dataset Structure
43
+
44
+ The main dataset used in the paper comprises the following inputs:
45
+
46
+ | Folder | Data Type | Description | Format |
47
+ |---------|--------------------|-------------------------------------------------------------------------------------------|--------------------------|
48
+ | Img | Sentinel-2 Image | L2A data from 2018, with 12 channels in reflectance/10k format | GeoTIFF (.tif) |
49
+ | CLC | Scribble labels | 2D labels derived from Corine Land Cover (CLC), obtained after the scribbling process | GeoTIFF (.tif) |
50
+ | Fuel | Pointwise labels | LUCAS points rasterized in a 5x5 grid to obtain point-wise annotations | GeoTIFF (.tif) |
51
+
52
+ The training set also provides overlapping 512x512 tiles, while validation and testing are divided into non-overlapped sections with size 2048x2048 for ease of use.
53
+
54
+ ### Source Data
55
+
56
+ - Sentinel-2 L2A 2018 images were downloaded from Microsoft Planetary Computer, using predefined AoIs.
57
+ - CLC and LUCAS data from 2018 were downloaded from the official Copernicus Land platform, at [https://land.copernicus.eu/en](https://land.copernicus.eu/en).
58
+ - Urban Atlas (UA) can also be downloaded from there.
59
+
60
+ ### Licensing Information
61
+
62
+ CC-BY-4.0 [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)
63
+
64
+ ### Citation Information
65
+
66
+ ```bibtex
67
+ @inproceedings{galatola2023land,
68
+ title={Land Cover Segmentation with Sparse Annotations from Sentinel-2 Imagery},
69
+ author={Galatola, Marco and Arnaudo, Edoardo and Barco, Luca and Rossi, Claudio and Dominici, Fabrizio},
70
+ booktitle={IGARSS 2023-2023 IEEE International Geoscience and Remote Sensing Symposium},
71
+ pages={6952--6955},
72
+ year={2023},
73
+ organization={IEEE}
74
+ }
75
+ ```
76
+
77
+ ### Contributions
78
+ - Edoardo Arnaudo (edoardo.arnaudo@polito.it | linksfoundation.com)
79
+ - Marco Galatola (marco.galatola@linksfoundation.com)
80
+ - Luca Barco (luca.barco@linksfoundation.com)
81
+
82
+
83
+ ### Acknowledgements
84
+
85
+ This dataset was created in the context of the H2020 SAFERS project, under G.A. n. 869353, and HEU OVERWATCH project, under G.A. n.101082320, with the support of the EU Agency for the Space Programme (EUSPA).
86
+ More information:
87
+ - [https://safers-project.eu/](https://safers-project.eu/)
88
+ - [https://overwatchproject.eu/](https://overwatchproject.eu/)
89
+
90
+
91
+