CoolFace
Datasetpublic

SharpShots/temporal-aerial-cityline-construction-sample

CityLine — Temporal Aerial Construction Dataset (Sample) Temporal Aerial Vision · Construction Progress · Multiview Geometry · San Jose, CA CityLine is a multi-year aerial imagery sequence captured from a helicopter during the construction of a major mixed-use development in San Jose, California.This sample highlights multiple construction phases over time, with several oblique views per capture date. The full (commercial) dataset contains hundreds of high-resolution images with… See the full description on the dataset page: https://huggingface.co/datasets/SharpShots/temporal-aerial-cityline-construction-sample.

sourceHugging Faceotherupdated 10mo agoView on Hugging Face
0likes155downloads
Dataset Card

CityLine — Temporal Aerial Construction Dataset (Sample)

Temporal Aerial Vision · Construction Progress · Multiview Geometry · San Jose, CA

CityLine is a multi-year aerial imagery sequence captured from a helicopter during the construction of a major mixed-use development in San Jose, California. This sample highlights multiple construction phases over time, with several oblique views per capture date.

The full (commercial) dataset contains hundreds of high-resolution images with monthly coverage across several years — suitable for world models, 3D reconstruction, change detection, construction analytics, and urban growth modeling.

This dataset is a limited preview sample intended for evaluation and experimentation.


📍 Project Overview

PropertyValue
Project nameCityLine
LocationSan Jose, California, USA
Capture typeHelicopter-based oblique aerial imagery
Resolution12MP JPEG (RAW available commercially)
Coverage period (full set)2017 → 2025 (approx.)
Temporal cadence~monthly
Viewpoints per captureMultiple oblique angles
Coordinates37.374751, -122.032811

🎯 Machine Learning Use Cases

CategoryTasks Enabled
Temporal VisionWorld models, change detection, temporal consistency
Multiview GeometryStructure-from-motion, NeRF, depth from motion
Autonomy + RoboticsMapping, localization, spatial reasoning
Construction AnalyticsProgress estimation, digital twins, safety monitoring
Earth ObservationUrban growth, infrastructure evolution

📁 Dataset Contents (Sample)

Folder structure:

text
preview/              # resized JPEG previews for fast HF browsing
images/               # full-resolution JPEGs grouped by month
  2017-12/
  2019-01/
  2020-06/
  2021-09/
  2023-06/
  2025-01/
metadata.csv

➡ Preview images are 2048px max dimension, ideal for Hugging Face’s viewer ➡ Full-resolution files contain the highest-quality data for research/licensing


metadata.csv Schema

ColumnDescription
project_idNumeric ID for the project
project_name"CityLine"
filenameFull-resolution image filename
preview_filenameLower-resolution preview filename
dateCapture date parsed from filename
year_monthMonthly grouping
image_seqSequence index derived from filename
orbit_indexOrbit grouping (sample = 1)
orbit_frameOrdered view index (1…N)
latitudeProject latitude
longitudeProject longitude
notesOptional annotation

🔧 Quick Usage Example

python
import pandas as pd
from pathlib import Path
from PIL import Image

meta = pd.read_csv("metadata.csv")

# Load preview image first (fast)
preview_path = Path("preview") / meta['preview_filename'][0]
img_preview = Image.open(preview_path).convert("RGB")
img_preview.show()

# Load matching full-resolution image when needed
full_path = Path("images") / meta['year_month'][0] / meta['filename'][0]
img_full = Image.open(full_path).convert("RGB")
img_full.show()

🔐 Full Dataset Access & Licensing

This sample is provided for evaluation purposes only.

The complete CityLine dataset (836 images) and a library of 270+ full-lifecycle construction projects are available under commercial license:

  • Towers
  • Hospitals
  • Stadiums
  • Highways & interchanges
  • Commercial sites

Contact for full access: 📧 gene@sharpshotsaerial.com


🛰 About SharpShots Aerial

SharpShots Aerial specializes in long-term helicopter-based imaging of major construction and urban projects, enabling advanced mapping and AI research applications.