juliensimon commited on
Commit
0addeb2
·
verified ·
1 Parent(s): 6587ebc

Update spacecraft database: 8,840 spacecraft

Browse files
Files changed (2) hide show
  1. README.md +134 -0
  2. data/spacecraft.parquet +3 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ 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:
15
+ - space
16
+ - spacecraft
17
+ - satellites
18
+ - wikidata
19
+ - open-data
20
+ - tabular-data
21
+ - parquet
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: data/spacecraft.parquet
27
+ ---
28
+
29
+ # Spacecraft Database
30
+
31
+ *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
32
+
33
+ Comprehensive database of **8,840** spacecraft — satellites, probes, space stations, and more — sourced from [Wikidata](https://www.wikidata.org/).
34
+
35
+ ## Dataset description
36
+
37
+ 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.
38
+
39
+ 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.
40
+
41
+ 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.
42
+
43
+ ## Schema
44
+
45
+ | Column | Type | Description |
46
+ |--------|------|-------------|
47
+ | `wikidata_id` | string | Wikidata entity ID (e.g. Q48371) |
48
+ | `name` | string | Spacecraft name |
49
+ | `launch_date` | string | Launch date (YYYY-MM-DD) |
50
+ | `decommissioned_date` | string | Decommissioning date (YYYY-MM-DD) |
51
+ | `operator` | string | Operating agency or organization |
52
+ | `manufacturer` | string | Manufacturer name |
53
+ | `orbit_type` | string | Orbital regime (e.g. LEO, GEO, heliocentric) |
54
+ | `mass_kg` | float | Spacecraft mass in kilograms |
55
+ | `mission` | string | Associated mission name |
56
+ | `launch_year` | int | Launch year (derived from launch_date) |
57
+
58
+ ## Quick stats
59
+
60
+ - **8,840** total spacecraft in the database
61
+ - **7,373** spacecraft with a known launch date
62
+ - **1,799** spacecraft with a recorded mass
63
+ - **464** distinct operators
64
+ - **28** distinct orbital regimes
65
+ - Date range: 1957-10-04 to 2039-01-01
66
+ - Top operators: National Aeronautics and Space Administration (272), United States Air Force (154), Roscosmos State Corporation (127), Indian Space Research Organisation (115), European Space Agency (89)
67
+ - Top orbital regimes: geostationary orbit (596), low Earth orbit (396), Sun-synchronous orbit (240), medium Earth orbit (69), polar orbit (35)
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ ds = load_dataset("juliensimon/spacecraft-database", split="train")
75
+ df = ds.to_pandas()
76
+
77
+ # Spacecraft by operator
78
+ print(df["operator"].value_counts().head(10))
79
+
80
+ # Spacecraft by orbital regime
81
+ print(df["orbit_type"].value_counts().head(10))
82
+
83
+ # Spacecraft launched per year
84
+ print(df["launch_year"].value_counts().sort_index())
85
+
86
+ # Heaviest spacecraft
87
+ heaviest = df.nlargest(10, "mass_kg")[["name", "operator", "mass_kg", "orbit_type"]]
88
+ print(heaviest)
89
+
90
+ # Still operational (no decommission date)
91
+ operational = df[df["decommissioned_date"].isna() & df["launch_date"].notna()]
92
+ print(f"{len(operational):,} spacecraft with no recorded decommission date")
93
+ ```
94
+
95
+ ## Data source
96
+
97
+ [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Spacecraft identified via
98
+ property P31 (instance of) = Q40218 (spacecraft) and all subclasses via P279*.
99
+ Data is community-curated by [WikiProject Spaceflight](https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight).
100
+
101
+ ## Update schedule
102
+
103
+ Quarterly (January, April, July, October).
104
+
105
+ ## Related datasets
106
+
107
+ - [space-missions](https://huggingface.co/datasets/juliensimon/space-missions) -- Space missions database
108
+ - [satcat](https://huggingface.co/datasets/juliensimon/satcat) -- Satellite catalog (SATCAT)
109
+ - [launch-vehicles](https://huggingface.co/datasets/juliensimon/launch-vehicles) -- Launch vehicle catalog
110
+
111
+ ## Pipeline
112
+
113
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
114
+
115
+ ## Support
116
+
117
+ 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.
118
+
119
+ ## Citation
120
+
121
+ ```bibtex
122
+ @dataset{spacecraft_database,
123
+ author = {Simon, Julien},
124
+ title = {Spacecraft Database},
125
+ year = {2026},
126
+ publisher = {Hugging Face},
127
+ url = {https://huggingface.co/datasets/juliensimon/spacecraft-database},
128
+ note = {Sourced from Wikidata (CC0)}
129
+ }
130
+ ```
131
+
132
+ ## License
133
+
134
+ [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
data/spacecraft.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0db601a9c47cde71a27484d530fae7f75cfa9a442cd55fc5582d3bcd967465b
3
+ size 173198