台北走 METAR 集群兜底:ICAO 从 CWA 站号 466920 改为 RCSS

- weather_sources: 放开 cwa settlement_source 的 METAR 拦截
- Rust: ICAO 改用 RCSS,匹配 METAR 集群数据
- 原因: CWA_OPEN_DATA_AUTH 未配置,CWA 接口静默失败致 airport_obs_log 无数据
This commit is contained in:
2569718930@qq.com
2026-05-13 20:17:12 +08:00
parent 8dd212f0af
commit 1d3ccbb7cf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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", "cwa"}
or settlement_source in {"hko"}
):
return
cluster_icaos = self.CITY_METAR_CLUSTERS[city_lower]