Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Resources
=========

* EPA AQI: Technical Assistance Document for the Reporting of Daily Air
Quality – the Air Quality Index (AQI) December 2013) found at http://www.epa.gov/airnow/aqi-technical-assistance-document-dec2013.pdf
Quality – the Air Quality Index (AQI) December 2018) found at https://www.airnow.gov/sites/default/files/2020-05/aqi-technical-assistance-document-sept2018.pdf
* National Ambient Air Quality Standards for Particulate Matter found at http://www.gpo.gov/fdsys/pkg/FR-2013-01-15/pdf/2012-30946.pdf
* MEP AQI:

Expand Down
10 changes: 5 additions & 5 deletions aqi/algos/epa.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ class AQI(PiecewiseAQI):
(401, 500)],
'bp': {
POLLUTANT_O3_8H: [
(Decimal('0.000'), Decimal('0.059')),
(Decimal('0.060'), Decimal('0.075')),
(Decimal('0.076'), Decimal('0.095')),
(Decimal('0.096'), Decimal('0.115')),
(Decimal('0.116'), Decimal('0.374')),
(Decimal('0.000'), Decimal('0.054')),
(Decimal('0.055'), Decimal('0.070')),
(Decimal('0.071'), Decimal('0.085')),
(Decimal('0.086'), Decimal('0.105')),
(Decimal('0.106'), Decimal('0.200')),
Comment on lines +27 to +31
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

],
POLLUTANT_O3_1H: [
(0, 0),
Expand Down