Datasets:
File size: 6,099 Bytes
b283b0d | 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | ---
license: cc-by-4.0
language:
- en
task_categories:
- image-to-image
- image-segmentation
pretty_name: GeoSR-Bench
size_categories:
- 10K<n<100K
---
# GeoSR-Bench
## π§ Dataset Upload in Progress
GeoSR-Bench is currently being uploaded and reorganized.
Some files, metadata, and subsets may still be incomplete or subject to change.
---
## Dataset Description
GeoSR-Bench directly connects super-resolution (SR) with downstream Earth monitoring tasks, moving beyond conventional fidelity-based evaluation. It comprises spatially co-located, temporally aligned, and quality-controlled image pairs from about 36,000 locations across diverse land covers, spanning spatial resolutions from 500 m to 0.6 m. It is designed to evaluate whether improved image resolution from SR models translates into better downstream performance for tasks such as land cover segmentation, infrastructure mapping, and biophysical variable estimation.
GeoSR-Bench includes two cross-platform super-resolution tasks:
- **MODIS β Landsat-8**
- **Sentinel-2 β NAIP**
For each task, the dataset is organized into two types of subsets:
1. **Super-resolution-only datasets**
These subsets include paired lower-resolution and higher-resolution remote sensing images without downstream task labels. They are designed for training SR models.
2. **Downstream task datasets**
These subsets include paired lower-resolution and higher-resolution images together with task-specific labels. They are designed to finetune SR models and evaluate whether super-resolved images improve downstream Earth monitoring tasks, such as land cover segmentation, infrastructure mapping, and biophysical variable estimation.
Each sample may contain:
- A lower-resolution image
- A higher-resolution reference image
- A downstream task label, when available
- Metadata, when available
GeoSR-Bench is intended to support research on task-aware super-resolution, cross-platform learning, and remote sensing foundation models.
## Folder Structure
The dataset contains both SR-only datasets and downstream task datasets.
### SR-only dataset
```text
SRDatasetName/
βββ lr/ or modis/ or s2/
β βββ lr_0.tif
β βββ lr_1.tif
β βββ ...
βββ hr/ or l8/ or naip/
β βββ hr_0.tif
β βββ hr_1.tif
β βββ ...
βββ meta/
β βββ meta_0.json
β βββ meta_1.json
β βββ ...
βββ SRDatasetName_split_all.csv
```
### Downstream task dataset
```text
DownstreamDatasetName/
βββ s2/ or modis/
β βββ s2_0.tif
β βββ s2_1.tif
β βββ ...
βββ naip/ or l8/
β βββ naip_0.tif
β βββ naip_1.tif
β βββ ...
βββ label/
β βββ label_0.tif
β βββ label_1.tif
β βββ ...
βββ meta/
β βββ meta_0.json
β βββ meta_1.json
β βββ ...
βββ DownstreamDatasetName_split_all.csv
```
## Split Files
Each subset includes a CSV file describing the image paths and data split.
SR-only datasets are intended for training super-resolution models and do not have predefined train/validation/test split files.
For downstream task datasets, the CSV contains:
```text
LR image,HR image,Label,split
DownstreamDatasetName/s2/s2_0.tif,DownstreamDatasetName/naip/naip_0.tif,DownstreamDatasetName/label/label_0.tif,training
DownstreamDatasetName/s2/s2_1.tif,DownstreamDatasetName/naip/naip_1.tif,DownstreamDatasetName/label/label_1.tif,validation
DownstreamDatasetName/s2/s2_2.tif,DownstreamDatasetName/naip/naip_2.tif,DownstreamDatasetName/label/label_2.tif,test
```
## Data Fields
| Column | Description |
|---|---|
| `LR image` | Path to the lower-resolution input image |
| `HR image` | Path to the higher-resolution reference image |
| `Label` | Path to the downstream task label |
| `split` | Dataset split: `training`, `validation`, or `test` |
## File Formats
- Images are stored as GeoTIFF files (`.tif`).
- Labels are stored as GeoTIFF files (`.tif`).
- Metadata files, when available, are stored as JSON files (`.json`).
- Split files are stored as CSV files (`.csv`).
GeoTIFF files retain geospatial metadata such as coordinate reference system, transform, resolution, and spatial extent.
## Usage
You can read the split CSV using Python:
```python
import pandas as pd
csv_path = "DownstreamDatasetName/DownstreamDatasetName_split_all.csv"
df = pd.read_csv(csv_path)
train_df = df[df["split"] == "training"]
val_df = df[df["split"] == "validation"]
test_df = df[df["split"] == "test"]
print(len(train_df), len(val_df), len(test_df))
```
For SR-only datasets, use the `LR image` and `HR image` columns:
```python
sample = train_df.iloc[0]
lr_path = sample["LR image"]
hr_path = sample["HR image"]
print(lr_path)
print(hr_path)
```
For downstream task datasets, use the `LR image`, `HR image`, and `Label` columns:
```python
sample = train_df.iloc[0]
lr_path = sample["LR image"]
hr_path = sample["HR image"]
label_path = sample["Label"]
print(lr_path)
print(hr_path)
print(label_path)
```
You can read GeoTIFF files using `rasterio`:
```python
import rasterio
with rasterio.open("DownstreamDatasetName/s2/s2_0.tif") as src:
image = src.read()
crs = src.crs
transform = src.transform
print(image.shape)
print(crs)
print(transform)
```
## Intended Use
This dataset is intended for research on:
- Remote sensing image super-resolution
- Downstream task-aware image restoration
- Land cover mapping
- Infrastructure mapping
- Biophysical variable estimation
- Cross-platform Earth observation learning
- Geo-foundation models
## Citation
If you use this dataset, please cite:
```bibtex
@article{li2026beyond,
title={Beyond Visual Fidelity: Benchmarking Super-Resolution Models for Large-Scale Remote Sensing Imagery via Downstream Task Integration},
author={Li, Zhili and Chai, Kangyang and Wang, Zhihao and Jia, Xiaowei and Li, Yanhua and Mai, Gengchen and Skakun, Sergii and Manocha, Dinesh and Xie, Yiqun},
journal={arXiv preprint arXiv:2605.00310},
year={2026}
}
``` |