Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Update PM2.5 and PM10 threshold values in app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSzewczuk committed Oct 27, 2024
1 parent 6e11e49 commit 7eaa2a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
DATA_URL = os.getenv("DATA_URL")

THRESHOLDS = {
"PM2.5": [30, 100, 150], # µg/m3
"PM10": [50, 100, 150],
"PM2.5": [30, 80, 150], # µg/m3
"PM10": [50, 90, 150],
"PM1": [30, 60, 90]
}

Expand Down

0 comments on commit 7eaa2a1

Please sign in to comment.