Clarify that PAQI is the combination of pollen and air quality index

This commit is contained in:
Admar Schoonen 2022-02-12 16:18:30 +01:00
parent 7b496887c2
commit 85d5d34a65
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ struct Forecast {
#[serde(rename = "O3", skip_serializing_if = "Option::is_none")] #[serde(rename = "O3", skip_serializing_if = "Option::is_none")]
o3: Option<u8>, o3: Option<u8>,
/// The FIXME air quality index (when asked for). /// The combination of pollen + air quality index (when asked for).
#[serde(rename = "PAQI", skip_serializing_if = "Option::is_none")] #[serde(rename = "PAQI", skip_serializing_if = "Option::is_none")]
paqi: Option<u8>, paqi: Option<u8>,
@ -94,7 +94,7 @@ enum Metric {
NO2, NO2,
/// The O₃ concentration. /// The O₃ concentration.
O3, O3,
/// The FIXME air quality index. /// The combination of pollen + air quality index.
PAQI, PAQI,
/// The particulate matter in the air. /// The particulate matter in the air.
PM10, PM10,