juliensimon commited on
Commit
0b1e1da
·
verified ·
1 Parent(s): 4681245

Update GCAT deep space: 1,206 objects, 469 landings

Browse files
README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "GCAT Deep Space Objects and Planetary Landings"
4
+ language:
5
+ - en
6
+ description: "Interplanetary spacecraft and planetary/lunar landings from Jonathan McDowell's General Catalog of Artificial Space Objects (GCAT). 1,675 records across two tables."
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - space
11
+ - deep-space
12
+ - interplanetary
13
+ - planetary-landings
14
+ - lunar-landings
15
+ - gcat
16
+ - solar-system
17
+ - spacecraft
18
+ - open-data
19
+ - tabular-data
20
+ - parquet
21
+ configs:
22
+ - config_name: deep_space_objects
23
+ data_files:
24
+ - split: train
25
+ path: data/deep_space_objects.parquet
26
+ default: true
27
+ - config_name: planetary_landings
28
+ data_files:
29
+ - split: train
30
+ path: data/planetary_landings.parquet
31
+ size_categories:
32
+ - 1K<n<10K
33
+ ---
34
+
35
+ # GCAT Deep Space Objects and Planetary Landings
36
+
37
+ *Part of the [Solar System Datasets](https://huggingface.co/collections/juliensimon/solar-system-datasets-69c6fa681978de62dff2f347) collection on Hugging Face.*
38
+
39
+ Deep space spacecraft and planetary/lunar landings from
40
+ [GCAT](https://planet4589.org/space/gcat/) (General Catalog of Artificial Space Objects),
41
+ maintained by Jonathan McDowell at the Harvard-Smithsonian Center for Astrophysics.
42
+
43
+ Currently **1,206** deep space objects and **469** planetary landings
44
+ (1,675 records total).
45
+
46
+ ## Dataset description
47
+
48
+ This dataset captures humanity's exploration beyond Earth orbit in two complementary tables. The deep space catalog lists every spacecraft, rocket stage, and component that has traveled beyond cislunar space or entered a heliocentric orbit, from the pioneering Luna and Pioneer missions of 1959 to modern interplanetary probes. It includes mission metadata, physical specifications (mass, dimensions, shape), orbital parameters, and current status for each object.
49
+
50
+ The planetary landings catalog records every intentional and unintentional contact with another world -- soft landings, hard impacts, controlled crashes, and flyby probe deployments. It covers landings on 15 different worlds: Luna, Mars, Venus, Ryugu, Titan, Itokawa, Phobos, Jupiter, and more. The data spans the full international history of planetary exploration, including Soviet Luna and Venera missions, NASA's Surveyor and Apollo landings, ESA's Huygens descent to Titan, Japan's Hayabusa asteroid sample returns, China's Chang'e lunar program, and India's Chandrayaan missions.
51
+
52
+ Together these tables enable analysis of interplanetary mission trends, success rates by nation and decade, the geographic distribution of lunar landing sites, and the evolution of deep space spacecraft design over six decades.
53
+
54
+ ## Configs
55
+
56
+ ### `deep_space_objects` -- 1,206 objects
57
+
58
+ Every known spacecraft and component that has traveled beyond Earth orbit.
59
+
60
+ | Column | Type | Description |
61
+ |--------|------|-------------|
62
+ | `jcat` | string | GCAT deep space catalog ID (e.g. D00001) |
63
+ | `satcat` | string | NORAD/Satcat ID (NNA if not assigned) |
64
+ | `launch_tag` | string | GCAT launch identifier |
65
+ | `piece` | string | Launch piece designation |
66
+ | `type` | string | Object type code (P=payload, R=rocket body, C=component) |
67
+ | `name` | string | Object name |
68
+ | `pl_name` | string | Payload name |
69
+ | `ldate` | string | Launch date |
70
+ | `parent` | string | Parent object JCAT ID |
71
+ | `sdate` | string | Separation date from parent |
72
+ | `primary` | string | Primary gravitational body |
73
+ | `ddate` | string | Deep space date |
74
+ | `status` | string | Current status code |
75
+ | `dest` | string | Destination (Luna, HCO=heliocentric, etc.) |
76
+ | `owner` | string | Owner organization |
77
+ | `state` | string | Country/state code |
78
+ | `manufacturer` | string | Manufacturer code |
79
+ | `bus` | string | Spacecraft bus type |
80
+ | `motor` | string | Propulsion motor |
81
+ | `mass` | float | Mass in kg |
82
+ | `mass_flag` | string | Mass qualifier flag |
83
+ | `dry_mass` | float | Dry mass in kg |
84
+ | `dry_flag` | string | Dry mass qualifier flag |
85
+ | `tot_mass` | float | Total mass in kg |
86
+ | `tot_flag` | string | Total mass qualifier flag |
87
+ | `length` | float | Length in meters |
88
+ | `l_flag` | string | Length qualifier flag |
89
+ | `diameter` | float | Diameter in meters |
90
+ | `d_flag` | string | Diameter qualifier flag |
91
+ | `span` | float | Span in meters |
92
+ | `span_flag` | string | Span qualifier flag |
93
+ | `shape` | string | Physical shape description |
94
+ | `odate` | string | Orbit date |
95
+ | `perigee` | float | Perigee in km |
96
+ | `pf` | string | Perigee qualifier flag |
97
+ | `apogee` | float | Apogee in km |
98
+ | `af` | string | Apogee qualifier flag |
99
+ | `inc` | float | Inclination in degrees |
100
+ | `if_flag` | string | Inclination qualifier flag |
101
+ | `op_orbit` | string | Operational orbit type |
102
+ | `oqual` | string | Orbit quality flag |
103
+ | `alt_names` | string | Alternative names/designations |
104
+
105
+ ### `planetary_landings` -- 469 landings
106
+
107
+ Every lunar and planetary landing or impact, including controlled and uncontrolled surface contact.
108
+
109
+ | Column | Type | Description |
110
+ |--------|------|-------------|
111
+ | `jcat` | string | GCAT deep space catalog ID |
112
+ | `piece` | string | Launch piece designation |
113
+ | `name` | string | Object name |
114
+ | `owner` | string | Owner organization |
115
+ | `state` | string | Country/state code |
116
+ | `world` | string | Target world (Luna, Mars, Venus, Titan, etc.) |
117
+ | `lon` | float | Landing longitude (degrees) |
118
+ | `lat` | float | Landing latitude (degrees) |
119
+ | `ltype` | string | Landing type (L=landing, I=impact, LA=landing attempt, etc.) |
120
+ | `status` | string | Outcome status (L=landed, I=impact, etc.) |
121
+ | `launch_date` | string | Launch date |
122
+ | `land_date` | string | Landing/impact date |
123
+ | `off_date` | string | End-of-mission date |
124
+ | `dur` | float | Surface duration in days |
125
+ | `lsite` | string | Landing site name |
126
+ | `comment` | string | Mission notes |
127
+
128
+ ## Quick stats
129
+
130
+ - **1,206** deep space objects from **21** countries/entities
131
+ - **25** distinct destinations
132
+ - **469** planetary landings on **15** worlds
133
+ - **57** successful landings, **16** impacts
134
+ - Landings by world: Luna (257), Mars (98), Venus (65), Ryugu (14), Titan (8), Itokawa (8)
135
+ - International coverage: US, Soviet Union, China, Japan, ESA, India, and more
136
+
137
+ ## Usage
138
+
139
+ ```python
140
+ from datasets import load_dataset
141
+
142
+ deep = load_dataset("juliensimon/gcat-deep-space", "deep_space_objects", split="train")
143
+ landings = load_dataset("juliensimon/gcat-deep-space", "planetary_landings", split="train")
144
+
145
+ ddf = deep.to_pandas()
146
+
147
+ # Spacecraft by destination
148
+ print(ddf["dest"].value_counts().head(10))
149
+
150
+ # Payloads only (exclude rocket bodies and components)
151
+ payloads = ddf[ddf["type"].str.startswith("P", na=False)]
152
+ print(f"{len(payloads)} payload objects")
153
+
154
+ # Planetary landings by world
155
+ ldf = landings.to_pandas()
156
+ print(ldf["world"].value_counts())
157
+
158
+ # Successful lunar landings with coordinates
159
+ lunar = ldf[(ldf["world"] == "Luna") & (ldf["status"] == "L")]
160
+ print(f"{len(lunar)} successful lunar landings")
161
+ print(lunar[["name", "state", "land_date", "lon", "lat", "dur"]].head(10))
162
+
163
+ # Mars landings
164
+ mars = ldf[ldf["world"] == "Mars"]
165
+ print(f"{len(mars)} Mars landings/impacts")
166
+ ```
167
+
168
+ ## Data source
169
+
170
+ [GCAT](https://planet4589.org/space/gcat/) (General Catalog of Artificial Space Objects)
171
+ by Jonathan McDowell, Harvard-Smithsonian Center for Astrophysics. GCAT is the most
172
+ comprehensive public catalog of space objects, widely used in the spaceflight research
173
+ community.
174
+
175
+ ## Update schedule
176
+
177
+ Static dataset -- rebuilt manually when GCAT is updated (approximately monthly).
178
+
179
+ ## Related datasets
180
+
181
+ - [space-missions](https://huggingface.co/datasets/juliensimon/space-missions) -- Space missions from Wikidata
182
+ - [spacecraft](https://huggingface.co/datasets/juliensimon/spacecraft) -- Spacecraft catalog from Wikidata
183
+ - [gcat-satellite-catalog](https://huggingface.co/datasets/juliensimon/gcat-satellite-catalog) -- GCAT orbital satellite catalog
184
+ - [deep-space-probes](https://huggingface.co/datasets/juliensimon/deep-space-probes) -- Deep space probe trajectories
185
+
186
+ ## Pipeline
187
+
188
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
189
+
190
+ ## Support
191
+
192
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/gcat-deep-space) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
193
+
194
+ ## Citation
195
+
196
+ ```bibtex
197
+ @dataset{gcat_deep_space,
198
+ author = {Simon, Julien},
199
+ title = {GCAT Deep Space Objects and Planetary Landings},
200
+ year = {2026},
201
+ publisher = {Hugging Face},
202
+ url = {https://huggingface.co/datasets/juliensimon/gcat-deep-space},
203
+ note = {Based on GCAT by Jonathan McDowell, Harvard-Smithsonian Center for Astrophysics}
204
+ }
205
+ ```
206
+
207
+ ## License
208
+
209
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/deep_space_objects.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37053e48dc9dbfe16e4b11139b2f852590a9635ab4c0c524b5a67ca8003efb56
3
+ size 94305
data/planetary_landings.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5be539a5ad2c724d87ddb855144b433c5cf47afd74875c4884cf1deb3f68a9b0
3
+ size 28538