calvadosdep/cmp-vialitix-photos-2025
Panoramax sig14 photos Attribution — Ce jeu de données contient des images issues de la plateforme Panoramax de l'IGN (Institut national de l'information géographique et forestière). Les images d'origine sont publiées sous Licence Ouverte / Open License 2.0 (Etalab) par leur producteur sig14 (Service d'Information Géographique du Calvados) et l'IGN. Street-view photos from the IGN Panoramax instance, scraped from the user sig14 (Service d'Information Géographique du Calvados… See the full description on the dataset page: https://huggingface.co/datasets/calvadosdep/cmp-vialitix-photos-2025.
Panoramax sig14 photos
Attribution — Ce jeu de données contient des images issues de la plateforme Panoramax de l'IGN (Institut national de l'information géographique et forestière). Les images d'origine sont publiées sous Licence Ouverte / Open License 2.0 (Etalab) par leur producteur sig14 (Service d'Information Géographique du Calvados) et l'IGN.
Street-view photos from the IGN Panoramax instance, scraped from the user sig14 (Service d'Information Géographique du Calvados, France).
Each row is one street-level photo plus its GPS coordinates and camera heading.
Source
- API: <https://panoramax.ign.fr/api>
- User:
sig14(UUID5215eca1-4a1b-40eb-a96c-5dc7ff2cc6d8) - License: Etalab 2.0 (Open License)
Schema
Storage layout
One Parquet shard per Panoramax collection (sequence) — file naming data/collection={uuid}.parquet. Idempotent updates: re-running the scraper only fetches collections not yet present in the dataset.
Loading
from datasets import load_dataset
ds = load_dataset("calvadosdep/cmp-vialitix-photos-2025", split="train", streaming=True)
for row in ds.take(5):
print(row["lat"], row["lng"], row["azimuth"])
row["image"].save(f'{row["id"]}.jpg')