juliensimon commited on
Commit
b6878fd
·
verified ·
1 Parent(s): 526c2b0

Update launch vehicles database: 209 vehicles

Browse files
Files changed (2) hide show
  1. README.md +149 -0
  2. data/launch-vehicles.parquet +3 -0
README.md ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ pretty_name: "Launch Vehicles Database"
4
+ language:
5
+ - en
6
+ description: >-
7
+ Orbital and suborbital launch vehicles from around the world, sourced from Wikidata.
8
+ 209 vehicles from 11 countries with dimensions, payload capacity,
9
+ flight history, and operational status.
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - tabular-classification
14
+ tags:
15
+ - space
16
+ - rockets
17
+ - launch-vehicles
18
+ - orbital-mechanics
19
+ - wikidata
20
+ - open-data
21
+ - tabular-data
22
+ - parquet
23
+ configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: train
27
+ path: data/launch-vehicles.parquet
28
+ ---
29
+
30
+ # Launch Vehicles Database
31
+
32
+ *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
33
+
34
+ Complete database of orbital and suborbital launch vehicles — **209** rockets and boosters
35
+ from **11** countries, sourced from [Wikidata](https://www.wikidata.org/).
36
+
37
+ ## Dataset description
38
+
39
+ From the German V-2 through the Saturn V to the Falcon 9 and Starship, launch vehicles have
40
+ defined humanity's access to space. This dataset covers every orbital and suborbital launch
41
+ vehicle recorded in Wikidata, including historical rockets, active workhorses, and vehicles
42
+ under development.
43
+
44
+ Each entry includes physical dimensions (height, diameter, liftoff mass), payload capacity
45
+ to low Earth orbit (LEO) and geostationary transfer orbit (GTO), first and last flight dates,
46
+ number of stages, operational status, manufacturer, and country of origin.
47
+
48
+ This enables analysis of global launch capability, rocket engineering evolution over decades,
49
+ national space programme comparisons, and payload capacity trends across generations of vehicles.
50
+
51
+ Sourced from Wikidata's structured knowledge base (class Q697175: space launch vehicle),
52
+ maintained by the WikiProject Spaceflight community.
53
+
54
+ ## Schema
55
+
56
+ | Column | Type | Description |
57
+ |--------|------|-------------|
58
+ | `wikidata_id` | string | Wikidata entity ID (e.g. Q697175) |
59
+ | `name` | string | Vehicle name |
60
+ | `manufacturer` | string | Manufacturer organisation |
61
+ | `country` | string | Country of origin |
62
+ | `height_m` | float | Total height (metres) |
63
+ | `diameter_m` | float | Core diameter (metres) |
64
+ | `mass_kg` | float | Liftoff mass (kg) |
65
+ | `payload_leo_kg` | float | Payload capacity to LEO (kg) |
66
+ | `payload_gto_kg` | float | Payload capacity to GTO (kg) |
67
+ | `first_flight` | string | Date of first flight (YYYY-MM-DD) |
68
+ | `last_flight` | string | Date of last flight if retired (YYYY-MM-DD) |
69
+ | `num_stages` | int | Number of stages |
70
+ | `status` | string | Operational status (active/retired/in development) |
71
+
72
+ ## Quick stats
73
+
74
+ - **209** launch vehicles from **11** countries
75
+ - **0** active, **0** retired
76
+ - Tallest vehicle: Long March 10 (90.0 m)
77
+ - Heaviest LEO payload: Delta IV Heavy (28,370 kg)
78
+ - Top countries: United States (99), Soviet Union (14), United Kingdom (6), Russia (5), People's Republic of China (2)
79
+
80
+ ## Usage
81
+
82
+ ```python
83
+ from datasets import load_dataset
84
+
85
+ ds = load_dataset("juliensimon/launch-vehicles", split="train")
86
+ df = ds.to_pandas()
87
+
88
+ # Active vehicles by country
89
+ active = df[df["status"].str.lower() == "active"]
90
+ print(active["country"].value_counts().head(10))
91
+
92
+ # Heaviest LEO payload capacity
93
+ top_leo = df.nlargest(10, "payload_leo_kg")[["name", "country", "payload_leo_kg"]]
94
+ print(top_leo)
95
+
96
+ # Vehicles by first flight decade
97
+ df["decade"] = (df["first_flight"].str[:4].astype(float) // 10 * 10).astype("Int64")
98
+ print(df["decade"].value_counts().sort_index())
99
+
100
+ # Height vs payload correlation
101
+ import matplotlib.pyplot as plt
102
+ subset = df.dropna(subset=["height_m", "payload_leo_kg"])
103
+ plt.scatter(subset["height_m"], subset["payload_leo_kg"])
104
+ plt.xlabel("Height (m)")
105
+ plt.ylabel("LEO Payload (kg)")
106
+ plt.title("Rocket Height vs Payload Capacity")
107
+ plt.show()
108
+ ```
109
+
110
+ ## Data source
111
+
112
+ [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Launch vehicles identified as
113
+ instances of Q697175 (space launch vehicle) and its subclasses. Data is community-curated
114
+ by [WikiProject Spaceflight](https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight).
115
+
116
+ ## Update schedule
117
+
118
+ Quarterly (January, April, July, October). Re-run manually to pick up newly added vehicles.
119
+
120
+ ## Related datasets
121
+
122
+ - [space-missions](https://huggingface.co/datasets/juliensimon/space-missions) — Crewed and robotic space missions
123
+ - [launch-log](https://huggingface.co/datasets/juliensimon/launch-log) — McDowell orbital launch log
124
+ - [spacecraft-database](https://huggingface.co/datasets/juliensimon/spacecraft-database) — Spacecraft catalogue
125
+
126
+ ## Pipeline
127
+
128
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
129
+
130
+ ## Support
131
+
132
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/launch-vehicles) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
133
+
134
+ ## Citation
135
+
136
+ ```bibtex
137
+ @dataset{launch_vehicles,
138
+ author = {Simon, Julien},
139
+ title = {Launch Vehicles Database},
140
+ year = {2026},
141
+ publisher = {Hugging Face},
142
+ url = {https://huggingface.co/datasets/juliensimon/launch-vehicles},
143
+ note = {Sourced from Wikidata (CC0)}
144
+ }
145
+ ```
146
+
147
+ ## License
148
+
149
+ [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
data/launch-vehicles.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9625b931069aa27ecf4a195a675fe3a8be61610a76b5d095ab27ada33398b5c9
3
+ size 11335