Planets & Moons
Planets of our Solar System (+Pluto) & natural satellites (moons) of all planets
@kaggle.joebeachcapital_planets_and_moons
Planets of our Solar System (+Pluto) & natural satellites (moons) of all planets
@kaggle.joebeachcapital_planets_and_moons
Planets
The planets.csv file contains information about planets in our Solar System including dwarf planet Pluto. The source of data is Planetary Fact Sheet from NASA Jet Propulsion Laboratory.
Fields and units in the planetary dataset
See also official Planetary Fact Sheet Notes for more information about individual fields.
Planetary satellites (moons)
The satellites.csv file contains information about planetary satellites (moons) of planets in our Solar System. Moons of dwarf planet Pluto are included as well. The source of data is Planetary Satellite Physical Parameters from NASA Jet Propulsion Laboratory.
Fields and units in the satellites dataset
CREATE TABLE planets (
"planet" VARCHAR,
"mass" DOUBLE,
"diameter" BIGINT,
"density" BIGINT,
"gravity" DOUBLE,
"escape_velocity" DOUBLE,
"rotation_period" DOUBLE,
"length_of_day" DOUBLE,
"distance_from_sun" DOUBLE,
"perihelion" DOUBLE,
"aphelion" DOUBLE,
"orbital_period" DOUBLE,
"orbital_velocity" DOUBLE,
"orbital_inclination" DOUBLE,
"orbital_eccentricity" DOUBLE,
"obliquity_to_orbit" DOUBLE,
"mean_temperature" BIGINT,
"surface_pressure" VARCHAR,
"number_of_moons" BIGINT,
"has_ring_system" VARCHAR,
"has_global_magnetic_field" VARCHAR
);
CREATE TABLE satellites (
"planet" VARCHAR,
"name" VARCHAR,
"gm" VARCHAR,
"radius" VARCHAR,
"density" VARCHAR,
"magnitude" VARCHAR,
"albedo" VARCHAR
);
Anyone who has the link will be able to view this.