Cleaned up metars some, fixed humidity calculation

This commit is contained in:
2025-04-15 19:18:57 -04:00
parent 98be22b972
commit cdbaa131b3
4 changed files with 159 additions and 99 deletions

View File

@@ -353,7 +353,7 @@ impl Airport {
Some(
metars
.into_iter()
.map(|m| (m.station_id.clone(), m))
.map(|m| (m.icao.clone(), m))
.collect::<HashMap<_, _>>(),
),
)