Significant Earthquakes, 1965-2016
Date, time, and location of all earthquakes with magnitude of 5.5 or higher
@kaggle.usgs_earthquake_database
Date, time, and location of all earthquakes with magnitude of 5.5 or higher
@kaggle.usgs_earthquake_database
CREATE TABLE database (
"date" VARCHAR,
"time" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"type" VARCHAR,
"depth" DOUBLE,
"depth_error" DOUBLE,
"depth_seismic_stations" DOUBLE,
"magnitude" DOUBLE,
"magnitude_type" VARCHAR,
"magnitude_error" DOUBLE,
"magnitude_seismic_stations" DOUBLE,
"azimuthal_gap" DOUBLE,
"horizontal_distance" DOUBLE,
"horizontal_error" DOUBLE,
"root_mean_square" DOUBLE,
"id" VARCHAR,
"source" VARCHAR,
"location_source" VARCHAR,
"magnitude_source" VARCHAR,
"status" VARCHAR
);
Anyone who has the link will be able to view this.