Baselight

Significant Earthquakes, 1965-2016

Date, time, and location of all earthquakes with magnitude of 5.5 or higher

@kaggle.usgs_earthquake_database

Database
@kaggle.usgs_earthquake_database.database

  • 890.21 KB
  • 23412 rows
  • 21 columns
date

Date

time

Time

latitude

Latitude

longitude

Longitude

type

Type

depth

Depth

depth_error

Depth Error

depth_seismic_stations

Depth Seismic Stations

magnitude

Magnitude

magnitude_type

Magnitude Type

magnitude_error

Magnitude Error

magnitude_seismic_stations

Magnitude Seismic Stations

azimuthal_gap

Azimuthal Gap

horizontal_distance

Horizontal Distance

horizontal_error

Horizontal Error

root_mean_square

Root Mean Square

id

ID

source

Source

location_source

Location Source

magnitude_source

Magnitude Source

status

Status

01/02/196513:44:1819.246145.616Earthquake131.66MWISCGEM860706ISCGEMISCGEMISCGEMAutomatic
01/04/196511:29:491.863127.352Earthquake805.8MWISCGEM860737ISCGEMISCGEMISCGEMAutomatic
01/05/196518:05:58-20.579-173.972Earthquake206.2MWISCGEM860762ISCGEMISCGEMISCGEMAutomatic
01/08/196518:49:43-59.076-23.557Earthquake155.8MWISCGEM860856ISCGEMISCGEMISCGEMAutomatic
01/09/196513:32:5011.938126.427Earthquake155.8MWISCGEM860890ISCGEMISCGEMISCGEMAutomatic
01/10/196513:36:32-13.405166.629Earthquake356.7MWISCGEM860922ISCGEMISCGEMISCGEMAutomatic
01/12/196513:32:2527.35787.867Earthquake205.9MWISCGEM861007ISCGEMISCGEMISCGEMAutomatic
01/15/196523:17:42-13.309166.212Earthquake356MWISCGEM861111ISCGEMISCGEMISCGEMAutomatic
01/16/196511:32:37-56.452-27.043Earthquake956MWISCGEMSUP861125ISCGEMSUPISCGEMISCGEMAutomatic
01/17/196510:43:17-24.563178.487Earthquake5655.8MWISCGEM861148ISCGEMISCGEMISCGEMAutomatic

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
);

Share link

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