SharpShots commited on
Commit
70f7df8
·
verified ·
1 Parent(s): 7383dd0

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +144 -0
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - aerial
4
+ - temporal
5
+ - time-series
6
+ - construction
7
+ - multiview
8
+ - change-detection
9
+ - world-model
10
+ - urban
11
+ task_categories:
12
+ - video-classification
13
+ - image-classification
14
+ - image-segmentation
15
+ - object-detection
16
+ size_categories:
17
+ - small
18
+ license: other
19
+ ---
20
+
21
+ # CityLine — Temporal Aerial Construction Dataset (Sample)
22
+
23
+ **Temporal Aerial Vision · Construction Progress · Multiview Geometry · San Jose, CA**
24
+
25
+ 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**.
26
+ This sample highlights multiple construction phases over time, with several oblique views per capture date.
27
+
28
+ 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**.
29
+
30
+ This dataset is a **limited preview sample** intended for evaluation and experimentation.
31
+
32
+ ---
33
+
34
+ ## 📍 Project Overview
35
+
36
+ | Property | Value |
37
+ |---------|------|
38
+ | Project name | CityLine |
39
+ | Location | San Jose, California, USA |
40
+ | Capture type | Helicopter-based oblique aerial imagery |
41
+ | Resolution | 12MP JPEG (RAW available commercially) |
42
+ | Coverage period (full set) | 2017 → 2025 (approx.) |
43
+ | Temporal cadence | ~monthly |
44
+ | Viewpoints per capture | Multiple oblique angles |
45
+ | Coordinates | 37.374751, -122.032811 |
46
+
47
+ ---
48
+
49
+ ## 🎯 Machine Learning Use Cases
50
+
51
+ | Category | Tasks Enabled |
52
+ |---------|---------------|
53
+ | **Temporal Vision** | World models, change detection, temporal consistency |
54
+ | **Multiview Geometry** | Structure-from-motion, NeRF, depth from motion |
55
+ | **Autonomy + Robotics** | Mapping, localization, spatial reasoning |
56
+ | **Construction Analytics** | Progress estimation, digital twins, safety monitoring |
57
+ | **Earth Observation** | Urban growth, infrastructure evolution |
58
+
59
+ ---
60
+
61
+ ## 📁 Dataset Contents (Sample)
62
+
63
+ Folder structure:
64
+
65
+ ```text
66
+ preview/ # resized JPEG previews for fast HF browsing
67
+ images/ # full-resolution JPEGs grouped by month
68
+ 2017-12/
69
+ 2019-01/
70
+ 2020-06/
71
+ 2021-09/
72
+ 2023-06/
73
+ 2025-01/
74
+ metadata.csv
75
+ ```
76
+
77
+ ➡ Preview images are **2048px max dimension**, ideal for Hugging Face’s viewer
78
+ ➡ Full-resolution files contain the highest-quality data for research/licensing
79
+
80
+ ---
81
+
82
+ ### `metadata.csv` Schema
83
+
84
+ | Column | Description |
85
+ |--------|-------------|
86
+ | `project_id` | Numeric ID for the project |
87
+ | `project_name` | "CityLine" |
88
+ | `filename` | Full-resolution image filename |
89
+ | `preview_filename` | Lower-resolution preview filename |
90
+ | `date` | Capture date parsed from filename |
91
+ | `year_month` | Monthly grouping |
92
+ | `image_seq` | Sequence index derived from filename |
93
+ | `orbit_index` | Orbit grouping (sample = 1) |
94
+ | `orbit_frame` | Ordered view index (1…N) |
95
+ | `latitude` | Project latitude |
96
+ | `longitude` | Project longitude |
97
+ | `notes` | Optional annotation |
98
+
99
+ ---
100
+
101
+ ## 🔧 Quick Usage Example
102
+
103
+ ```python
104
+ import pandas as pd
105
+ from pathlib import Path
106
+ from PIL import Image
107
+
108
+ meta = pd.read_csv("metadata.csv")
109
+
110
+ # Load preview image first (fast)
111
+ preview_path = Path("preview") / meta['preview_filename'][0]
112
+ img_preview = Image.open(preview_path).convert("RGB")
113
+ img_preview.show()
114
+
115
+ # Load matching full-resolution image when needed
116
+ full_path = Path("images") / meta['year_month'][0] / meta['filename'][0]
117
+ img_full = Image.open(full_path).convert("RGB")
118
+ img_full.show()
119
+ ```
120
+
121
+ ---
122
+
123
+ ## 🔐 Full Dataset Access & Licensing
124
+
125
+ This sample is provided for **evaluation purposes only**.
126
+
127
+ The complete CityLine dataset (836 images) and a library of **270+** full-lifecycle construction projects are available under commercial license:
128
+
129
+ - Towers
130
+ - Hospitals
131
+ - Stadiums
132
+ - Highways & interchanges
133
+ - Commercial sites
134
+
135
+ **Contact for full access:**
136
+ 📧 gene@sharpshotsaerial.com
137
+
138
+ ---
139
+
140
+ ## 🛰 About SharpShots Aerial
141
+
142
+ SharpShots Aerial specializes in long-term helicopter-based imaging of major construction and urban projects, enabling advanced mapping and AI research applications.
143
+
144
+ ---