juliensimon commited on
Commit
2e61695
·
verified ·
1 Parent(s): d1cd82b

Update launch vehicles database: 206 vehicles

Browse files
Files changed (3) hide show
  1. README.md +65 -49
  2. banner.jpg +3 -0
  3. data/launch_vehicles.parquet +3 -0
README.md CHANGED
@@ -3,12 +3,7 @@ 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
- 210 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:
@@ -20,60 +15,71 @@ tags:
20
  - open-data
21
  - tabular-data
22
  - parquet
 
 
23
  configs:
24
  - config_name: default
25
- default: true
26
  data_files:
27
  - split: train
28
- path: data/launch-vehicles.parquet
 
29
  ---
30
 
31
  # Launch Vehicles Database
32
 
33
- *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
34
 
35
- Complete database of orbital and suborbital launch vehicles — **210** rockets and boosters
36
- from **11** countries, sourced from [Wikidata](https://www.wikidata.org/).
 
 
 
 
 
37
 
38
  ## Dataset description
39
 
40
- From the German V-2 through the Saturn V to the Falcon 9 and Starship, launch vehicles have
41
- defined humanity's access to space. This dataset covers every orbital and suborbital launch
42
- vehicle recorded in Wikidata, including historical rockets, active workhorses, and vehicles
43
- under development.
44
 
45
- Sourced from Wikidata's structured knowledge base (class Q697175: space launch vehicle),
46
- maintained by the WikiProject Spaceflight community.
47
 
48
- > **Note:** Wikidata coverage varies some vehicles lack physical specs or payload data.
49
- > Columns with <5% data coverage are automatically dropped during pipeline processing.
50
 
51
- ## Schema
52
 
53
- | Column | Type | Description |
54
- |--------|------|-------------|
55
- | `wikidata_id` | string | Wikidata entity ID (e.g. Q697175) |
56
- | `name` | string | Vehicle name |
57
- | `manufacturer` | string | Manufacturer organisation |
58
- | `country` | string | Country of origin |
59
- | `height_m` | float | Total height (metres) |
60
- | `payload_leo_kg` | float | Payload capacity to LEO (kg) |
61
 
62
- Additional columns (diameter, mass, first_flight, etc.) appear when Wikidata coverage exceeds 5%.
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  ## Quick stats
65
 
66
- - **210** launch vehicles from **11** countries
67
  - **0** active, **0** retired
68
  - Tallest vehicle: Long March 10 (90.0 m)
69
- - Heaviest LEO payload: Delta IV Heavy (28,370 kg)
70
- - Top countries: United States (99), Soviet Union (14), United Kingdom (6), Russia (5), People's Republic of China (2)
71
 
72
  ## Usage
73
 
74
  ```python
75
  from datasets import load_dataset
76
 
 
 
 
 
 
 
 
77
  ds = load_dataset("juliensimon/launch-vehicles", split="train")
78
  df = ds.to_pandas()
79
 
@@ -84,45 +90,55 @@ print(df[["name", "country", "manufacturer"]].head(20))
84
  if "height_m" in df.columns:
85
  tall = df.dropna(subset=["height_m"]).nlargest(10, "height_m")
86
  print(tall[["name", "country", "height_m"]])
 
 
 
 
 
 
 
 
 
87
  ```
88
 
89
  ## Data source
90
 
91
- [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Launch vehicles identified as
92
- instances of Q697175 (space launch vehicle) and its subclasses. Data is community-curated
93
- by [WikiProject Spaceflight](https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight).
94
 
95
- ## Update schedule
96
 
97
- Quarterly (January, April, July, October). Re-run manually to pick up newly added vehicles.
98
 
99
- ## Related datasets
 
 
 
 
 
 
100
 
101
- - [space-missions](https://huggingface.co/datasets/juliensimon/space-missions) — Crewed and robotic space missions
102
- - [launch-log](https://huggingface.co/datasets/juliensimon/launch-log) — McDowell orbital launch log
103
- - [spacecraft-database](https://huggingface.co/datasets/juliensimon/spacecraft-database) — Spacecraft catalogue
104
 
105
- ## Pipeline
106
 
107
- Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
108
 
109
- ## Support
110
 
111
- 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.
112
 
113
  ## Citation
114
 
115
  ```bibtex
116
  @dataset{launch_vehicles,
117
- author = {Simon, Julien},
118
  title = {Launch Vehicles Database},
 
119
  year = {2026},
120
- publisher = {Hugging Face},
121
  url = {https://huggingface.co/datasets/juliensimon/launch-vehicles},
122
- note = {Sourced from Wikidata (CC0)}
123
  }
124
  ```
125
 
126
  ## License
127
 
128
- [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
 
3
  pretty_name: "Launch Vehicles Database"
4
  language:
5
  - en
6
+ description: "Orbital and suborbital launch vehicles from around the world, sourced from Wikidata. Covers every space launch vehicle recorded in Wikidata's structured knowledge base, including historical rockets, a"
 
 
 
 
 
7
  task_categories:
8
  - tabular-classification
9
  tags:
 
15
  - open-data
16
  - tabular-data
17
  - parquet
18
+ size_categories:
19
+ - n<1K
20
  configs:
21
  - config_name: default
 
22
  data_files:
23
  - split: train
24
+ path: data/launch_vehicles.parquet
25
+ default: true
26
  ---
27
 
28
  # Launch Vehicles Database
29
 
 
30
 
31
+ <div align="center">
32
+ <img src="banner.jpg" alt="An orbital sunrise illuminates the Earth's atmosphere, seen from the ISS" width="400">
33
+ <p><em>Credit: NASA</em></p>
34
+ </div>
35
+
36
+
37
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) on Hugging Face.*
38
 
39
  ## Dataset description
40
 
41
+ Orbital and suborbital launch vehicles from around the world, sourced from Wikidata. Covers every space launch vehicle recorded in Wikidata's structured knowledge base, including historical rockets, active workhorses, and vehicles under development.
 
 
 
42
 
43
+ From the German V-2 through the Saturn V to the Falcon 9 and Starship, launch vehicles have defined humanity's access to space. This dataset draws from Wikidata's community-curated records (class Q697175: space launch vehicle), maintained by the WikiProject Spaceflight community. It includes physical dimensions, payload capacities, flight history dates, and operational status.
 
44
 
45
+ Wikidata coverage varies -- some vehicles lack physical specs or payload data. Columns with less than 5% data coverage are automatically dropped during pipeline processing.
 
46
 
 
47
 
48
+ This dataset is suitable for **tabular classification** tasks.
 
 
 
 
 
 
 
49
 
50
+ ## Schema
51
+
52
+ | Column | Type | Description | Sample | Null % |
53
+ |--------|------|-------------|--------|--------|
54
+ | `wikidata_id` | str | Wikidata entity ID (e.g. 'Q14522') linking to https://www.wikidata.org/wiki/Q14522; use for enrichment joins with other Wikidata-sourced datasets | Q377174 | 0.0% |
55
+ | `name` | str | Primary name of the launch vehicle (e.g. 'Saturn V', 'Falcon 9'); canonical English form as recorded in Wikidata | 2003 Alcântara VLS accident | 0.0% |
56
+ | `manufacturer` | str | Organization that designed and built the vehicle (e.g. 'Boeing', 'SpaceX', 'Roscosmos'); null if manufacturer information is absent from Wikidata | Rockwell International | 40.8% |
57
+ | `country` | str | Country of origin using full English name (e.g. 'United States of America', 'Russia', 'China'); reflects the operating nation at time of primary use | Iraq | 36.9% |
58
+ | `height_m` | float64 | Total vehicle height from base to payload fairing tip, in metres; null when not recorded in Wikidata; tallest vehicles exceed 100 m (Saturn V: 110.6 m) | 25.0 | 94.2% |
59
+ | `mass_kg` | float64 | Gross liftoff mass (fully fueled with payload) in kilograms; null when not recorded; ranges from ~10,000 kg (small launchers) to ~3,000,000 kg (Saturn V) | 48000.0 | 94.2% |
60
+ | `payload_leo_kg` | float64 | Maximum payload mass deliverable to low Earth orbit (approx 200-2000 km altitude) in kilograms; null for vehicles whose LEO capacity is unrecorded or not applicable | 300.0 | 88.3% |
61
+ | `first_flight` | str | Date of maiden flight in ISO 8601 format (YYYY-MM-DD); null for vehicles that never flew or where the date is unrecorded in Wikidata | 1985-10-03 | 93.2% |
62
 
63
  ## Quick stats
64
 
65
+ - **206** launch vehicles from **10** countries
66
  - **0** active, **0** retired
67
  - Tallest vehicle: Long March 10 (90.0 m)
68
+ - Heaviest LEO payload: Delta IV Heavy (13,810 kg)
69
+ - Top countries: United States (100), Soviet Union (14), Russia (5), People's Republic of China (3), South Korea (2)
70
 
71
  ## Usage
72
 
73
  ```python
74
  from datasets import load_dataset
75
 
76
+ ds = load_dataset("juliensimon/launch-vehicles", split="train")
77
+ df = ds.to_pandas()
78
+ ```
79
+
80
+ ```python
81
+ from datasets import load_dataset
82
+
83
  ds = load_dataset("juliensimon/launch-vehicles", split="train")
84
  df = ds.to_pandas()
85
 
 
90
  if "height_m" in df.columns:
91
  tall = df.dropna(subset=["height_m"]).nlargest(10, "height_m")
92
  print(tall[["name", "country", "height_m"]])
93
+
94
+ # Payload capacity distribution
95
+ import matplotlib.pyplot as plt
96
+ leo = df.dropna(subset=["payload_leo_kg"])
97
+ plt.hist(leo["payload_leo_kg"], bins=30, edgecolor="black", alpha=0.7)
98
+ plt.xlabel("Payload to LEO (kg)")
99
+ plt.ylabel("Number of Vehicles")
100
+ plt.title("Launch Vehicle LEO Payload Distribution")
101
+ plt.show()
102
  ```
103
 
104
  ## Data source
105
 
106
+ https://www.wikidata.org/wiki/Q697175
 
 
107
 
108
+ ## Related datasets
109
 
110
+ - [juliensimon/space-missions](https://huggingface.co/datasets/juliensimon/space-missions)
111
 
112
+ - [juliensimon/space-launch-log](https://huggingface.co/datasets/juliensimon/space-launch-log)
113
+
114
+ - [juliensimon/spacecraft-database](https://huggingface.co/datasets/juliensimon/spacecraft-database)
115
+
116
+ - [juliensimon/constellation-census](https://huggingface.co/datasets/juliensimon/constellation-census)
117
+
118
+ - [juliensimon/gcat](https://huggingface.co/datasets/juliensimon/gcat)
119
 
120
+ - [juliensimon/gcat-satcat](https://huggingface.co/datasets/juliensimon/gcat-satcat)
 
 
121
 
122
+ - [juliensimon/launch-cost](https://huggingface.co/datasets/juliensimon/launch-cost)
123
 
124
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/launch-vehicles) on Hugging Face. It helps others discover it.
125
 
126
+ ## About the author
127
 
128
+ Created by [Julien Simon](https://julien.org) AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
129
 
130
  ## Citation
131
 
132
  ```bibtex
133
  @dataset{launch_vehicles,
 
134
  title = {Launch Vehicles Database},
135
+ author = {juliensimon},
136
  year = {2026},
 
137
  url = {https://huggingface.co/datasets/juliensimon/launch-vehicles},
138
+ publisher = {Hugging Face}
139
  }
140
  ```
141
 
142
  ## License
143
 
144
+ [CC0-1.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: 536f1a05155716b88d9fc00630564a3d16eb900decdf2449219770d0399c02c4
  • Pointer size: 130 Bytes
  • Size of remote file: 30.8 kB
data/launch_vehicles.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8db40db7f09dce4633438efe0f490dfeb2c7b2a841a9482254de54e2d45ea06c
3
+ size 8642