Name

ST_InterpolatePoint — 입력 포인트에 가까운 포인트에서 도형의 척도 차원(M 차원)의 값을 반환합니다.

Synopsis

float8 ST_InterpolatePoint(geometry linear_geom_with_measure, geometry point);

설명

Returns an interpolated measure value of a linear measured geometry at the location closest to the given point.

[Note]

Use this function only for linear geometries with an M component

2.0.0 버전부터 사용할 수 있습니다.

This function supports 3d and will not drop the z-index.

예시

SELECT ST_InterpolatePoint('LINESTRING M (0 0 0, 10 0 20)', 'POINT(5 5)');
 ---------------------
         10