今日实测最高改为从 airport_obs_log 取值,延长保留至 24h

不再依赖 city_weather.current.max_so_far(可能来自 METAR 等非机场源),
直接从 airport_obs_log 的机场站点观测历史中计算当日最高温及时间。
obs_log 保留期从 2h 延长到 24h 以支撑跨天查询。

Tested: pytest 176 passed, ruff check 通过
This commit is contained in:
2569718930@qq.com
2026-05-12 21:12:53 +08:00
parent c8eed2f315
commit b1d0e41fd4
2 changed files with 29 additions and 3 deletions
+1 -1
View File
@@ -1861,7 +1861,7 @@ class DBManager:
temp_c, wind_kt, pressure_hpa, str(obs_time)),
)
conn.execute(
"DELETE FROM airport_obs_log WHERE created_at < datetime('now', '-2 hours')"
"DELETE FROM airport_obs_log WHERE created_at < datetime('now', '-24 hours')"
)
conn.commit()