今日实测最高改为从 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:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user