CoolFace
Datasetpublic

gaetanbahl/Global-Scale-Road-Dataset

Global-Scale Dataset for Road Graph Extraction Disclaimer: This is an unofficial re-upload of the Global-Scale dataset for researchers who do not have easy access to Baidu. All credit goes to the original authors. If the authors have any concerns with this mirror, please contact me and I will remove it immediately. Original Source Paper: Towards Satellite Image Road Graph Extraction: A Global-Scale Dataset and A Novel Method (CVPR 2025) Official Repository:… See the full description on the dataset page: https://huggingface.co/datasets/gaetanbahl/Global-Scale-Road-Dataset.

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes1.3kdownloads
Dataset Card

Global-Scale Dataset for Road Graph Extraction

Disclaimer: This is an unofficial re-upload of the Global-Scale dataset for researchers who do not have easy access to Baidu. All credit goes to the original authors. If the authors have any concerns with this mirror, please contact me and I will remove it immediately.

Original Source

Citation

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

bibtex
@inproceedings{yin2025towards,
  title={Towards Satellite Image Road Graph Extraction: A Global-Scale Dataset and A Novel Method},
  author={Yin, Pan and Li, Kaiyu and Cao, Xiangyong and Yao, Jing and Liu, Lei and Bai, Xueru and Zhou, Feng and Meng, Deyu},
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
  year={2025}
}

Authors

  • —Pan Yin<sup>1,2</sup>, Kaiyu Li<sup>4</sup>, Xiangyong Cao<sup>1,2</sup> (corresponding), Jing Yao<sup>6</sup>, Lei Liu<sup>7</sup>, Xueru Bai<sup>7</sup>, Feng Zhou<sup>7</sup>, Deyu Meng<sup>2,3,5</sup>

<sup>1</sup>School of Computer Science and Technology, Xi'an Jiaotong University <sup>2</sup>Ministry of Education Key Laboratory of Intelligent Networks and Network Security, Xi'an Jiaotong University <sup>3</sup>School of Mathematics and Statistics, Xi'an Jiaotong University <sup>4</sup>School of Software Engineering, Xi'an Jiaotong University <sup>5</sup>Pengcheng Laboratory <sup>6</sup>Chinese Academy of Sciences <sup>7</sup>Xidian University

Dataset Description

The Global-Scale dataset is a comprehensive road graph extraction dataset designed for training and evaluating road network extraction models from satellite imagery. It is approximately 20x larger than the largest existing public road extraction dataset and spans over 13,800 km² globally.

Key Features

PropertyValue
Total Images3,468
Image Size2048 × 2048 pixels
Spatial Resolution (GSD)1.0 m/pixel
Coverage~13,800 km²
Geographic ScopeGlobal (all continents except Antarctica)
Region TypesUrban, Rural, Mountainous
Label TypeGraph labels (nodes and edges)
Year2024

Dataset Splits

SplitImagesDescription
Train2,375Training set
Validation339Validation set
Test (In-Domain)624Test images from regions represented in training
Test (Out-of-Domain)130Test images from unseen regions (Hong Kong, Shenzhen, Lucerne)

Data Sources

  • —Satellite Images: Google Earth / Google Static Map API
  • —Road Graph Labels: OpenStreetMap (with manual verification for annotation completeness)

Comparison with Other Datasets

DatasetGraph LabelSizeTrainValTest-IDTest-OODGSDRegionRegion Type
MassachusettsNo1,500²1,1081449-1.0MassachusettsU, R
DeepGlobeNo1,024²6,2262431,101-0.5Thailand, Indonesia, IndiaU, R
SpaceNetYes400²2,167-567-0.3Paris, Las Vegas, ShanghaiU
City-ScaleYes2,048²144927-1.020 cities in U.S.U
Global-ScaleYes2,048²2,3753396241301.0GlobalU, R, M

U = Urban, R = Rural, M = Mountainous

Dataset Structure

HuggingFace Folder Organization

Due to HuggingFace's limitation of 1,000 files per folder, files have been organized into numbered subdirectories. Each subdirectory contains 100 tiles (500 files), grouped by tile number:

  • —Folder `1`: tiles 0-99
  • —Folder `2`: tiles 100-199
  • —Folder `3`: tiles 200-299
  • —... and so on
Global-Scale/
├── train/                    # 3,338 tiles total (train + val + in-domain test)
│   ├── 1/                    # tiles 0-99 (500 files)
│   ├── 2/                    # tiles 100-199 (500 files)
│   ├── ...
│   └── 34/                   # tiles 3300-3337 (190 files)
├── val/                      # 339 tiles
│   ├── 1/                    # tiles 0-99
│   ├── 2/                    # tiles 100-199
│   ├── 3/                    # tiles 200-299
│   └── 4/                    # tiles 300-338
├── in-domain-test/           # 624 tiles
│   ├── 1/                    # tiles 0-99
│   ├── ...
│   └── 7/                    # tiles 600-623
└── out_of_domain/            # 130 tiles (Hong Kong, Shenzhen, Lucerne)
    ├── 1/                    # tiles 0-99
    └── 2/                    # tiles 100-129

Files Per Tile

Each tile consists of 5 files:

  • —region_X_sat.png - Satellite image (2048×2048)
  • —region_X_gt.png - Ground truth mask
  • —region_X_graph_gt.pickle - Graph ground truth
  • —region_X_refine_gt_graph.p - Refined graph ground truth
  • —region_X_refine_gt_graph_samplepoints.json - Sample points for the refined graph

Original Structure Note

In the original dataset, the train folder includes training, validation, and in-domain test data together for convenience during training. Data partitioning rules are defined in dataset.py (see the official repository).

Flattening the Structure

If you need the original flat structure, you can flatten each directory with:

bash
# Linux/Mac
cd train && mv */* . && rmdir */

# PowerShell (Windows)
Get-ChildItem -Directory | ForEach-Object { Move-Item "$($_.Name)/*" . }; Get-ChildItem -Directory | Remove-Item

Usage

For data preparation and training instructions, please refer to the official SAM-Road++ repository.

License

Please refer to the original repository and paper for licensing information. This re-upload is provided solely for research accessibility and does not claim any ownership or modification rights over the original dataset.

Acknowledgments

This dataset was created by the authors listed above. The collection methodology involved:

  1. 1.Manual selection of longitude/latitude coordinates for various road types using Google Earth
  2. 2.Satellite image collection from Google Static Map API
  3. 3.Road graph data collection from OpenStreetMap
  4. 4.Manual verification to ensure annotation completeness

Contact

  • —For questions about the dataset or methodology, please contact the original authors via the official repository
  • —For issues with this HuggingFace mirror, please open an issue on this repository