juliensimon commited on
Commit
fa126d2
·
verified ·
1 Parent(s): f5aa6d1

Update NASA EVA chronology: 375 records

Browse files
Files changed (2) hide show
  1. README.md +116 -0
  2. data/eva.parquet +3 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "NASA EVA Chronology"
4
+ language:
5
+ - en
6
+ description: >-
7
+ Complete chronology of extravehicular activities (spacewalks) by NASA and
8
+ Roscosmos. 375 EVAs from 1965 to 2013, including crew,
9
+ vehicle, duration, and purpose.
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - tabular-classification
14
+ tags:
15
+ - space
16
+ - eva
17
+ - spacewalk
18
+ - nasa
19
+ - iss
20
+ - human-spaceflight
21
+ - open-data
22
+ - tabular-data
23
+ configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: train
27
+ path: data/eva.parquet
28
+ ---
29
+
30
+ # NASA EVA Chronology
31
+
32
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
33
+
34
+ Complete chronology of all **375** extravehicular activities (spacewalks)
35
+ performed by NASA and Roscosmos astronauts and cosmonauts, from **1965**
36
+ to **2013** -- totalling **1,987** crew-hours outside the
37
+ spacecraft.
38
+
39
+ ## Dataset description
40
+
41
+ This dataset contains the official NASA EVA chronology covering every
42
+ spacewalk by US and Russian crews. Each record includes the EVA sequence
43
+ number, date, crew members, vehicle (Gemini, Apollo, Skylab, Shuttle, ISS,
44
+ etc.), duration in H:MM format plus a computed `duration_minutes` column, and
45
+ a free-text description of the purpose and activities.
46
+
47
+ ## Schema
48
+
49
+ | Column | Type | Description |
50
+ |--------|------|-------------|
51
+ | `eva_number` | Int64 | Sequential EVA number |
52
+ | `country` | string | Country (USA / Russia) |
53
+ | `crew` | string | Crew member(s) |
54
+ | `vehicle` | string | Spacecraft or station (Gemini, Apollo, ISS, etc.) |
55
+ | `date` | datetime | Date of EVA |
56
+ | `duration` | string | Duration in H:MM format |
57
+ | `duration_minutes` | float64 | Duration in total minutes |
58
+ | `purpose` | string | Free-text description of EVA activities |
59
+
60
+ ## Quick stats
61
+
62
+ - **375** EVAs (236 USA, 139 Russia)
63
+ - **1965** to **2013**
64
+ - **1,987** total crew-hours
65
+ - **151** vehicles: Soyuz TM-26 Mir 24 (7), Soyuz TM-27 Mir 25 (6), Soyuz T-10 Salyut 7 (6), Soyuz TM-12 Mir (6), Apollo 15 (6)
66
+
67
+ ## Usage
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ ds = load_dataset("juliensimon/nasa-eva-chronology", split="train")
73
+ df = ds.to_pandas()
74
+
75
+ # EVAs per vehicle
76
+ print(df["vehicle"].value_counts())
77
+
78
+ # Total spacewalk hours by country
79
+ by_country = df.groupby("country")["duration_minutes"].sum() / 60
80
+ print(by_country)
81
+
82
+ # Longest EVAs
83
+ longest = df.nlargest(10, "duration_minutes")[["date", "crew", "vehicle", "duration"]]
84
+ print(longest)
85
+ ```
86
+
87
+ ## Data source
88
+
89
+ NASA Open Data Portal -- Extra-vehicular Activity (EVA) - US and Russia.
90
+ [data.nasa.gov](https://data.nasa.gov/dataset/extra-vehicular-activity-eva-us-and-russia)
91
+
92
+ ## Related datasets
93
+
94
+ - [astronaut-database](https://huggingface.co/datasets/juliensimon/astronaut-database) -- Complete astronaut database
95
+ - [launch-log](https://huggingface.co/datasets/juliensimon/launch-log) -- McDowell launch log
96
+
97
+ ## Pipeline
98
+
99
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
100
+
101
+ ## Citation
102
+
103
+ ```bibtex
104
+ @dataset{nasa_eva_chronology,
105
+ author = {Simon, Julien},
106
+ title = {NASA EVA Chronology},
107
+ year = {2026},
108
+ publisher = {Hugging Face},
109
+ url = {https://huggingface.co/datasets/juliensimon/nasa-eva-chronology},
110
+ note = {Based on NASA Open Data Portal EVA dataset}
111
+ }
112
+ ```
113
+
114
+ ## License
115
+
116
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/eva.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f72b64c2a8b5c6e69c4c57215e370d3ab69e947f7b0b571d8be0056d445dbfbd
3
+ size 42392