0 Academy Week 0 Challenge - African Climate Trend Analysis
# π African Climate Trends Analysis
> Climate data analysis for 5 African countries to inform Ethiopia's COP32 position paper
## π Overview
This project analyzes historical climate data (2015-2026) from **Ethiopia, Kenya, Nigeria, Sudan, and Tanzania** using NASA POWER satellite data. The analysis identifies climate vulnerabilities, trends, and provides evidence-backed recommendations for COP32 negotiations.
## π― Key Findings
| Country | Mean Temp | Dry Days | Vulnerability |
|---------|-----------|----------|---------------|
| Sudan | 28.8Β°C | 72.7% | π΄ Critical |
| Nigeria | 26.7Β°C | 11.8% | π High |
| Tanzania | 26.8Β°C | 5.2% | π‘ Moderate |
| Kenya | 20.4Β°C | 6.3% | π’ Lower |
| Ethiopia | 16.1Β°C | 20.7% | π’ Lower |
## π Dashboard
### Live Demo
climate-challenge-week0-cf8β¦
### Features
- β
Country multi-select (compare multiple nations)
- β
Year range slider (2015-2026)
- β
Variable selector (Temperature/Precipitation/Humidity)
- β
Interactive line charts & boxplots
- β
Summary statistics table
- β
Download filtered data as CSV
### Run Locally
# Clone repository
git clone
github.com
cd climate-challenge-week0
# Create virtual environment
python -m venv venv
venv\Scripts\activate # Windows
# Install dependencies
pip install -r requirements.txt
# Run dashboard
streamlit run app/main.py
π Repository Structure
climate-challenge-week0/
βββ app/ # Streamlit dashboard
β βββ main.py
β βββ utils.py
βββ data/ # Cleaned CSV files
βββ src/notebooks/ # EDA notebooks
β βββ ethiopia_eda.ipynb
β βββ compare_countries.ipynb
β βββ all_countries_eda.ipynb
βββ plots/ # Generated visualizations
βββ scripts/ # Utility scripts
βββ .github/workflows/ # CI/CD pipeline
βββ requirements.txt
βββ README.md
βββ LICENSE
π¬ Analysis Performed
Task 1: Git & Environment Setup
-- GitHub repository wi β¦