juliensimon commited on
Commit
4793bb8
·
verified ·
1 Parent(s): 6c2f16e

Update space missions database: 25,159 missions

Browse files
Files changed (3) hide show
  1. README.md +71 -44
  2. banner.jpg +3 -0
  3. data/space_missions.parquet +3 -0
README.md CHANGED
@@ -3,12 +3,7 @@ license: cc0-1.0
3
  pretty_name: "Space Missions Database"
4
  language:
5
  - en
6
- description: >-
7
- Comprehensive database of space missions sourced from Wikidata.
8
- 25,137 missions covering crewed and uncrewed spaceflight from the dawn
9
- of the Space Age to the present.
10
- size_categories:
11
- - 10K<n<100K
12
  task_categories:
13
  - tabular-classification
14
  tags:
@@ -19,47 +14,66 @@ 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/space-missions.parquet
 
28
  ---
29
 
30
  # Space Missions 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 **25,137** space missions — both crewed and uncrewed — sourced from [Wikidata](https://www.wikidata.org/).
 
 
 
 
 
 
35
 
36
  ## Dataset description
37
 
38
- This dataset draws on Wikidata's structured knowledge base using three entity types: space missions (Q2133344), crewed spaceflights (Q1248784), and uncrewed spaceflights (Q12795915). It is maintained by the WikiProject Spaceflight community and updated as new missions are flown and documented.
39
 
40
- > **Note:** Wikidata coverage is uneven most entries have only a name and Wikidata ID.
41
- > Columns with <5% data coverage are automatically dropped during pipeline processing.
42
 
43
- ## Schema
44
 
45
- | Column | Type | Description |
46
- |--------|------|-------------|
47
- | `wikidata_id` | string | Wikidata entity ID (e.g. Q183294) |
48
- | `name` | string | Mission name |
49
- | `operator` | string | Operating agency or organization (~13% coverage) |
50
 
51
- Additional columns (launch_date, destination, etc.) appear when Wikidata coverage exceeds 5%.
 
 
 
 
 
 
 
 
52
 
53
  ## Quick stats
54
 
55
- - **25,137** total missions in the database
56
- - Top operators: National Aeronautics and Space Administration (202), Alaska Department of Transportation & Public Facilities (149), Airports Authority of India (109), Soviet space program (93), Roscosmos State Corporation (85)
 
 
 
57
 
58
  ## Usage
59
 
60
  ```python
61
  from datasets import load_dataset
62
 
 
 
 
 
 
 
 
63
  ds = load_dataset("juliensimon/space-missions", split="train")
64
  df = ds.to_pandas()
65
 
@@ -67,51 +81,64 @@ df = ds.to_pandas()
67
  if "operator" in df.columns:
68
  print(df["operator"].value_counts().head(10))
69
 
70
- # List all missions
71
- print(df[["name", "wikidata_id"]].head(20))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  ```
73
 
74
  ## Data source
75
 
76
- [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Missions identified via:
77
- - Q2133344 (space mission, including subclasses)
78
- - Q1248784 (crewed spaceflight)
79
- - Q12795915 (uncrewed spaceflight)
80
 
81
- Data is community-curated by [WikiProject Spaceflight](https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight).
82
 
83
- ## Update schedule
84
 
85
- Quarterly (January, April, July, October).
86
 
87
- ## Related datasets
 
 
 
 
 
 
88
 
89
- - [astronaut-database](https://huggingface.co/datasets/juliensimon/astronaut-database) -- Every person who has traveled to space
90
- - [launch-log](https://huggingface.co/datasets/juliensimon/launch-log) -- McDowell orbital launch log
91
- - [spacecraft-database](https://huggingface.co/datasets/juliensimon/spacecraft-database) -- Spacecraft catalog
92
- - [deep-space-probes](https://huggingface.co/datasets/juliensimon/deep-space-probes) -- Deep space probe trajectories
93
 
94
- ## Pipeline
95
 
96
- Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
97
 
98
- ## Support
99
 
100
- If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/space-missions) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
101
 
102
  ## Citation
103
 
104
  ```bibtex
105
  @dataset{space_missions,
106
- author = {Simon, Julien},
107
  title = {Space Missions Database},
 
108
  year = {2026},
109
- publisher = {Hugging Face},
110
  url = {https://huggingface.co/datasets/juliensimon/space-missions},
111
- note = {Sourced from Wikidata (CC0)}
112
  }
113
  ```
114
 
115
  ## License
116
 
117
- [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
 
3
  pretty_name: "Space Missions Database"
4
  language:
5
  - en
6
+ description: "Comprehensive database of space missions -- both crewed and uncrewed -- sourced from Wikidata's structured knowledge base. Covers the full history of spaceflight from the dawn of the Space Age to the "
 
 
 
 
 
7
  task_categories:
8
  - tabular-classification
9
  tags:
 
14
  - open-data
15
  - tabular-data
16
  - parquet
17
+ size_categories:
18
+ - 10K<n<100K
19
  configs:
20
  - config_name: default
 
21
  data_files:
22
  - split: train
23
+ path: data/space_missions.parquet
24
+ default: true
25
  ---
26
 
27
  # Space Missions Database
28
 
 
29
 
30
+ <div align="center">
31
+ <img src="banner.jpg" alt="Blue Marble — Earth from space as photographed by Suomi NPP satellite" width="400">
32
+ <p><em>Credit: NASA/GSFC/Suomi NPP</em></p>
33
+ </div>
34
+
35
+
36
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/space-probe-and-mission-datasets-69c3fe82d410a42b1e313167) on Hugging Face.*
37
 
38
  ## Dataset description
39
 
40
+ Comprehensive database of space missions -- both crewed and uncrewed -- sourced from Wikidata's structured knowledge base. Covers the full history of spaceflight from the dawn of the Space Age to the present.
41
 
42
+ This dataset draws on Wikidata using three entity types: space missions (Q2133344), crewed spaceflights (Q1248784), and uncrewed spaceflights (Q12795915). It is maintained by the WikiProject Spaceflight community and updated as new missions are flown and documented.
 
43
 
44
+ **Note:** Wikidata coverage is uneven -- most entries have only a name and Wikidata ID. Columns with <5% data coverage are automatically dropped during pipeline processing.
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. 'Q183294' for Apollo 11); stable persistent identifier that can be used to link back to the full Wikidata entry for enrichment | Q940331 | 0.0% |
54
+ | `name` | str | Official mission name as recorded in Wikidata (e.g. 'Apollo 11', 'Voyager 1', 'Mars Odyssey'); the English-language label from the Wikidata entity | Korabl-Sputnik 3 | 0.0% |
55
+ | `operator` | str | Launching or operating space agency/organization (e.g. 'NASA', 'ESA', 'ISRO', 'Roscosmos', 'CNSA'); null for missions where Wikidata has no operator recorded | Soviet space program | 86.8% |
56
 
57
  ## Quick stats
58
 
59
+ - **25,159** total missions in the database
60
+ - **668** with known launch dates
61
+ - **1** crewed missions
62
+ - **19** unique destinations
63
+ - Top operators: National Aeronautics and Space Administration (199), Alaska Department of Transportation & Public Facilities (149), Airports Authority of India (110), Soviet space program (95), Roscosmos State Corporation (88)
64
 
65
  ## Usage
66
 
67
  ```python
68
  from datasets import load_dataset
69
 
70
+ ds = load_dataset("juliensimon/space-missions", split="train")
71
+ df = ds.to_pandas()
72
+ ```
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
  ds = load_dataset("juliensimon/space-missions", split="train")
78
  df = ds.to_pandas()
79
 
 
81
  if "operator" in df.columns:
82
  print(df["operator"].value_counts().head(10))
83
 
84
+ # Launches per decade
85
+ import matplotlib.pyplot as plt
86
+ df["decade"] = (df["launch_year"] // 10) * 10
87
+ df.dropna(subset=["decade"]).groupby("decade").size().plot(kind="bar")
88
+ plt.ylabel("Number of Missions")
89
+ plt.title("Space Missions by Decade")
90
+ plt.tight_layout()
91
+ plt.show()
92
+
93
+ # Crewed vs uncrewed by operator
94
+ if "crew_count" in df.columns and "operator" in df.columns:
95
+ df["crewed"] = df["crew_count"].fillna(0) > 0
96
+ top = df["operator"].value_counts().head(8).index
97
+ df[df["operator"].isin(top)].groupby(["operator", "crewed"]).size().unstack().plot(kind="bar")
98
+ plt.title("Crewed vs Uncrewed by Operator")
99
+ plt.show()
100
  ```
101
 
102
  ## Data source
103
 
104
+ https://www.wikidata.org/wiki/Wikidata:WikiProject_Spaceflight
 
 
 
105
 
106
+ ## Related datasets
107
 
108
+ - [juliensimon/astronaut-database](https://huggingface.co/datasets/juliensimon/astronaut-database)
109
 
110
+ - [juliensimon/space-launch-log](https://huggingface.co/datasets/juliensimon/space-launch-log)
111
 
112
+ - [juliensimon/spacecraft-database](https://huggingface.co/datasets/juliensimon/spacecraft-database)
113
+
114
+ - [juliensimon/deep-space-probes](https://huggingface.co/datasets/juliensimon/deep-space-probes)
115
+
116
+ - [juliensimon/artemis-ii](https://huggingface.co/datasets/juliensimon/artemis-ii)
117
+
118
+ - [juliensimon/astronauts](https://huggingface.co/datasets/juliensimon/astronauts)
119
 
120
+ - [juliensimon/cassini](https://huggingface.co/datasets/juliensimon/cassini)
 
 
 
121
 
122
+ - [juliensimon/chemcam](https://huggingface.co/datasets/juliensimon/chemcam)
123
 
124
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/space-missions) 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{space_missions,
 
134
  title = {Space Missions Database},
135
+ author = {juliensimon},
136
  year = {2026},
 
137
  url = {https://huggingface.co/datasets/juliensimon/space-missions},
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: 7b448ac0756e2890ef8c5b8201845137064abe13f4683f87ae6be6b6daa71a96
  • Pointer size: 131 Bytes
  • Size of remote file: 245 kB
data/space_missions.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c5a3c5b3c4bde81ff8fe80617dd42f203318a00375bb945ad5199c0a350dcc2
3
+ size 423915