ST_ClosestPoint (선, 점)이 선과 교차하지 않습니다
PostGIS 데이터베이스 (Postgres 8.4.1의 PostGIS 1.5)에는 도로 (선 스트링으로 구성)와 충돌 (포인트로 구성)의 두 가지 테이블이 있습니다. 각 충돌을 도로와 연관 시키려고했지만 다음 작업을 수행하는 데 문제가 있습니다. SELECT ST_ClosestPoint(road.the_geom, crash.the_geom), ST_Intersects(ST_ClosestPoint(road.the_geom, crash.the_geom), road.the_geom) ST_Distance(ST_ClosestPoint(road.the_geom, crash.the_geom), crash.the_geom) AS distance FROM --Table crashes is already in SRID 4326 (SELECT the_geom FROM …