fix(B04): 노선 CSV의 EPSG 라벨 대신 사업지 실좌표계로 화면 좌표를 만든다
상세 배수유역 폴리곤이 지도에 안 그려졌다. 노선 CSV `crs_epsg` 열(라벨 5179)을 좌표계로 써서, 사업지 좌표계(.prj EPSG:5176)로 계산된 격자 산출물을 잘못 역투영한 탓이다 — 유역이 lon 119.79 / lat 23.08(대만 남쪽 바다)로 나가 화면 밖이었다. `load_design_route()`는 노선을 .prj 좌표계로 재투영하며 `crs_input`만 갱신하고 `epsg` 라벨은 CSV 값 그대로 둔다(2026-08-31 확정). 그 라벨을 좌표계로 쓰던 자리를 모두 `crs_input`(= .prj 좌표계)으로 바꿨다. - common_util_drainage_context: DrainageContext.epsg(int) → crs(str, pyproj 입력). 상세 배수유역·관 지점 응답 좌표가 노선 위로 돌아온다. - B07_DesignDetail_Router_Support: context.crs 그대로 사용. - SheetSurface.build_sheet_surface_from_route: load_design_route로 노선을 읽어 도엽 서피스를 라이다 지표면과 같은 좌표계에 만든다(기존엔 5179 격자로 만들어져 라이다 DTM과 다른 프레임에 놓였다). LAS 없는 WF1 경로는 라벨·좌표가 한 벌이라 그대로. - Router_Inflow._resolve_epsg: 격자 산출물과 같은 .prj 좌표계로 역투영. 검증: tmp/tests/test_drainage_crs.py 신규(용화 샘플 회귀) + tmp/tests 전체 37 passed. build_detail 실행 결과 유역 11개 폴리곤이 lon 129.0947~129.0988 / lat 36.8107~36.8127 (노선 위)로 나온다 — 수정 전 같은 좌표는 119.7872 / 23.0817이었다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -25,10 +25,7 @@ from B04_PreProcess.B04_PreProcess_Engine_Watershed_Export import STAGES, draina
|
||||
from B04_PreProcess.B04_PreProcess_Engine_Watershed_Flow import polygonize_labels
|
||||
from B04_PreProcess.B04_PreProcess_Engine_Watershed_Grid import GridSpec
|
||||
from B05_Profile.B05_Profile_Repository import get_surface_crs_epsg
|
||||
from common_util.common_util_route_geometry import (
|
||||
find_planned_route_file,
|
||||
read_planned_route,
|
||||
)
|
||||
from common_util.common_util_route_geometry import load_design_route
|
||||
from common_util.common_util_storage import resolve_stored_project_path
|
||||
from config.config_db import get_db_pool
|
||||
|
||||
@@ -74,15 +71,25 @@ def _load_routing(stored_path: str) -> dict[str, Any] | None:
|
||||
|
||||
|
||||
async def _resolve_epsg(project_id: UUID, stored_path: str) -> str:
|
||||
"""분석에 쓰인 좌표계를 그대로 되찾는다(노선 파일이 명시하면 그 값 우선)."""
|
||||
"""분석에 쓰인 좌표계를 그대로 되찾는다.
|
||||
|
||||
격자 산출물은 `load_design_route()`가 맞춘 **사업지(.prj) 좌표계**에 있다. 노선 CSV의
|
||||
`crs_epsg` 열은 표시용 라벨이라 그 값을 쓰면 좌표가 딴 곳으로 간다
|
||||
(2026-09-01 실측: 라벨 5179, 실제 5176 — 유입 폴리곤이 1,500km 밖에 찍혔다).
|
||||
"""
|
||||
from B04_PreProcess.B04_PreProcess_Engine_Extent import project_epsg_from_prj
|
||||
|
||||
project_root = Path(resolve_stored_project_path(stored_path))
|
||||
planned = load_design_route(project_root)
|
||||
if planned is not None and planned.crs_input:
|
||||
return planned.crs_input
|
||||
prj_crs = project_epsg_from_prj(project_root)
|
||||
if prj_crs:
|
||||
return prj_crs
|
||||
pool = get_db_pool()
|
||||
async with pool.acquire() as connection:
|
||||
epsg = await get_surface_crs_epsg(connection, project_id, 0)
|
||||
project_root = Path(resolve_stored_project_path(stored_path))
|
||||
route_file = find_planned_route_file(project_root / "B03_FileInput" / "input")
|
||||
planned = read_planned_route(route_file) if route_file else None
|
||||
source = (planned.epsg if planned else None) or epsg or 5186
|
||||
return f"EPSG:{source}"
|
||||
return f"EPSG:{epsg or 5186}"
|
||||
|
||||
|
||||
def _collect_inflow(
|
||||
|
||||
Reference in New Issue
Block a user