Busan 机场观测面板:METAR 数据兜底展示

问题:AMOS 仅支持仁川 RKSI,釜山 RKPK 无法获取跑道级数据
解决:AmosRunwayPanel 新增 airportCurrent 回退模式

- 有 AMOS 数据时:展示完整跑道卡片网格(首尔/仁川)
- 无 AMOS 时:展示单张机场观测卡片(釜山/所有其他机场)
  包含:温度、风向风速、气压 QNH、能见度
  标注数据来源(METAR/AMOS)和是否过旧
- AirportCurrentConditions 类型新增 pressure_hpa 字段

这样首尔有完整的 4 对跑道数据,釜山至少展示机场官方观测值
This commit is contained in:
2569718930@qq.com
2026-05-10 18:58:42 +08:00
parent e1d21c6ce3
commit 3f351ac60c
3 changed files with 63 additions and 7 deletions
+1
View File
@@ -102,6 +102,7 @@ export interface AirportCurrentConditions {
is_official?: boolean;
is_settlement_anchor?: boolean;
stale_for_today?: boolean;
pressure_hpa?: number | null;
last_observation_local_date?: string | null;
current_local_date?: string | null;
}