Logo Lanfrica
  • Home
  • Atlas
  • Insights
  • Docs
  • Sign in

© 2026 Lanfrica. All rights reserved. All copyrights of the resources shown on the Lanfrica website belong to the original copyright holders, unless explicitly stated otherwise.

mah-trigui/2030-vision-flood-prediction-in-malawi-Zindi-Competition

Domain:

climategeospatial

Record type:

project
Creator:
mah
Host:
Predict flood extent caused by storms in southern Malawi # Malawi Flood Extent Prediction This competition is hosted on Zindi, a machine learning platform for data science challenges. Here is the link to the competition: UNICEF Arm 2030 Vision #1: Flood Prediction in Malawi 🌾 - $10 000 USD Ranked in the TOP 52% --- Predicting the fraction of 1km² grid squares flooded in southern Malawi during Cyclone Idai (March 2019). Training data is the 2015 flood event. Evaluation: RMSE on flood fraction [0, 1]. Zindi competition sponsored by UNICEF and Arm. ## Key Engineering Decisions **Train on one flood event, predict another.** The fundamental challenge is not generalization across rows — it's generalization across events. The model trained on 2015 data must predict 2019 (Cyclone Idai), a different storm with a different path, different rainfall distribution, and larger extent. Event-specific features from 2015 (individual week rainfall values) carry limited signal for 2019. The features that generalize are physical landscape invariants: terrain shape, soil properties, proximity to water. The pipeline prioritizes these. **Terrain derivative features from elevation raster.** Elevation alone doesn't predict flooding — slope, flow direction, and terrain position do. A low-elevation flat plain pools water differently than a low-elevation hillside that drains rapidly. From the raw elevation grid, six terrain derivatives are computed: ```r terrain_stack <- raster::terrain( rast_elev, opt = c("slope", "aspect", "tpi", "tri", "roughness", "flowdir"), unit = "degrees", neighbors = 8 ) ``` - **TPI** (Terrain Position Index): is this cell a depression or a ridge? - **TRI** (Terrain Ruggedness Index): how rough is the local surface? - **flowdir**: which of the 8 cardinal directions does water drain toward? - **hillshade**: a proxy for local exposure and shadow patterns **Zero-inflated target decomposition.** ~70% of grid squares have zero flood extent. A regression model minimizing RMSE on zero-inflated data will be pulled toward ne …

Visit

github.com

Tasks

transfer learning

Similar

mah-trigui/financial-inclusion-in-africa-Zindi-Competitionmah-trigui/sea-turtle-rescue-forecast-Zindi-Competitiontrevornagaba/UNICEF-Arm-2030-Vision-1-Flood-Prediction-in-Malawi-zindi-mah-trigui/basic-needs-basic-rights-kenya-tech4mentalhealth-Zindi-Competitionmah-trigui/Fraud-Detection-in-Electricity-and-Gas-Consumption-Zindi-CompetitionDariusTheGeek/Flood-Prediction-in-Malawi--Zindi-Competition

mah-trigui/financial-inclusion-in-africa-Zindi-Competition

# Financial Inclusion in Africa — Bank Account Prediction Pipeline This competition is hosted on Zi

mah-trigui/sea-turtle-rescue-forecast-Zindi-Competition

predict the number of sea turtles Local Ocean Conservation will rescue each week in Kenya # Sea Tur

trevornagaba/UNICEF-Arm-2030-Vision-1-Flood-Prediction-in-Malawi-zindi-

# UNICEF-Arm-2030-Vision-1-Flood-Prediction-in-Malawi A zindi competiton, see details here >>> http

mah-trigui/basic-needs-basic-rights-kenya-tech4mentalhealth-Zindi-Competition

Classify text from university students in Kenya towards a mental health chatbot # Mental Health Tex

mah-trigui/Fraud-Detection-in-Electricity-and-Gas-Consumption-Zindi-Competition

Help Tunisian company STEG detect fraud # STEG Fraud Detection in Electricity and Gas Consumption

DariusTheGeek/Flood-Prediction-in-Malawi--Zindi-Competition

Simple starter code # Flood-Prediction-in-Malawi--Zindi-Competition ## Starter Code for Flood Predi