Remove AI analysis and rank cities by recent DEB performance

This commit is contained in:
2569718930@qq.com
2026-04-05 07:13:00 +08:00
parent 343c5c9c2f
commit a5b5711863
17 changed files with 124 additions and 905 deletions
+5
View File
@@ -6,6 +6,11 @@ export interface CityListItem {
lat: number;
lon: number;
risk_level: RiskLevel;
deb_recent_tier?: RiskLevel;
deb_recent_hit_rate?: number | null;
deb_recent_sample_count?: number;
deb_recent_mae?: number | null;
deb_recent_last_date?: string | null;
risk_emoji?: string;
airport: string;
icao: string;
+8 -8
View File
@@ -26,10 +26,10 @@ const MESSAGES: Record<Locale, Record<string, string>> = {
"sidebar.currentTemp": "当前 {temp}",
"sidebar.peakTempAt": "峰值 {temp} @ {time}",
"sidebar.peakAt": "峰值 @ {time}",
"sidebar.group.high": "高风险",
"sidebar.group.medium": "中风险",
"sidebar.group.low": "低风险",
"sidebar.group.other": "其他",
"sidebar.group.high": "近期强势",
"sidebar.group.medium": "近期一般",
"sidebar.group.low": "近期偏弱",
"sidebar.group.other": "样本不足",
"dashboard.loading": "正在同步站点观测与结算源,请稍候...",
@@ -189,10 +189,10 @@ const MESSAGES: Record<Locale, Record<string, string>> = {
"sidebar.currentTemp": "Current {temp}",
"sidebar.peakTempAt": "Peak {temp} @ {time}",
"sidebar.peakAt": "Peak @ {time}",
"sidebar.group.high": "High Risk",
"sidebar.group.medium": "Medium Risk",
"sidebar.group.low": "Low Risk",
"sidebar.group.other": "Others",
"sidebar.group.high": "Recent Strong",
"sidebar.group.medium": "Recent Mixed",
"sidebar.group.low": "Recent Weak",
"sidebar.group.other": "Low Sample",
"dashboard.loading":
"Synchronizing station observations and settlement feeds...",