Maharashtra Events — International disaster database recording natural and technological disasters in Maharashtra including floods, droughts, cyclones, and earthquakes since 1900
# Download from https://www.emdat.be/
import pandas as pd
df = pd.read_csv('emdat_india.csv')
mh = df[df['Location'].str.contains('Maharashtra', na=False)]
print(f'Maharashtra disasters: {len(mh)}')
print(mh.groupby('Disaster_Type').size().sort_values(ascending=False))| Field | Type | Description |
|---|---|---|
| country | string | Country name |
| disaster_type | string | Type of disaster (flood, drought, etc.) |
| location | string | Affected location description |
| total_deaths | int | Total deaths reported |
| total_affected | int | Total people affected |
| year | int | Disaster year |