| # | year | period | district | event_type | metric | value |
|---|---|---|---|---|---|---|
| loading... | ||||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| year | int64 | Start year of the reporting period (2021 for 2021-2022, 2022 for 2022-2023, 2023 for 2023-2024). | - |
| period | string | Reporting period label: "2021-2022", "2022-2023", or "2023-2024". | - |
| district | string | District name in Title Case where the disaster event occurred. | - |
| event_type | string | Disaster event type in upper case (e.g. LIGHTNING, FLOODS, LANDSLIDES, MINE DISASTER, FIRE, RAINSTORMS, HOUSE COLLAPSE, STRONG WIND). The set of event types recorded varies by district and period. | - |
| metric | string | Impact measure. Values: deaths (Table 5.8) and houses_damaged (Table 5.9, labeled "houses damaged" or "houses destroyed" depending on period). | - |
| value | float64 | Count of deaths or houses damaged/destroyed for the given period, district, and event type. Zero is a valid recorded value (distinct from missing). | - |
import imibare as imi
df = imi.load("rw.nisr.disaster-impact.annual")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.rw_nisr_disaster-impact_annual LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/rw.nisr.disaster-impact.annual/download" \
-o "rw.nisr.disaster-impact.annual.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/rw.nisr.disaster-impact.annual" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-07-03 Jul 3, 2026 LATEST1,165 rows · 7.2 KB · initial version
imibare contributors. (2026). Disaster Impact by District [Data set]. imibare. v2026-07-03. https://imibare.org/datasets/rw.nisr.disaster-impact.annual
@dataset{imibare_rw_nisr_disaster-impact_annual, author = {imibare contributors}, title = {Disaster Impact by District}, year = {2026}, publisher = {imibare}, version = {v2026-07-03}, url = {https://imibare.org/datasets/rw.nisr.disaster-impact.annual} }
imibare contributors. Disaster Impact by District. v2026-07-03. imibare, 2026. https://imibare.org/datasets/rw.nisr.disaster-impact.annual.
imibare contributors. Disaster Impact by District. v2026-07-03, imibare, 2026, https://imibare.org/datasets/rw.nisr.disaster-impact.annual.