Global Air Pollution And Quality Index Dataset
Tracking global air quality and pollution trends over time.
@kaggle.rehan497_air_polltuion
Tracking global air quality and pollution trends over time.
@kaggle.rehan497_air_polltuion
This dataset provides a global view of air quality across various countries and cities, revealing not only the overall Air Quality Index (AQI) but also the individual impact of key pollutants. Carbon Monoxide (CO), Ozone (O₃), Nitrogen Dioxide (NO₂), and fine particulate matter (PM2.5). Each record identifies a specific city and country, uncovering patterns that highlight regions with clean air and those where pollution poses serious health risks.
Designed for both broad environmental insights and detailed pollutant-level analysis, this dataset serves as a valuable resource for researchers, environmental scientists, urban planners, and public health experts. It enables users to identify high-risk zones, monitor pollution trends, and support data-driven decisions aimed at improving air quality and protecting global health..
CREATE TABLE global_air_pollution_dataset (
"country" VARCHAR,
"city" VARCHAR,
"aqi_value" BIGINT,
"aqi_category" VARCHAR,
"co_aqi_value" BIGINT,
"co_aqi_category" VARCHAR,
"ozone_aqi_value" BIGINT,
"ozone_aqi_category" VARCHAR,
"no2_aqi_value" BIGINT,
"no2_aqi_category" VARCHAR,
"pm2_5_aqi_value" BIGINT,
"pm2_5_aqi_category" VARCHAR
);Anyone who has the link will be able to view this.