# Database Design for Climate-Resilient Water Management Systems in Tanzania
The purpose of this project is to create a structured and centralized database of information describing the 9 water basins and water user associations (WUA) in Tanzania. Utilizing secondary climate and geographic data sources, the current state and future state water resource vulnerability of the water user groups will be determined. This will provide valuable insight into climate vulnerable areas for prioritized investment.
## Project Organization
```
├── LICENSE requirements.txt`
│
├── setup.cfg <- Configuration file for flake8
│
└── database_design_for_climate_resilient_water_management_systems_in_tanzania <- Source code for use in this project.
│
├── __init__.py <- Makes database_design_for_climate_resilient_water_management_systems_in_tanzania a Python module
│
├── config.py <- Store useful variables and configuration
│
├── dataset.py <- Scripts to download or generate data
│
├── features.py <- Code to create features for modeling
│
├── modeling
│ ├── __init__.py
│ ├── predict.py <- Code to run model inference with trained models
│ └── train.py <- Code to train models
│
└── plots.py <- Code to create visualizations
```
--------