Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
int64
10k
40.6k
10,000
10,001
10,005
10,006
10,007
10,009
10,013
10,015
10,016
10,021
10,023
10,024
10,028
10,030
10,033
10,040
10,041
10,043
10,044
10,046
10,048
10,050
10,053
10,054
10,056
10,057
10,058
10,059
10,060
10,063
10,064
10,065
10,068
10,070
10,071
10,074
10,075
10,076
10,077
10,078
10,079
10,085
10,086
10,087
10,089
10,092
10,094
10,097
10,103
10,105
10,106
10,107
10,110
10,116
10,118
10,119
10,120
10,125
10,127
10,128
10,129
10,130
10,131
10,132
10,133
10,134
10,136
10,137
10,138
10,139
10,144
10,145
10,146
10,147
10,148
10,150
10,151
10,152
10,153
10,154
10,155
10,157
10,158
10,160
10,163
10,164
10,167
10,171
10,172
10,174
10,177
10,178
10,179
10,180
10,183
10,184
10,186
10,187
10,188
10,194
End of preview. Expand in Data Studio

🌾 AgriSR-PASTIS β€” Agricultural Super-Resolution & Segmentation Benchmark

AgriSR-PASTIS is a multi-modal satellite dataset for optical super-resolution and agricultural (agritech) segmentation. It pairs low-resolution Sentinel-2 time series (10 m/px) with co-registered very-high-resolution SPOT 6-7 imagery (1 m/px) over 2,433 agricultural patches in metropolitan France, together with dense panoptic crop-parcel annotations (18 crop types, 124,422 parcels) and aligned Sentinel-1 radar time series.

This makes the dataset suitable for two workflows out of the box:

  1. Super-Resolution (SR) β€” learn 10 m ➜ 1 m mappings using DATA_S2 (LR input, multispectral, multi-temporal) and DATA_SPOT (HR RGB target), pixel-aligned per patch (128Γ—128 ➜ 1280Γ—1280).
  2. Agritech segmentation β€” semantic, instance, and panoptic segmentation of crop parcels using ANNOTATIONS and INSTANCE_ANNOTATIONS, from single images, time series, or SR-enhanced inputs. Radar (DATA_S1A/DATA_S1D) enables multi-modal and cloud-robust variants.

This dataset is a repackaged distribution of PASTIS-HD (IGNF / PASTIS benchmark), curated for super-resolution and agritech segmentation research. Original credits, license, and citations are preserved below, as required by the Licence Ouverte / Open License (etalab-2.0).

πŸ“Š Dataset in numbers

πŸ›°οΈ Sentinel-2 (LR) πŸ›°οΈ Sentinel-1 (radar) πŸ›°οΈ SPOT 6-7 (HR) πŸ—» Annotations
2,433 time series 2 Γ— 2,433 time series (asc. + desc.) 2,433 images 124,422 individual parcels
10 m / pixel 10 m / pixel 1 m / pixel (native 1.5 m) ~4,000 kmΒ² covered
128Γ—128 px / image 128Γ—128 px / image 1280Γ—1280 px / image over 2B labeled pixels
38–61 acquisitions / series ~70 acquisitions / series one observation (2019) 18 crop types + background/void
10 spectral bands 2 polarizations (VV, VH) + VV/VH ratio 3 bands (RGB, 8-bit) semantic + instance + panoptic

⚠️ The SPOT data are natively 1.5 m resolution, over-sampled to 1 m to align pixel-perfect with the Sentinel grids (10 m ➜ 1 m = clean Γ—10 SR factor).

πŸ“ Repository structure

AgriSR-PASTIS/
β”œβ”€β”€ DATA_S2/                  # Sentinel-2 time series, npy (TΓ—10Γ—128Γ—128) β€” SR input / segmentation
β”œβ”€β”€ DATA_SPOT/                # SPOT 6-7 RGB 1m GeoTIFFs (1280Γ—1280) β€” SR target
β”œβ”€β”€ DATA_S1A/                 # Sentinel-1 ascending time series, npy β€” optional radar modality
β”œβ”€β”€ DATA_S1D/                 # Sentinel-1 descending time series, npy β€” optional radar modality
β”œβ”€β”€ ANNOTATIONS/              # TARGET_*.npy semantic labels, ParcelIDs_*.npy instance ids
β”œβ”€β”€ INSTANCE_ANNOTATIONS/     # HEATMAP_*, INSTANCES_*, ZONES_* for panoptic training
β”œβ”€β”€ metadata.geojson          # patch index: geometry, fold, acquisition dates (2,433 entries)
β”œβ”€β”€ NORM_S2_patch.json        # per-fold normalization stats (S2)
β”œβ”€β”€ NORM_S1A_patch.json       # per-fold normalization stats (S1 ascending)
β”œβ”€β”€ NORM_S1D_patch.json       # per-fold normalization stats (S1 descending)
β”œβ”€β”€ train.csv / val.csv / test.csv            # ready-made patch splits
β”œβ”€β”€ *_filtered_20.csv / *_filtered_5.csv      # lightweight subset splits (20 / 5 patches per split)
└── documentation/            # original PASTIS documentation (PDF)

Patch IDs are consistent across folders: e.g. S2_10007.npy ↔ SPOT6_RVB_1M00_2019_10007.tif ↔ TARGET_10007.npy, so LR/HR/label triplets can be joined by ID.

⚠️ The S1 and S2 folders contain slightly more files than there are labeled patches; metadata.geojson (2,433 entries) is the authoritative index. DATA_S1A = ascending orbit, DATA_S1D = descending orbit.

πŸš€ Quick start

import numpy as np
import rasterio

pid = 10007

# Super-resolution pair
lr_ts = np.load(f"DATA_S2/S2_{pid}.npy")            # (T, 10, 128, 128) 10m multispectral series
with rasterio.open(
    f"DATA_SPOT/PASTIS_SPOT6_RVB_1M00_2019/SPOT6_RVB_1M00_2019_{pid}.tif"
) as src:
    hr = src.read()                                  # (3, 1280, 1280) 1m RGB target

# Segmentation labels
sem = np.load(f"ANNOTATIONS/TARGET_{pid}.npy")       # semantic crop-type mask
ins = np.load(f"ANNOTATIONS/ParcelIDs_{pid}.npy")    # parcel instance ids

A ready-made PyTorch dataset class is available in the OmniSat repository.

🌱 Crop classes

18 crop-type classes (plus background = non-agricultural land, and void = parcels mostly outside the patch), derived from the French land parcel identification system (RPG). See documentation/pastis-documentation.pdf for the full nomenclature and class distribution.

🎯 Suggested benchmarks

  • Γ—10 optical SR: S2 (single date or temporal fusion) ➜ SPOT RGB, e.g. RRDB/ESRGAN, SwinIR, diffusion SR, temporal-fusion SR.
  • SR-assisted segmentation: train segmentation on SR outputs vs. native 10 m inputs and measure the gain on parcel boundaries.
  • Multi-modal segmentation: optical + radar time-series fusion for cloud-robust crop mapping.
  • Panoptic parcel delineation: instance-level parcel extraction at 1 m using the panoptic annotation set.

πŸ“œ License

Distributed under the Licence Ouverte / Open License 2.0 (etalab-2.0). You are free to reuse, modify, and redistribute, including commercially, provided the paternity/attribution below is acknowledged.

πŸ™ Credits & provenance

This dataset is a curated redistribution of PASTIS-HD by IGNF, which extends the original PASTIS benchmark (PASTIS ➜ PASTIS-R ➜ PASTIS-HD). All data were produced by the original authors and institutions:

  • The Sentinel imagery used in PASTIS was retrieved from THEIA: "Value-added data processed by the CNES for the Theia data cluster using Copernicus data. The treatments use algorithms developed by Theia's Scientific Expertise Centres."
  • The annotations stem from the French land parcel identification system (RPG) produced by IGN.
  • The SPOT images are open data thanks to the Dataterra Dinamis initiative under the "Couverture France DINAMIS" program.

πŸ“– Citations

If you use this dataset, please cite the original papers:

@article{garnot2021panoptic,
  title={Panoptic Segmentation of Satellite Image Time Series with Convolutional Temporal Attention Networks},
  author={Sainte Fare Garnot, Vivien and Landrieu, Loic},
  journal={ICCV},
  year={2021}
}

For the radar extension (PASTIS-R):

@article{garnot2021mmfusion,
  title    = {Multi-modal temporal attention models for crop mapping from satellite time series},
  journal  = {ISPRS Journal of Photogrammetry and Remote Sensing},
  year     = {2022},
  doi      = {https://doi.org/10.1016/j.isprsjprs.2022.03.012},
  author   = {Vivien {Sainte Fare Garnot} and Loic Landrieu and Nesrine Chehata},
}

For the VHR extension (PASTIS-HD):

@article{astruc2024omnisat,
  title={Omni{S}at: {S}elf-Supervised Modality Fusion for {E}arth Observation},
  author={Astruc, Guillaume and Gonthier, Nicolas and Mallet, Clement and Landrieu, Loic},
  journal={ECCV},
  year={2024}
}
Downloads last month
205