Volcanic Eruptions In The Holocene Period
Name, location, and type of volcanoes active in the past 10,000 years
@kaggle.smithsonian_volcanic_eruptions
Name, location, and type of volcanoes active in the past 10,000 years
@kaggle.smithsonian_volcanic_eruptions
The Smithsonian Institution's Global Volcanism Program (GVP) documents Earth's volcanoes and their eruptive history over the past 10,000 years. The GVP reports on current eruptions from around the world and maintains a database repository on active volcanoes and their eruptions. The GVP is housed in the Department of Mineral Sciences, part of the National Museum of Natural History, on the National Mall in Washington, D.C.
The GVP database includes the names, locations, types, and features of more than 1,500 volcanoes with eruptions during the Holocene period (approximately the last 10,000 years) or exhibiting current unrest.
CREATE TABLE database (
"number" BIGINT,
"name" VARCHAR,
"country" VARCHAR,
"region" VARCHAR,
"type" VARCHAR,
"activity_evidence" VARCHAR,
"last_known_eruption" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"elevation_meters" BIGINT -- Elevation (Meters),
"dominant_rock_type" VARCHAR,
"tectonic_setting" VARCHAR
);Anyone who has the link will be able to view this.