convert_to_index {aire.zmvm} | R Documentation |
Convert a pollutant concentration to its air quality category
Description
This functions converts a pollutant value in its original units into one of the 5 categories used by the Mexican government to communicate to the public how polluted the air currently is and its health risks.
Usage
convert_to_index(value, pollutant)
Arguments
value |
a numeric vector of values to convert to index |
pollutant |
type of pollutant. A vector of one or more of the following options:
|
Value
the IMECA value of the concentration indexed into 5 categories
BUENA - Good: 0-50 minimal health risk
REGULAR - Regular: 51-100 moderate health effects
MALA - Bad: 101-150 sensitive groups may suffer adverse heatlh effects
MUY MALA - Very Bad: 151-200 everyone can experience negative health effects
EXTREMADAMENTE MALA - Extremely Bad: > 200 serious health issues
See Also
Other convert functions:
convert_to_imeca()
Examples
convert_to_index(c(12.1, 215, 355), c("PM25", "PM10", "PM10"))