巴黎推送标明数据源:AEROWEB 实况或 AROME HD 临近预报

This commit is contained in:
2569718930@qq.com
2026-05-25 21:28:17 +08:00
parent 7a10f4b474
commit 0e81b974e7
2 changed files with 15 additions and 4 deletions
@@ -946,12 +946,14 @@ export function LiveTemperatureThresholdChart({
const isHKO = cityKey === 'hong kong' || cityKey === 'lau fau shan' || cityKey.includes('hongkong') || cityKey.includes('laufau');
const isTokyo = cityKey === 'tokyo';
const isSingapore = cityKey === 'singapore';
const isParis = cityKey === 'paris';
const isWeatherStation = !runwaySensorCities.has(cityKey)
&& !isHKO && !isTokyo && !isSingapore;
&& !isHKO && !isTokyo && !isSingapore && !isParis;
const runwayHeaderLabel = isHKO ? '参考站点 (1分钟)'
: isTokyo ? '机场气象站 (10分钟)'
: isSingapore ? '航站楼温度'
: isParis ? '官方机场观测 (15分钟)'
: isWeatherStation ? '气象站实测'
: '跑道实测 (1分钟)';
@@ -961,6 +963,7 @@ export function LiveTemperatureThresholdChart({
const runwayHighLabel = isHKO ? '参考站点'
: isTokyo ? '机场气象站'
: isSingapore ? '航站楼'
: isParis ? '官方机场观测'
: isWeatherStation ? '气象站'
: '跑道实测';