Datasets:
Formats:
csv
Languages:
English
Size:
100K - 1M
ArXiv:
Tags:
cross-view-geo-localization
visual-localization
visual-place-recognition
image-retrieval
computer-vision
geolocation
License:
Update dataset README
Browse files
README.md
CHANGED
|
@@ -2,16 +2,18 @@
|
|
| 2 |
license: cc-by-sa-4.0
|
| 3 |
pretty_name: Just Zoom In Cross-View Geo-Localization Dataset
|
| 4 |
task_categories:
|
| 5 |
-
- image-
|
| 6 |
-
-
|
| 7 |
- robotics
|
| 8 |
-
|
| 9 |
-
- visual-place-recognition
|
| 10 |
language:
|
| 11 |
- en
|
| 12 |
tags:
|
| 13 |
- cross-view-geo-localization
|
| 14 |
- visual-localization
|
|
|
|
|
|
|
|
|
|
| 15 |
- geolocation
|
| 16 |
- satellite-imagery
|
| 17 |
- aerial-imagery
|
|
@@ -25,27 +27,24 @@ size_categories:
|
|
| 25 |
---
|
| 26 |
|
| 27 |
# Just Zoom In Cross-View Geo-Localization Dataset
|
|
|
|
| 28 |
|
| 29 |
-
This
|
| 30 |
|
| 31 |
-
The
|
| 32 |
|
| 33 |
The data is stored as TAR shards to keep the Hugging Face repository manageable. After extraction, the directory layout matches the path-based PyTorch/tiledwebmaps loader used in the paper.
|
|
|
|
| 34 |
|
| 35 |
-
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
|
| 38 |
-
Yunus Talha Erzurumlu, Jiyong Kwag, and Alper Yilmaz
|
| 39 |
-
Photogrammetric Computer Vision Lab, The Ohio State University
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
author={Erzurumlu, Yunus Talha and Kwag, Jiyong and Yilmaz, Alper},
|
| 45 |
-
journal={arXiv preprint arXiv:2603.25686},
|
| 46 |
-
year={2026}
|
| 47 |
-
}
|
| 48 |
-
```
|
| 49 |
|
| 50 |
## Data Sources and Licensing
|
| 51 |
|
|
@@ -186,7 +185,10 @@ metadata_csv = repo_dir / "metadata" / "large_area_val_map.csv"
|
|
| 186 |
```
|
| 187 |
|
| 188 |
The satellite tile folders are loaded through `satellite/layout.yaml` using `tiledwebmaps`.
|
|
|
|
|
|
|
| 189 |
|
|
|
|
| 190 |
## Dataset Notes
|
| 191 |
|
| 192 |
The benchmark uses limited-field-of-view, non-panoramic, crowd-sourced street-view images and a multi-scale overhead tile hierarchy. It is intended for within-area cross-view geo-localization over the Washington, D.C. region.
|
|
|
|
| 2 |
license: cc-by-sa-4.0
|
| 3 |
pretty_name: Just Zoom In Cross-View Geo-Localization Dataset
|
| 4 |
task_categories:
|
| 5 |
+
- image-to-image
|
| 6 |
+
- image-feature-extraction
|
| 7 |
- robotics
|
| 8 |
+
- other
|
|
|
|
| 9 |
language:
|
| 10 |
- en
|
| 11 |
tags:
|
| 12 |
- cross-view-geo-localization
|
| 13 |
- visual-localization
|
| 14 |
+
- visual-place-recognition
|
| 15 |
+
- image-retrieval
|
| 16 |
+
- computer-vision
|
| 17 |
- geolocation
|
| 18 |
- satellite-imagery
|
| 19 |
- aerial-imagery
|
|
|
|
| 27 |
---
|
| 28 |
|
| 29 |
# Just Zoom In Cross-View Geo-Localization Dataset
|
| 30 |
+

|
| 31 |
|
| 32 |
+
This dataset accompanies **Just Zoom In: Cross-View Geo-Localization via Autoregressive Zooming**. It supports cross-view geo-localization, where a ground-level street-view image is localized using geo-referenced overhead imagery. The dataset pairs crowd-sourced, limited-field-of-view street-view images with a multi-scale satellite/aerial tile hierarchy over Washington, D.C., making it suitable for realistic evaluation of both retrieval-based and coarse-to-fine localization methods.
|
| 33 |
|
| 34 |
+
The current release contains approximately 300k ground-level images over a 10 km × 10 km Washington, D.C. area, together with the corresponding multi-scale overhead tile hierarchy.
|
| 35 |
|
| 36 |
The data is stored as TAR shards to keep the Hugging Face repository manageable. After extraction, the directory layout matches the path-based PyTorch/tiledwebmaps loader used in the paper.
|
| 37 |
+
## Links
|
| 38 |
|
| 39 |
+
- 📄 Paper: [Just Zoom In: Cross-View Geo-Localization via Autoregressive Zooming](https://arxiv.org/abs/2603.25686)
|
| 40 |
+
- 💻 GitHub: [Official Repository](https://github.com/OSUPCVLab/justzoomin)
|
| 41 |
+
- 🌐 [Project Website](https://osupcvlab.github.io/just-zoom-in/)
|
| 42 |
|
| 43 |
+
## Motivation
|
|
|
|
|
|
|
| 44 |
|
| 45 |
+
Most cross-view geo-localization benchmarks are built around single-shot retrieval from fixed satellite crops. This setup is useful, but it can underrepresent key challenges of real-world localization: street-view images may have unknown orientation, limited field of view, variable image quality, and visual cues that fall outside a single overhead crop. In addition, flat retrieval databases do not explicitly expose the geographic hierarchy of maps.
|
| 46 |
+
|
| 47 |
+
This benchmark is designed to address these limitations by combining realistic crowd-sourced street-view imagery with a multi-scale overhead tile structure. It enables evaluation of methods that reason from coarse geographic context to fine local detail, including autoregressive zooming models, hierarchical search methods, and standard retrieval baselines.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
## Data Sources and Licensing
|
| 50 |
|
|
|
|
| 185 |
```
|
| 186 |
|
| 187 |
The satellite tile folders are loaded through `satellite/layout.yaml` using `tiledwebmaps`.
|
| 188 |
+
## Samples from the Dataset
|
| 189 |
+

|
| 190 |
|
| 191 |
+
Each sample consists of a ground-level street-view image, its latitude/longitude, and a ground-truth zoom-action sequence over the satellite tile hierarchy. The standard task is to predict the correct overhead cell, or equivalently the zoom-action sequence, for a given street-view query. However, users are not limited to use discrete sequences, since dataset supports many different zoom levels.
|
| 192 |
## Dataset Notes
|
| 193 |
|
| 194 |
The benchmark uses limited-field-of-view, non-panoramic, crowd-sourced street-view images and a multi-scale overhead tile hierarchy. It is intended for within-area cross-view geo-localization over the Washington, D.C. region.
|