Merge pull request 'Clarify that PAQI is the combination of pollen and air quality index' (#1) from clarify-PAQI into main

Reviewed-on: #1
This commit is contained in:
Admar Schoonen 2022-02-12 17:02:26 +01:00
commit eb46867f5b
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,