These Jupyter Notebooks enable the calculation and visualization of global wildfire smoke-related annual deaths. The analysis is configured to compare RCP 8.5 projections for 2050 with modeled estimates from 2000, though the repository contains data for examining various scenarios and time horizons.
- Smoke Data: Provided by Maria Val Martin, as published in this paper
- Population Data: Sourced from UCAR's Spatial Population Database at 1/8 degree resolution using SSP2 scenario
- Mortality Data: Country-level baseline mortality data from the World Bank (2023)
The analysis employs the equation from Val Martin et al. (2018) to calculate smoke-related deaths. At each geographic location:
deaths = baseline_mortality * (1-e^(-1.1 * (pm25_concentration))) * population
The constant 1.1 is used following Burnett et al. (2012).
Only one CDO command is used to preprocess the data, making the population data fit the grid of the smoke data:
cdo remapsum,r288x192 ssp2_2050.nc ssp2_2050_matching.nc
This repository contains two primary notebooks:
country_process.ipynb
: Maps country-specific data from the Excel file onto the same grid as the smoke datasmoke_layer.ipynb
: Computes smoke deaths at each grid cell, produces visualizations, and maps spatial data to countries
To compute smoke-related deaths:
- Create a
data
directory and add all required data files - First run
country_process.ipynb
, which maps country-specific data onto the smoke data grid - Then run
smoke_layer.ipynb
, which:- Computes smoke deaths at each grid cell
- Produces visualizations
- Maps spatial data to countries
- Generates CSV output files
- Val Martin, M., et al. (2018). Wildfire impacts on surface smoke and air quality over global scales
- Burnett, R. T., et al. (2012). An integrated risk function for estimating the global burden of disease attributable to ambient fine particulate matter exposure
- World Bank Mortality Data
- UCAR Spatial Population Database