Air Pollution in Syria#
Air Quality and, in particular, levels of fine particulate matter (e.g., PM2.5 and PM 10 ) over cities can be a proxy for assessment of economic activity and density of city populations (Yailymova et.al., 2023). NO2 along with other NOx reacts with other chemicals in the air to form both particulate matter and ozone. A 2020 study of cities in Sub-Saharan Africa finds that NO2 provides a useful, albeit “noisy”, real-time proxy measure of how COVID-19 has affected economic activity. Studies also found a clear relationship between NO2 levels and industrial production growth (Deb, et.al., 2020).
Data#
The data for this was obtained from the Copernicus Satellite Imagery available through Google Earth Engine. We clipped the dataset to get it at a monthly level for each admin 2 region. Nitrogen oxides (NO2 and NO) are important trace gases in the Earth’s atmosphere, present in both the troposphere and the stratosphere. They enter the atmosphere as a result of anthropogenic activities (notably fossil fuel combustion and biomass burning) and natural processes (wildfires, lightning, and microbiological processes in soils). Here, NO2 is used to represent concentrations of collective nitrogen oxides because during daytime, i.e. in the presence of sunlight, a photochemical cycle involving ozone (O3) converts NO into NO2 and vice versa on a timescale of minutes.
The total vertical column of NO2 is calculated by taking the slant column density (SCD) of NO2, which is the amount of NO2 measured along the line of sight of the satellite instrument, and dividing it by the air mass factor (AMF), which corrects the slant column density for the effect of the path length and the scattering and absorption properties of the atmosphere. The Total Vertical Column Density (VCD) is typically given in molecules per square centimeter (molec/cm²).
References#
Deb, P., Furceri, D., Ostry, J. D., & Tawk, N. (2020). The economic effects of COVID-19 containment measures.
Yailymova, H., Kolotii, A., Kussul, N., & Shelestov, A. (2023, July). Air quality as proxy for assesment of economic activity. In IEEE EUROCON 2023-20th International Conference on Smart Technologies (pp. 89-92). IEEE.
Temporal Pollution Trends#
Now let’s create interactive visualizations using Altair that allow for zooming, panning, and hovering over data points.
Interactive Features:#
Zoom/Pan: Click and drag to zoom into specific time periods, use scroll wheel to zoom, double-click to reset
Legend: Click on legend items to hide/show specific regions (lines will become faded when deselected)
Hover: Hover over data points to see detailed values
Multiple Selection: Hold Shift and click legend items to select/deselect multiple regions
Temporal Maps#
Now let’s create maps that show how air pollution levels change over time across different regions.
# Import the new mapping functions
import importlib
importlib.reload(airpollution_visuals)
from airpollution_visuals import *
# Import the updated mapping functions with shared legend
import importlib
importlib.reload(airpollution_visuals)
from airpollution_visuals import create_temporal_maps
# Create yearly maps with single common legend and consistent color scale
yearly_maps = create_temporal_maps(
dataframe=monthly_no2_adm3,
boundaries_gdf=syria_adm3,
join_column="NAME_EN",
width=250,
height=150,
color_scheme="blues"
)
yearly_maps.show()
# Create monthly maps for Damascus admin3 regions with custom title
monthly_maps_2023 = create_temporal_maps(
dataframe=monthly_no2_adm3,
boundaries_gdf=syria_adm3[syria_adm3['ADM1_EN']=='Damascus'],
join_column="NAME_EN",
title="NO2 Pollution in Damascus Districts", # Custom title
temporal_grouping="year",
width=200,
height=200
)
monthly_maps_2023.show()