Landslides After Rainfall, 2007-2016
Location and cause of landslide events around the world
@kaggle.nasa_landslide_events
Location and cause of landslide events around the world
@kaggle.nasa_landslide_events
Landslides are one of the most pervasive hazards in the world, causing more than 11,500 fatalities in 70 countries since 2007. Saturating the soil on vulnerable slopes, intense and prolonged rainfall is the most frequent landslide trigger.
The Global Landslide Catalog (GLC) was developed with the goal of identifying rainfall-triggered landslide events around the world, regardless of size, impacts, or location. The GLC considers all types of mass movements triggered by rainfall, which have been reported in the media, disaster databases, scientific reports, or other sources.
The GLC has been compiled since 2007 at NASA Goddard Space Flight Center.
CREATE TABLE catalog (
"id" BIGINT,
"date" TIMESTAMP,
"time" VARCHAR,
"continent_code" VARCHAR,
"country_name" VARCHAR,
"country_code" VARCHAR,
"state_province" VARCHAR,
"population" BIGINT,
"city_town" VARCHAR,
"distance" DOUBLE,
"location_description" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"geolocation" VARCHAR,
"hazard_type" VARCHAR,
"landslide_type" VARCHAR,
"landslide_size" VARCHAR,
"trigger" VARCHAR,
"storm_name" VARCHAR,
"injuries" DOUBLE,
"fatalities" DOUBLE,
"source_name" VARCHAR,
"source_link" VARCHAR
);Anyone who has the link will be able to view this.