Earthquakes Dataset
A Collection of Earthquake Events Recorded by the Seismic Monitoring Network
@kaggle.stealthtechnologies_earthquakes_dataset
A Collection of Earthquake Events Recorded by the Seismic Monitoring Network
@kaggle.stealthtechnologies_earthquakes_dataset
This dataset contains detailed records of seismic activity from around the globe.The data spans multiple pages of records, covering earthquake events from various regions with timestamps, magnitudes, depths, and geographical coordinates. The dataset is valuable for seismologists, researchers, and analysts interested in studying seismic patterns, earthquake frequency, and regional seismicity.
Data Collected from this SOURCE
Date:
Description: The date when the earthquake event occurred.
Type: String (formatted as 'DD/MM/YYYY')
Time (utc):
Description: The exact time (in Coordinated Universal Time) when the earthquake was recorded.
Type: String
Region:
Description: The geographical region where the earthquake occurred.
Type: String
Magnitude:
Description: The magnitude of the earthquake on the Richter scale.
Type: Float
Depth (km):
Description: The depth at which the earthquake occurred.
Type: Integer
Latitude:
Description: The latitude coordinate of the earthquake's epicenter.
Type: String (including the directional indicator 'N' for north or 'S' for south)
Longitude:
Description: The longitude coordinate of the earthquake's epicenter.
Type: String (including the directional indicator 'E' for east or 'W' for west)
Mode:
Description: The mode of the earthquake( 'A' for automatic detection, 'M' for manual verification).
Type: String
CREATE TABLE data (
"date" TIMESTAMP,
"time_utc" VARCHAR -- Time (utc),
"region" VARCHAR,
"magnitude" DOUBLE,
"depth_km" BIGINT -- Depth (km),
"latitude" VARCHAR,
"longitude" VARCHAR,
"mode" VARCHAR,
"map" VARCHAR
);
Anyone who has the link will be able to view this.