From 041c9fb4fa345deb78f9495ba97e3320945abfe0 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Wed, 13 May 2026 20:20:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=92=A4=E5=9B=9E=20METAR=20=E5=85=9C=E5=BA=95?= =?UTF-8?q?=EF=BC=8C=E6=94=B9=E8=B5=B0=20CWA=2010min=20=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=EF=BC=88=E9=9C=80=E9=85=8D=20API=20key?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- monitoring-web/src/main.rs | 2 +- src/data_collection/weather_sources.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring-web/src/main.rs b/monitoring-web/src/main.rs index 09d5b873..2e97d7c7 100644 --- a/monitoring-web/src/main.rs +++ b/monitoring-web/src/main.rs @@ -29,7 +29,7 @@ const CITIES: &[(&str, &str, &str, &str, i32, f64, &str)] = &[ ("paris", "巴黎", "LFPB", "Le Bourget", 2, 3.0, "CEST"), ("hong kong","香港","HKO","Observatory",8,1.5,"HKT"), ("lau fau shan","流浮山","LFS","Lau Fau Shan",8,1.5,"HKT"), - ("taipei", "台北", "RCSS", "Songshan", 8, 1.5, "TST"), + ("taipei", "台北", "466920", "Songshan", 8, 1.5, "TST"), ]; // ── app state ── diff --git a/src/data_collection/weather_sources.py b/src/data_collection/weather_sources.py index 9960f092..1b0783a7 100644 --- a/src/data_collection/weather_sources.py +++ b/src/data_collection/weather_sources.py @@ -856,7 +856,7 @@ class WeatherDataCollector(OpenMeteoCacheMixin, SettlementSourceMixin, MetarSour if ( city_lower not in self.CITY_METAR_CLUSTERS or "mgm_nearby" in results - or settlement_source in {"hko"} + or settlement_source in {"hko", "cwa"} ): return cluster_icaos = self.CITY_METAR_CLUSTERS[city_lower]