ST_3DLineInterpolatePoint — Returns a point interpolated along a 3D line at a fractional location.
geometry ST_LineInterpolatePoint(
geometry a_linestring, float8 a_fraction)
;
라인을 따라 보간된 포인트를 반환합니다. 첫 번째 인수는 라인스트링이어야 합니다. 두 번째 인수는 0과 1 사이의 Float8 데이터형으로 라인스트링의 전체 길이에서 포인트가 위치해야 하는 비율을 의미합니다.
ST_LineInterpolatePoint computes points in 2D and then interpolates the values for Z and M, while this function computes points in 3D and only interpolates the M value. |
2.0.0 버전부터 사용할 수 있습니다.
This function supports 3d and will not drop the z-index.