ST_3DLineInterpolatePoint — Returns a point interpolated along a 3D line at a fractional location.
geometria ST_LineInterpolatePoint(
geometria a_linestring, float8 a_fraction)
;
Retorna um ponto interpolar com uma linha. Primeiro argumento deve ser uma LINESTRING. Segundo argumento é um float8 entre 0 e 1 representando fração do comprimento total da linestring do ponto tem que ser localizado.
![]() | |
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. |
Disponibilidade: 2.0.0
This function supports 3d and will not drop the z-index.