Reading the US EPA Air Quality Index
This reference explains the US EPA Air Quality Index, which converts pollutant concentrations into a single 0-to-500 number with six colour-coded health categories. It lists each category from Good to Hazardous with its standard colour and health message, and includes a converter from PM2.5 or PM10 concentration to AQI using the official breakpoint tables.
How it works
AQI is piecewise-linear. Every pollutant has a table of breakpoints, each a band
[Clow, Chigh] of concentration mapped to a band [Ilow, Ihigh] of AQI. To convert
a concentration C, find the band containing it and interpolate:
AQI = (Ihigh - Ilow) / (Chigh - Clow) * (C - Clow) + Ilow
The result is rounded to a whole number and looked up in the category table. PM2.5 and PM10 have different breakpoints, so the same microgram concentration yields a different AQI for each. The PM2.5 thresholds here follow the 2024 EPA update.
Tips and notes
- The categories are: Good (0-50), Moderate (51-100), Unhealthy for Sensitive Groups (101-150), Unhealthy (151-200), Very Unhealthy (201-300) and Hazardous (301+).
- AQI uses 24-hour average concentrations for particulates; short spikes are smoothed out.
- The headline AQI for a location is the worst sub-index among all pollutants.
- Sensitive groups (children, older adults, and people with heart or lung conditions) should act one category earlier than the general public.