--- license: cc-by-sa-4.0 pretty_name: Just Zoom In Cross-View Geo-Localization Dataset task_categories: - image-to-image - image-feature-extraction - robotics - other language: - en tags: - cross-view-geo-localization - visual-localization - visual-place-recognition - image-retrieval - computer-vision - geolocation - satellite-imagery - aerial-imagery - street-view - mapillary - open-data-dc - tiledwebmaps - autoregressive-zooming size_categories: - 100K_undistorted.jpg │ └── ... └── satellite/ ├── layout.yaml ├── 0/ ├── -1/ ├── -2/ ├── ... └── -9/ ``` ## Metadata The split CSV files contain the fields used by the paper's training/evaluation loader. | Field | Description | |---|---| | `image_id` | Ground-level image identifier | | `sequence` | Ground-truth zoom-action sequence | | `latitude` | Ground-truth latitude | | `longitude` | Ground-truth longitude | Ground images are named: ```text _undistorted.jpg ``` ## Download and Extract ```python from pathlib import Path import shutil import tarfile from huggingface_hub import snapshot_download repo_dir = Path(snapshot_download( repo_id="pcvlab/justzoomin", repo_type="dataset", )) extract_dir = Path("./justzoomin_data") extract_dir.mkdir(parents=True, exist_ok=True) for tar_path in sorted((repo_dir / "archives").glob("*.tar")): print(f"Extracting {tar_path.name}") with tarfile.open(tar_path, "r") as tar: tar.extractall(extract_dir) # Place the tiledwebmaps layout file beside the extracted satellite folders. (extract_dir / "satellite").mkdir(exist_ok=True) shutil.copy2( repo_dir / "satellite" / "layout.yaml", extract_dir / "satellite" / "layout.yaml", ) ``` ## Loader Paths After extraction, use the following paths in the paper's dataset loader: ```python metadata_csv = repo_dir / "metadata" / "large_area_train_map.csv" ground_root = extract_dir / "streetview" / "images" tile_layout = extract_dir / "satellite" / "layout.yaml" ``` For validation: ```python metadata_csv = repo_dir / "metadata" / "large_area_val_map.csv" ``` The satellite tile folders are loaded through `satellite/layout.yaml` using `tiledwebmaps`. ## Samples from the Dataset ![](assets/hf_readme_20_samples.jpg) 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. ## Dataset Notes 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. The data is not stored as loose image files on the Hub. The TAR shards should be extracted before using the original path-based loader. ## Citation If you use this dataset, cite the paper: ```bibtex @article{erzurumlu2026justzoomin, title={Just Zoom In: Cross-View Geo-Localization via Autoregressive Zooming}, author={Erzurumlu, Yunus Talha and Kwag, Jiyong and Yilmaz, Alper}, journal={arXiv preprint arXiv:2603.25686}, year={2026} } ``` Please also attribute the underlying data sources: ```text Street-view imagery: Mapillary, CC BY-SA 4.0. Aerial orthophotography: Open Data DC / Government of the District of Columbia, CC BY 4.0. ```