气温走势图:多模型逐小时预测曲线 + API 新增 models_hourly 字段

city_payloads 新增 models_hourly 包含 per-model hourly_forecasts。LiveTemperatureThresholdChart 渲染多模型曲线替代点预测卡片。CityDetail 类型新增 models_hourly。
This commit is contained in:
2569718930@qq.com
2026-05-25 05:58:15 +08:00
parent e478a1f08d
commit ce667ba1b6
4 changed files with 80 additions and 8 deletions
+4
View File
@@ -844,6 +844,10 @@ export interface CityDetail {
times?: string[];
temps?: Array<number | null>;
};
models_hourly?: {
times?: string[];
curves?: Record<string, Array<number | null>>;
};
hourly_next_48h?: HourlySeries;
metar_recent_obs?: Array<{
time?: string;