Logo Lanfrica
  • Accueil
  • Atlas
  • Analyses
  • Documentation
  • Sign in

© 2026 Lanfrica. Tous droits réservés. Tous les droits d'auteur des ressources affichées sur le site Web Lanfrica appartiennent aux détenteurs de droits d'auteur d'origine, sauf indication contraire explicite.

Deltares-research/UFFFS-East-Africa

Domaine:

environment and energygeospatial

Type de record:

software
Créateur:
Del
HĂ´te:
# 🌍 UFFFS – Urban Flood Forecasting Framework > Reproducible, scalable workflow for building and running urban flood models using **Snakemake + HydroMT + SFINCS** --- ## 🚀 Overview UFFFS provides a **fully configuration-driven workflow** for: - 🧱 Building base SFINCS model schematisations - 🌧️ Running flood events with different forcing scenarios - 🗺️ Postprocessing and merging floodmaps - 🧩 Comparing model configurations (e.g. baseline vs lidar) The framework is designed for: - reproducibility ✅ - scalability across cities ✅ - efficient reuse of models ✅ --- ## 🧭 Workflows UFFFS consists of two main workflows: --- ### 🧱 Build workflow Builds reusable **base SFINCS models** using HydroMT. - Reads configuration from `config/cities.yml` - Generates model schematisations - Writes outputs to: ``` outputs/{city}/{sfmodel}/sfincs_base/ ``` 📖 See: 👉 `docs/build_workflow.md` --- ### 🌧️ Event workflow Runs **event simulations** on top of base models. - Updates forcing (ERA5 / synthetic) - Runs SFINCS - Postprocesses floodmaps - Merges results **per model group** Outputs: ``` outputs/{city}/events/{event}/ {city}_{event}_{group}_floodmap.tif ``` 📖 See: 👉 `docs/events_workflow.md` --- ## 🗂️ Repository structure ``` ├── config/ │ ├── cities.yml # Model definitions (incl. groups) │ ├── events.yml # Event configuration │ └── templates/ │ └── sfincs/ │ └── build_base.yml │ ├── workflows/ │ ├── Snakefile # Build workflow │ ├── Snakefile_events # Event workflow │ └── scripts/ │ ├── build_sfincs.py │ ├── update_sfincs_forcing.py │ ├── postprocess_sfincs.py │ └── merge_floodmaps.py │ ├── docs/ │ ├── build_workflow.md │ └── events_workflow.md │ ├── outputs/ # Generated models and results ├── logs/ # Log files ``` --- ## ⚙️ Configuration ### Base models Defined in: ``` config/cities.yml ``` Inclu …

Visit

github.com