NASA Near Earth Objects Information
Information about all the NEOs by NASA
@kaggle.adityaramachandran27_nasa_near_earth_objects_information
Information about all the NEOs by NASA
@kaggle.adityaramachandran27_nasa_near_earth_objects_information
Near-Earth objects are asteroids and comets with orbits that bring them to within 120 million miles (195 million kilometers) of the Sun, which means they can circulate through the Earth’s orbital neighborhood. Most near-Earth objects are asteroids that range in size from about 10 feet (a few meters) to nearly 25 miles (40 kilometers) across.
The orbit of each object is computed by finding the elliptical path through space that best fits all the available observations, which often span many orbits over many years or decades. As more observations are made, the accuracy of an object's orbit improves dramatically, and it becomes possible to predict where an object will be years or even decades into the future – and whether it could come close to Earth.
This dataset was made using the data from the NASA Open API website
This dataset has various information about the NEOs like:
CREATE TABLE nasa_near_earth_objects (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"neo_reference_id" BIGINT,
"name" VARCHAR,
"name_limited" VARCHAR,
"designation" VARCHAR,
"absolute_magnitude_h" DOUBLE,
"is_potentially_hazardous_asteroid" BOOLEAN,
"is_sentry_object" BOOLEAN,
"kilometers_estimated_diameter_min" DOUBLE,
"kilometers_estimated_diameter_max" DOUBLE,
"orbit_id" VARCHAR,
"orbit_class_type" VARCHAR,
"perihelion_distance" DOUBLE,
"aphelion_distance" DOUBLE,
"first_observation_date" VARCHAR,
"last_observation_date" TIMESTAMP,
"orbit_class_description" VARCHAR
);Anyone who has the link will be able to view this.