From a7eb7068394474c8768015dcac951ba2cbd33b6b Mon Sep 17 00:00:00 2001 From: htlee Date: Wed, 1 Apr 2026 14:17:27 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20FLEET=20=ED=83=80=EC=9E=85=EC=97=90=20re?= =?UTF-8?q?solution=3D'1h'=20=EB=88=84=EB=9D=BD=20=E2=80=94=20=EB=9D=BC?= =?UTF-8?q?=EC=9D=B4=EB=B8=8C=20=ED=98=84=ED=99=A9=20API=EC=97=90=EC=84=9C?= =?UTF-8?q?=20=EC=84=A0=EB=8B=A8=20=EA=B7=B8=EB=A3=B9=20=EB=AF=B8=ED=91=9C?= =?UTF-8?q?=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FLEET 스냅샷에 resolution 필드를 설정하지 않아 DB default '6h'로 저장됨. LATEST_GROUPS_SQL이 resolution='1h' 필터를 사용하므로 FLEET 전부 누락. Co-Authored-By: Claude Opus 4.6 (1M context) --- prediction/algorithms/polygon_builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/prediction/algorithms/polygon_builder.py b/prediction/algorithms/polygon_builder.py index 78339fb..5d0be30 100644 --- a/prediction/algorithms/polygon_builder.py +++ b/prediction/algorithms/polygon_builder.py @@ -399,6 +399,7 @@ def build_all_group_snapshots( 'group_type': 'FLEET', 'group_key': str(company_id), 'group_label': group_label, + 'resolution': '1h', 'snapshot_time': now, 'polygon_wkt': polygon_wkt, 'center_wkt': center_wkt,