ZL233 commited on
Commit
2fd73c0
Β·
verified Β·
1 Parent(s): 4c30c13

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +196 -0
README.md CHANGED
@@ -1,3 +1,199 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - image-to-image
7
+ - image-segmentation
8
+ pretty_name: GeoSR-Bench
9
+ size_categories:
10
+ - 10K<n<100K
11
  ---
12
+
13
+ # GeoSR-Bench
14
+
15
+ 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.
16
+ GeoSR-Bench includes two cross-platform super-resolution tasks:
17
+
18
+ - **MODIS β†’ Landsat-8**
19
+ - **Sentinel-2 β†’ NAIP**
20
+
21
+ For each task, the dataset is organized into two types of subsets:
22
+
23
+ 1. **Super-resolution-only datasets**
24
+ These subsets include paired lower-resolution and higher-resolution remote sensing images without downstream task labels. They are designed for training SR models.
25
+
26
+ 2. **Downstream task datasets**
27
+ 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.
28
+
29
+ Each sample may contain:
30
+
31
+ - A lower-resolution image
32
+ - A higher-resolution reference image
33
+ - A downstream task label, when available
34
+ - Metadata, when available
35
+
36
+ GeoSR-Bench is intended to support research on task-aware super-resolution, cross-platform learning, and remote sensing foundation models.
37
+
38
+ ## Folder Structure
39
+
40
+ The dataset contains both SR-only datasets and downstream task datasets.
41
+
42
+ ### SR-only dataset
43
+
44
+ ```text
45
+ SRDatasetName/
46
+ β”œβ”€β”€ lr/ or modis/ or s2/
47
+ β”‚ β”œβ”€β”€ lr_0.tif
48
+ β”‚ β”œβ”€β”€ lr_1.tif
49
+ β”‚ └── ...
50
+ β”œβ”€β”€ hr/ or l8/ or naip/
51
+ β”‚ β”œβ”€β”€ hr_0.tif
52
+ β”‚ β”œβ”€β”€ hr_1.tif
53
+ β”‚ └── ...
54
+ β”œβ”€β”€ meta/
55
+ β”‚ β”œβ”€β”€ meta_0.json
56
+ β”‚ β”œβ”€β”€ meta_1.json
57
+ β”‚ └── ...
58
+ └── SRDatasetName_split_all.csv
59
+ ```
60
+
61
+ ### Downstream task dataset
62
+
63
+ ```text
64
+ DownstreamDatasetName/
65
+ β”œβ”€β”€ s2/ or modis/
66
+ β”‚ β”œβ”€β”€ s2_0.tif
67
+ β”‚ β”œβ”€β”€ s2_1.tif
68
+ β”‚ └── ...
69
+ β”œβ”€β”€ naip/ or l8/
70
+ β”‚ β”œβ”€β”€ naip_0.tif
71
+ β”‚ β”œβ”€β”€ naip_1.tif
72
+ β”‚ └── ...
73
+ β”œβ”€β”€ label/
74
+ β”‚ β”œβ”€β”€ label_0.tif
75
+ β”‚ β”œβ”€β”€ label_1.tif
76
+ β”‚ └── ...
77
+ β”œβ”€β”€ meta/
78
+ β”‚ β”œβ”€β”€ meta_0.json
79
+ β”‚ β”œβ”€β”€ meta_1.json
80
+ β”‚ └── ...
81
+ └── DownstreamDatasetName_split_all.csv
82
+ ```
83
+
84
+ ## Split Files
85
+
86
+ Each subset includes a CSV file describing the image paths and data split.
87
+
88
+ SR-only datasets are intended for training super-resolution models and do not have predefined train/validation/test split files.
89
+
90
+ For downstream task datasets, the CSV contains:
91
+
92
+ ```text
93
+ LR image,HR image,Label,split
94
+ DownstreamDatasetName/s2/s2_0.tif,DownstreamDatasetName/naip/naip_0.tif,DownstreamDatasetName/label/label_0.tif,training
95
+ DownstreamDatasetName/s2/s2_1.tif,DownstreamDatasetName/naip/naip_1.tif,DownstreamDatasetName/label/label_1.tif,validation
96
+ DownstreamDatasetName/s2/s2_2.tif,DownstreamDatasetName/naip/naip_2.tif,DownstreamDatasetName/label/label_2.tif,test
97
+ ```
98
+
99
+
100
+ ## Data Fields
101
+
102
+ | Column | Description |
103
+ |---|---|
104
+ | `LR image` | Path to the lower-resolution input image |
105
+ | `HR image` | Path to the higher-resolution reference image |
106
+ | `Label` | Path to the downstream task label |
107
+ | `split` | Dataset split: `training`, `validation`, or `test` |
108
+
109
+ ## File Formats
110
+
111
+ - Images are stored as GeoTIFF files (`.tif`).
112
+ - Labels are stored as GeoTIFF files (`.tif`).
113
+ - Metadata files, when available, are stored as JSON files (`.json`).
114
+ - Split files are stored as CSV files (`.csv`).
115
+
116
+ GeoTIFF files retain geospatial metadata such as coordinate reference system, transform, resolution, and spatial extent.
117
+
118
+ ## Usage
119
+
120
+ You can read the split CSV using Python:
121
+
122
+ ```python
123
+ import pandas as pd
124
+
125
+ csv_path = "DownstreamDatasetName/DownstreamDatasetName_split_all.csv"
126
+ df = pd.read_csv(csv_path)
127
+
128
+ train_df = df[df["split"] == "training"]
129
+ val_df = df[df["split"] == "validation"]
130
+ test_df = df[df["split"] == "test"]
131
+
132
+ print(len(train_df), len(val_df), len(test_df))
133
+ ```
134
+
135
+ For SR-only datasets, use the `LR image` and `HR image` columns:
136
+
137
+ ```python
138
+ sample = train_df.iloc[0]
139
+
140
+ lr_path = sample["LR image"]
141
+ hr_path = sample["HR image"]
142
+
143
+ print(lr_path)
144
+ print(hr_path)
145
+ ```
146
+
147
+ For downstream task datasets, use the `LR image`, `HR image`, and `Label` columns:
148
+
149
+ ```python
150
+ sample = train_df.iloc[0]
151
+
152
+ lr_path = sample["LR image"]
153
+ hr_path = sample["HR image"]
154
+ label_path = sample["Label"]
155
+
156
+ print(lr_path)
157
+ print(hr_path)
158
+ print(label_path)
159
+ ```
160
+
161
+ You can read GeoTIFF files using `rasterio`:
162
+
163
+ ```python
164
+ import rasterio
165
+
166
+ with rasterio.open("DownstreamDatasetName/s2/s2_0.tif") as src:
167
+ image = src.read()
168
+ crs = src.crs
169
+ transform = src.transform
170
+
171
+ print(image.shape)
172
+ print(crs)
173
+ print(transform)
174
+ ```
175
+
176
+ ## Intended Use
177
+
178
+ This dataset is intended for research on:
179
+
180
+ - Remote sensing image super-resolution
181
+ - Downstream task-aware image restoration
182
+ - Land cover mapping
183
+ - Infrastructure mapping
184
+ - Biophysical variable estimation
185
+ - Cross-platform Earth observation learning
186
+ - Geo-foundation models
187
+
188
+ ## Citation
189
+
190
+ If you use this dataset, please cite:
191
+
192
+ ```bibtex
193
+ @article{li2026beyond,
194
+ title={Beyond Visual Fidelity: Benchmarking Super-Resolution Models for Large-Scale Remote Sensing Imagery via Downstream Task Integration},
195
+ 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},
196
+ journal={arXiv preprint arXiv:2605.00310},
197
+ year={2026}
198
+ }
199
+ ```