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

Update space missions database: 25,137 missions

Browse files
Files changed (2) hide show
  1. README.md +11 -33
  2. data/space-missions.parquet +2 -2
README.md CHANGED
@@ -35,11 +35,10 @@ Comprehensive database of **25,137** space missions — both crewed and uncrewed
35
 
36
  ## Dataset description
37
 
38
- From Sputnik-1 in 1957 to today's commercial launches and deep space probes, this dataset covers the full breadth of human spaceflight and robotic exploration. Each record includes launch and end dates, operating agency, destination, launch vehicle, crew size, mission duration, and outcome where available.
39
 
40
- The 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.
41
-
42
- Records span from **1960-12-01** to **http://www**, with **662** missions having a known launch date and **1** confirmed crewed missions.
43
 
44
  ## Schema
45
 
@@ -47,25 +46,14 @@ Records span from **1960-12-01** to **http://www**, with **662** missions having
47
  |--------|------|-------------|
48
  | `wikidata_id` | string | Wikidata entity ID (e.g. Q183294) |
49
  | `name` | string | Mission name |
50
- | `launch_date` | string | Launch date (YYYY-MM-DD) |
51
- | `end_date` | string | Mission end date (YYYY-MM-DD) |
52
- | `operator` | string | Operating agency or organization |
53
- | `destination` | string | Mission destination (e.g. Moon, Mars, ISS) |
54
- | `launch_site` | string | Launch site name |
55
- | `vehicle` | string | Launch vehicle |
56
- | `crew_count` | int | Number of crew members (null for uncrewed) |
57
- | `duration_days` | float | Mission duration in days (derived from Wikidata minutes) |
58
- | `outcome` | string | Mission outcome (e.g. successful, partial failure) |
59
- | `launch_year` | int | Launch year (derived from launch_date) |
60
 
61
  ## Quick stats
62
 
63
  - **25,137** total missions in the database
64
- - **662** missions with a known launch date
65
- - **1** confirmed crewed missions
66
- - **19** distinct destinations
67
- - Date range: 1960-12-01 to http://www
68
- - Top operators: National Aeronautics and Space Administration (205), Alaska Department of Transportation & Public Facilities (149), Airports Authority of India (108), Soviet space program (93), Roscosmos State Corporation (88)
69
 
70
  ## Usage
71
 
@@ -76,21 +64,11 @@ ds = load_dataset("juliensimon/space-missions", split="train")
76
  df = ds.to_pandas()
77
 
78
  # Missions by operator
79
- print(df["operator"].value_counts().head(10))
80
-
81
- # Crewed missions only
82
- crewed = df[df["crew_count"].notna() & (df["crew_count"] > 0)]
83
- print(f"{len(crewed):,} crewed missions")
84
-
85
- # Missions by destination
86
- print(df["destination"].value_counts().head(10))
87
-
88
- # Missions by year
89
- print(df["launch_year"].value_counts().sort_index())
90
 
91
- # Longest missions
92
- top_duration = df.nlargest(10, "duration_days")[["name", "operator", "duration_days", "destination"]]
93
- print(top_duration)
94
  ```
95
 
96
  ## Data source
 
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
 
 
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
 
 
64
  df = ds.to_pandas()
65
 
66
  # Missions by operator
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
data/space-missions.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:82554e4dbd4ab593f1d0788eb6d5cfa04fce863539c78d5d99cf06287aae9937
3
- size 438280
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0319665e3238087bc716bb5552efff14c3b340d2842c76cf9b79c1a258cdaa0
3
+ size 427222