juliensimon commited on
Commit
8dd7d5e
·
verified ·
1 Parent(s): 64774cc

Update spacecraft database: 8,874 spacecraft

Browse files
Files changed (3) hide show
  1. README.md +60 -54
  2. banner.jpg +3 -0
  3. data/spacecraft.parquet +2 -2
README.md CHANGED
@@ -3,12 +3,7 @@ license: cc0-1.0
3
  pretty_name: "Spacecraft Database"
4
  language:
5
  - en
6
- description: >-
7
- Comprehensive database of spacecraft sourced from Wikidata.
8
- 8,840 spacecraft including satellites, probes, and space stations,
9
- with launch dates, operators, manufacturers, and orbital parameters.
10
- size_categories:
11
- - 1K<n<10K
12
  task_categories:
13
  - tabular-classification
14
  tags:
@@ -19,59 +14,75 @@ tags:
19
  - open-data
20
  - tabular-data
21
  - parquet
 
 
22
  configs:
23
  - config_name: default
24
- default: true
25
  data_files:
26
  - split: train
27
  path: data/spacecraft.parquet
 
28
  ---
29
 
30
  # Spacecraft Database
31
 
32
- *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
33
 
34
- Comprehensive database of **8,840** spacecraft — satellites, probes, space stations, and more — sourced from [Wikidata](https://www.wikidata.org/).
 
 
 
 
 
 
35
 
36
  ## Dataset description
37
 
38
- From the earliest Sputnik satellites to modern mega-constellations and deep space probes, this dataset catalogs spacecraft across the entire history of the Space Age. Each record includes launch and decommission dates, operating agency, manufacturer, orbital regime, mass, and associated mission where available.
 
 
39
 
40
  The dataset draws on Wikidata's structured knowledge base using the spacecraft class (Q40218) and all its subclasses. It is maintained by the WikiProject Spaceflight community and updated as new spacecraft are launched and documented.
41
 
42
- Records span from **1957-10-04** to **2039-01-01**, with **7,373** spacecraft having a known launch date and **1,799** with a recorded mass.
 
43
 
44
  ## Schema
45
 
46
- | Column | Type | Description |
47
- |--------|------|-------------|
48
- | `wikidata_id` | string | Wikidata entity ID (e.g. Q48371) |
49
- | `name` | string | Spacecraft name |
50
- | `launch_date` | string | Launch date (YYYY-MM-DD) |
51
- | `decommissioned_date` | string | Decommissioning date (YYYY-MM-DD) |
52
- | `operator` | string | Operating agency or organization |
53
- | `manufacturer` | string | Manufacturer name |
54
- | `orbit_type` | string | Orbital regime (e.g. LEO, GEO, heliocentric) |
55
- | `mass_kg` | float | Spacecraft mass in kilograms |
56
- | `mission` | string | Associated mission name |
57
- | `launch_year` | int | Launch year (derived from launch_date) |
58
 
59
  ## Quick stats
60
 
61
- - **8,840** total spacecraft in the database
62
- - **7,373** spacecraft with a known launch date
63
- - **1,799** spacecraft with a recorded mass
64
- - **462** distinct operators
65
- - **27** distinct orbital regimes
66
  - Date range: 1957-10-04 to 2039-01-01
67
- - Top operators: National Aeronautics and Space Administration (281), United States Air Force (155), Roscosmos State Corporation (126), Indian Space Research Organisation (115), European Space Agency (92)
68
- - Top orbital regimes: geostationary orbit (597), low Earth orbit (395), Sun-synchronous orbit (242), medium Earth orbit (69), geosynchronous orbit (35)
69
 
70
  ## Usage
71
 
72
  ```python
73
  from datasets import load_dataset
74
 
 
 
 
 
 
 
 
75
  ds = load_dataset("juliensimon/spacecraft-database", split="train")
76
  df = ds.to_pandas()
77
 
@@ -81,55 +92,50 @@ print(df["operator"].value_counts().head(10))
81
  # Spacecraft by orbital regime
82
  print(df["orbit_type"].value_counts().head(10))
83
 
84
- # Spacecraft launched per year
85
- print(df["launch_year"].value_counts().sort_index())
 
 
 
 
 
 
86
 
87
  # Heaviest spacecraft
88
  heaviest = df.nlargest(10, "mass_kg")[["name", "operator", "mass_kg", "orbit_type"]]
89
  print(heaviest)
90
-
91
- # Still operational (no decommission date)
92
- operational = df[df["decommissioned_date"].isna() & df["launch_date"].notna()]
93
- print(f"{len(operational):,} spacecraft with no recorded decommission date")
94
  ```
95
 
96
  ## Data source
97
 
98
- [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Spacecraft identified via
99
- property P31 (instance of) = Q40218 (spacecraft) and all subclasses via P279*.
100
- Data is community-curated by [WikiProject Spaceflight](https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight).
101
-
102
- ## Update schedule
103
-
104
- Quarterly (January, April, July, October).
105
 
106
  ## Related datasets
107
 
108
- - [space-missions](https://huggingface.co/datasets/juliensimon/space-missions) -- Space missions database
109
- - [satcat](https://huggingface.co/datasets/juliensimon/satcat) -- Satellite catalog (SATCAT)
110
- - [launch-vehicles](https://huggingface.co/datasets/juliensimon/launch-vehicles) -- Launch vehicle catalog
111
 
112
- ## Pipeline
113
 
114
- Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
115
 
116
- ## Support
117
 
118
- If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/spacecraft-database) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
119
 
120
  ## Citation
121
 
122
  ```bibtex
123
  @dataset{spacecraft_database,
124
- author = {Simon, Julien},
125
  title = {Spacecraft Database},
 
126
  year = {2026},
127
- publisher = {Hugging Face},
128
  url = {https://huggingface.co/datasets/juliensimon/spacecraft-database},
129
- note = {Sourced from Wikidata (CC0)}
130
  }
131
  ```
132
 
133
  ## License
134
 
135
- [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
 
3
  pretty_name: "Spacecraft Database"
4
  language:
5
  - en
6
+ description: "Comprehensive database of spacecraft sourced from Wikidata — satellites, probes, space stations, and more — spanning the entire history of the Space Age. From the earliest Sputnik satellites to moder"
 
 
 
 
 
7
  task_categories:
8
  - tabular-classification
9
  tags:
 
14
  - open-data
15
  - tabular-data
16
  - parquet
17
+ size_categories:
18
+ - 1K<n<10K
19
  configs:
20
  - config_name: default
 
21
  data_files:
22
  - split: train
23
  path: data/spacecraft.parquet
24
+ default: true
25
  ---
26
 
27
  # Spacecraft Database
28
 
 
29
 
30
+ <div align="center">
31
+ <img src="banner.jpg" alt="Voyager spacecraft artist concept" width="400">
32
+ <p><em>Credit: NASA/JPL-Caltech</em></p>
33
+ </div>
34
+
35
+
36
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) on Hugging Face.*
37
 
38
  ## Dataset description
39
 
40
+ Comprehensive database of spacecraft sourced from Wikidata satellites, probes, space stations, and more spanning the entire history of the Space Age.
41
+
42
+ From the earliest Sputnik satellites to modern mega-constellations and deep space probes, this dataset catalogs spacecraft across seven decades of spaceflight. Each record includes launch and decommission dates, operating agency, manufacturer, orbital regime, mass, and associated mission where available.
43
 
44
  The dataset draws on Wikidata's structured knowledge base using the spacecraft class (Q40218) and all its subclasses. It is maintained by the WikiProject Spaceflight community and updated as new spacecraft are launched and documented.
45
 
46
+
47
+ This dataset is suitable for **tabular classification** tasks.
48
 
49
  ## Schema
50
 
51
+ | Column | Type | Description | Sample | Null % |
52
+ |--------|------|-------------|--------|--------|
53
+ | `wikidata_id` | str | Wikidata entity ID (e.g. 'Q48371'); stable URI used for cross-referencing enrichment sources | Q80811 | 0.0% |
54
+ | `name` | string | Spacecraft name as recorded in Wikidata (e.g. 'Hubble Space Telescope', 'Sputnik 1', 'Starlink-1234') | Sputnik 1 | 0.0% |
55
+ | `launch_date` | str | ISO 8601 UTC launch date in YYYY-MM-DD format; null if the spacecraft has not yet launched or date is unknown | 1957-10-04 | 16.1% |
56
+ | `operator` | string | Agency or organization operating the spacecraft (e.g. 'NASA', 'ESA', 'SpaceX', 'Roscosmos'); null if not recorded in Wikidata | Soviet Union | 68.8% |
57
+ | `manufacturer` | string | Organization that built the spacecraft bus (e.g. 'Boeing', 'Lockheed Martin', 'Airbus'); null if not recorded | S.P. Korolev Rocket and Space Corpora... | 73.3% |
58
+ | `orbit_type` | string | Orbital regime (e.g. 'LEO', 'GEO', 'heliocentric', 'lunar orbit', 'deep space'); null if orbital data not available in Wikidata | low Earth orbit | 82.8% |
59
+ | `mass_kg` | Float64 | Total spacecraft mass in kilograms at launch; null for ~90% of entries where Wikidata has no mass recorded | 83.6 | 79.6% |
60
+ | `mission` | string | Associated mission name linked in Wikidata (e.g. 'Apollo program', 'Mars Science Laboratory'); null if no mission link recorded | Sputnik programme | 80.1% |
61
+ | `launch_year` | float64 | Year of launch derived from launch_date; null if launch_date is null; useful for time-series aggregation | 1957.0 | 16.1% |
 
62
 
63
  ## Quick stats
64
 
65
+ - **8,874** total spacecraft in the database
66
+ - **7,444** spacecraft with a known launch date
67
+ - **1,812** spacecraft with a recorded mass
68
+ - **463** distinct operators
69
+ - **26** distinct orbital regimes
70
  - Date range: 1957-10-04 to 2039-01-01
71
+ - Top operators: National Aeronautics and Space Administration (301), United States Air Force (158), Roscosmos State Corporation (128), Indian Space Research Organisation (112), European Space Agency (89)
72
+ - Top orbital regimes: geostationary orbit (598), low Earth orbit (401), Sun-synchronous orbit (255), medium Earth orbit (70), geosynchronous orbit (35)
73
 
74
  ## Usage
75
 
76
  ```python
77
  from datasets import load_dataset
78
 
79
+ ds = load_dataset("juliensimon/spacecraft-database", split="train")
80
+ df = ds.to_pandas()
81
+ ```
82
+
83
+ ```python
84
+ from datasets import load_dataset
85
+
86
  ds = load_dataset("juliensimon/spacecraft-database", split="train")
87
  df = ds.to_pandas()
88
 
 
92
  # Spacecraft by orbital regime
93
  print(df["orbit_type"].value_counts().head(10))
94
 
95
+ # Launches per year
96
+ import matplotlib.pyplot as plt
97
+ df["launch_year"].dropna().astype(int).value_counts().sort_index().plot(kind="bar", figsize=(14, 4))
98
+ plt.xlabel("Year")
99
+ plt.ylabel("Spacecraft Launched")
100
+ plt.title("Spacecraft Launches Per Year")
101
+ plt.tight_layout()
102
+ plt.show()
103
 
104
  # Heaviest spacecraft
105
  heaviest = df.nlargest(10, "mass_kg")[["name", "operator", "mass_kg", "orbit_type"]]
106
  print(heaviest)
 
 
 
 
107
  ```
108
 
109
  ## Data source
110
 
111
+ https://www.wikidata.org/
 
 
 
 
 
 
112
 
113
  ## Related datasets
114
 
115
+ - [juliensimon/space-missions](https://huggingface.co/datasets/juliensimon/space-missions)
116
+
117
+ - [juliensimon/space-track-satcat](https://huggingface.co/datasets/juliensimon/space-track-satcat)
118
 
119
+ - [juliensimon/launch-vehicles](https://huggingface.co/datasets/juliensimon/launch-vehicles)
120
 
121
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/spacecraft-database) on Hugging Face. It helps others discover it.
122
 
123
+ ## About the author
124
 
125
+ Created by [Julien Simon](https://julien.org) AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
126
 
127
  ## Citation
128
 
129
  ```bibtex
130
  @dataset{spacecraft_database,
 
131
  title = {Spacecraft Database},
132
+ author = {juliensimon},
133
  year = {2026},
 
134
  url = {https://huggingface.co/datasets/juliensimon/spacecraft-database},
135
+ publisher = {Hugging Face}
136
  }
137
  ```
138
 
139
  ## License
140
 
141
+ [CC0-1.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: b4ee989764419c10ba93cf1ac8ca716fbc7083b1aec2d21472c65119cc5ee483
  • Pointer size: 130 Bytes
  • Size of remote file: 24.6 kB
data/spacecraft.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:48afee9120f3ee6bbebefe72ebb65e67164986c222cd08487a40a578e585046d
3
- size 172256
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c5c02ce21b8079990a1a4338629ffd23aa54328956171e739b592214f4e38ac
3
+ size 172235