Global Volcanism Program
Countries with Holocene Volcanoes
@kaggle.kkhandekar_global_volcanism_program
Countries with Holocene Volcanoes
@kaggle.kkhandekar_global_volcanism_program
Holocene volcanoes are volcanoes that have been active in the last 11 700 years. This time period is the current geological epoch. They can be found in 164 different countries (plus non-national state areas of "Undersea Features" and Antarctica).
A list of 78 countries with Holocene volcanoes and current erupting status as of 17 Mar 2022.
A list of each Holocene volcano in a country with their:
Note: For some odd reasons my scrape script wasn't able to scrape the volcano names, location, last eruption & primary volcano type for Georgia & Japan as it kept on timing out.
CREATE TABLE countrieswithvolcanoes (
"country" VARCHAR,
"holocenevolcanoes" BIGINT,
"active_since1800_ce" BIGINT,
"active_since1960_ce" BIGINT,
"currently_erupting_17_march_2022" VARCHAR -- Currently Erupting (17 March 2022)
);CREATE TABLE volcanoesincountries (
"country" VARCHAR,
"volcanoname" VARCHAR,
"location" VARCHAR,
"lasteruption" VARCHAR,
"primaryvolcanotype" VARCHAR
);Anyone who has the link will be able to view this.