Create readme.md
Browse files
README.md
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- agricolture
|
7 |
+
- computer-vision
|
8 |
+
pretty_name: sen12vts
|
9 |
+
---
|
10 |
+
# SEN12VTS: Sentinel 1 and 2 Vegetation Time-Series Dataset
|
11 |
+
|
12 |
+
## Overview
|
13 |
+
The **SEN12VTS** (Sentinel-1 & Sentinel-2 Vegetation Time-Series) dataset has been created to support research on time-series analysis for vegetation indices, specifically targeting **NDVI (Normalized Difference Vegetation Index)** regression tasks. Recognizing the lack of datasets catering to this specific temporal and spatial need, SEN12VTS was developed to fill the gap with a high-quality, Europe-focused time-series dataset.
|
14 |
+
|
15 |
+
## Motivation
|
16 |
+
This dataset is part of the **GUARDIANS project**, aiming to build models for vegetation monitoring across Europe. The focus is on:
|
17 |
+
- **Highly vegetated areas**.
|
18 |
+
- Sampling over time to enable the reconstruction of coherent time-series for selected zones.
|
19 |
+
|
20 |
+
## Dataset Description
|
21 |
+
### Spatial and Temporal Extent
|
22 |
+
- **Region:** Europe (approx. bounded by EPSG:4326 `(-10.5, 34.5, 31.6, 71.5)`).
|
23 |
+
- **Temporal Coverage:** 2022β2023.
|
24 |
+
- **Spatial Resolution:** 10 meters.
|
25 |
+
|
26 |
+
### Data Sources
|
27 |
+
1. **ESA WorldCover 2021**: Used to identify highly vegetated areas.
|
28 |
+
2. **Sentinel-1 RTC**: Radiometrically Terrain Corrected radar imagery for ascending and descending orbits, VV and VH polarization.
|
29 |
+
3. **Sentinel-2 L2A**: Atmospherically corrected optical imagery with 12 spectral bands and Scene Classification (SCL).
|
30 |
+
|
31 |
+
### Sampling Methodology
|
32 |
+
- Bounding boxes (bboxes) of size 512x512 pixels were sampled where **90% of pixels** corresponded to vegetation categories (WorldCover values: 10, 20, 30, 40, 90, 95).
|
33 |
+
- Non-overlapping bboxes were selected within the Europe bounds.
|
34 |
+
- Sentinel-1 and Sentinel-2 data were downloaded for 1,166 bboxes across the two years.
|
35 |
+
- Final cropped tiles: **256x256 pixels**.
|
36 |
+
|
37 |
+
### Dataset Statistics
|
38 |
+
- **BBoxes (2022 only):** 36
|
39 |
+
- **BBoxes (2023 only):** 454
|
40 |
+
- **BBoxes (both years):** 676
|
41 |
+
- **Total Dataset Size:** ~824.89 GB
|
42 |
+
|
43 |
+
## Data Structure
|
44 |
+
Each bbox folder contains the following subfolders and files:
|
45 |
+
```
|
46 |
+
bbox_number/
|
47 |
+
βββ s1_rtc/
|
48 |
+
β βββ ascending/
|
49 |
+
β β βββ s1_rtc_YYYYMMDDTHHMMSS.tif
|
50 |
+
β β βββ s1_rtc_YYYYMMDDTHHMMSS.tif
|
51 |
+
β β βββ ...
|
52 |
+
β βββ descending/
|
53 |
+
β βββ s1_rtc_YYYYMMDDTHHMMSS.tif
|
54 |
+
β βββ s1_rtc_YYYYMMDDTHHMMSS.tif
|
55 |
+
β βββ ...
|
56 |
+
βββ s2/
|
57 |
+
β βββ s2_YYYYMMDDTHHMMSS.tif
|
58 |
+
β βββ s2_YYYYMMDDTHHMMSS.tif
|
59 |
+
β βββ ...
|
60 |
+
βββ worldcover/
|
61 |
+
βββ worldcover.tif
|
62 |
+
```
|
63 |
+
### File Formats
|
64 |
+
- **TIFF (Tagged Image File Format):** Used for storing all raster data with metadata and lossless compression.
|
65 |
+
|
66 |
+
## Sentinel Data Details
|
67 |
+
### Sentinel-1 RTC
|
68 |
+
- Pre-processed for radiometric terrain correction and orthorectified to UTM zones.
|
69 |
+
- Data stored in ascending and descending orbits to allow analysis of orbit-specific effects.
|
70 |
+
- Each file has two bands, in this order: VV, VH
|
71 |
+
|
72 |
+
### Sentinel-2 L2A
|
73 |
+
- 12 spectral bands selected, along with a scene classification map ([SCL](https://custom-scripts.sentinel-hub.com/custom-scripts/sentinel-2/scene-classification/)).
|
74 |
+
- Resolutions vary from **10m to 60m** (resampled to 10m).
|
75 |
+
|
76 |
+
### [WorldCover](https://esa-worldcover.org/en)
|
77 |
+
- Extracted and resampled to match bbox projections for consistency.
|
78 |
+
|
79 |
+
## Example Visualization
|
80 |
+
The dataset provides:
|
81 |
+
- RGB composites from Sentinel-2 (red, green, and blue bands).
|
82 |
+
- NDVI derived from Sentinel-2 data.
|
83 |
+
- Sentinel-1 radar images for both polarizations (ascending and descending).
|
84 |
+
- WorldCover classification maps.
|
85 |
+
|
86 |
+

|
87 |
+
|
88 |
+
|
89 |
+
## Citation
|
90 |
+
If you use SEN12VTS in your research, please cite this repository and the corresponding publication.
|
91 |
+
|
92 |
+
---
|
93 |
+
|
94 |
+
## Usage
|
95 |
+
The dataset can be used for various applications, including but not limited to:
|
96 |
+
- NDVI regression.
|
97 |
+
- Vegetation monitoring and analysis.
|
98 |
+
- Time-series forecasting.
|
99 |
+
- Multi-sensor data fusion.
|
100 |
+
|
101 |
+
## Licensing
|
102 |
+
The dataset is distributed under the MIT, and its use is subject to compliance with the Sentinel and ESA WorldCover data usage policies.
|
103 |
+
|
104 |
+
---
|
105 |
+
|
106 |
+
### Contact
|
107 |
+
For questions, issues, or contributions, please open an issue on this repository or contact federico.oldani@gmail.com.
|