Baselight

Astronauts Extra Vehicular Activities

Astronauts EVAs number and total time

@kaggle.alexandrepetit881234_astronauts_extra_vehicular_activities

Loading...
Loading...

About this Dataset

Astronauts Extra Vehicular Activities

This dataset includes two files.

  • The first one, atronautes_EVA.csv includes the name of the astronauts and cosmonauts having done an EVA (Extra Vehicular Activity)
  • The second is a cleaned version of the dataset link below

It was generated from NASA Extra Vehicular Activity shared by Jarred Priester

astronauts_EVA includes three columns:

  • Crew, the name of the astronaut/cosmonaut
  • EVA_number, the number of EVA
  • EVA_time, the total time in minutes of the EVAs

NASA Extra Vehicular activity cleaned includes:

  • Date, the date of the EVA
  • Crew, the names of the astronauts/cosmonauts
  • Country, the country that launched the mission
  • Vehicle, the spaceship name
  • Program, the program of the spaceflight
  • Duration, the duration of the EVA in minutes
  • Purpose, the description of the EVA
  • Year, the year of the EVA

Tables

Astronauts Eva

@kaggle.alexandrepetit881234_astronauts_extra_vehicular_activities.astronauts_eva
  • 7.2 KB
  • 232 rows
  • 3 columns
Loading...

CREATE TABLE astronauts_eva (
  "crew" VARCHAR,
  "eva_number" BIGINT,
  "eva_time" DOUBLE
);

Nasa Extra Vehicular Activity Cleaned

@kaggle.alexandrepetit881234_astronauts_extra_vehicular_activities.nasa_extra_vehicular_activity_cleaned
  • 53.24 KB
  • 375 rows
  • 8 columns
Loading...

CREATE TABLE nasa_extra_vehicular_activity_cleaned (
  "date" TIMESTAMP,
  "country" VARCHAR,
  "vehicle" VARCHAR,
  "duration" BIGINT,
  "crew" VARCHAR,
  "purpose" VARCHAR,
  "year" BIGINT,
  "program" VARCHAR
);

Share link

Anyone who has the link will be able to view this.