Logo Lanfrica

chidozinyakatira/african-econ-pipeline

Domain:

socioeconomic

Record type:

project
Creator:
chi
Host:
# african-econ-pipeline # 🌍 African Economic Intelligence Pipeline A production-style data engineering pipeline that ingests World Bank economic indicators for 48 African countries, transforms them through a layered data model, orchestrates runs with Apache Airflow, and visualises insights in Power BI. --- ## πŸ“ Architecture ``` World Bank API β”‚ β–Ό Python (Google Colab) - Fetches 8 indicators Γ— 48 countries Γ— 24 years - Cleans, parses, and loads to BigQuery β”‚ β–Ό Google BigQuery african_economics_raw.world_bank_indicators β”‚ β–Ό dbt Cloud β”œβ”€β”€ staging: stg_world_bank_indicators (view) β”œβ”€β”€ marts: dim_countries (table) └── marts: fct_economic_indicators (table) β”‚ β–Ό Apache Airflow (Docker) - Schedules weekly pipeline runs - DAG: ingest β†’ dbt staging β†’ dbt marts β”‚ β–Ό Power BI - Continental Overview (Page 1) - Country Deepdive (Page 2) ``` --- ## πŸ“Š Dashboard The Power BI dashboard has two pages: **Page 1 β€” Continental Overview** - KPI cards: 48 countries tracked, average GDP growth, largest economy, fastest growing economy - Africa map coloured by GDP size - Top 10 economies bar chart - Year slicer (2000–2023) **Page 2 β€” Country Deepdive** - Country slicer β€” select any of 48 countries - KPI cards: GDP per capita, inflation rate, unemployment rate, trade % of GDP - GDP growth rate over time (line chart) - FDI net inflows over time (line chart) - Inflation over time (line chart) - Top 10 economies by GDP (bar chart) Dashboard files are in the `/dashboard` folder (PDF and PowerPoint). --- ## πŸ—‚οΈ Repository Structure ``` african-econ-pipeline/ β”œβ”€β”€ ingestion/ β”‚ └── african_econ_pipeline_m1.py # World Bank API β†’ BigQuery β”œβ”€β”€ dbt/ β”‚ └── models/ β”‚ β”œβ”€β”€ staging/ β”‚ β”‚ β”œβ”€β”€ sources.yml β”‚ β”‚ └── stg_world_bank_indicators.sql β”‚ └── marts/ β”‚ β”œβ”€β”€ dim_countries.sql β”‚ └── fct_economic_indicators.sql β”œβ”€β”€ dags/ β”‚ └── african_econ_dag.py # Airflow DAG β”œβ”€β”€ dashboard/ β”‚ β”œβ”€β”€ African_Economic_Intelligence.pdf β”‚ └── Afri …