ST_LineInterpolatePoints — 返回沿线以指定分数间隔插值的点。
geometry ST_LineInterpolatePoints(
geometry a_linestring, float8 a_fraction, boolean repeat)
;
geography ST_LineInterpolatePoints(
geography a_linestring, float8 a_fraction, boolean use_spheroid = true, boolean repeat = true)
;
返回沿线以指定分数间隔插值的一个或多个点。第一个参数必须是 LINESTRING。第二个参数是一个介于 0 和 1 之间的 float8,表示点之间的间隔,以线长度的分数表示。如果第三个参数为 false,则最多构造一个点(这等效于ST_LineInterpolatePoint)。
如果结果有零个或一个点,则返回为 POINT。 如果有两个或多个点,则返回为 MULTIPOINT。
可用性:2.5.0
此函数支持 3D,并且不会删除 z 索引。
此函数支持 M 坐标。
--Return points each 20% along a 2D line SELECT ST_AsText(ST_LineInterpolatePoints('LINESTRING(25 50, 100 125, 150 190)', 0.20)) ---------------- MULTIPOINT((51.5974135047432 76.5974135047432),(78.1948270094864 103.194827009486),(104.132163186446 130.37181214238),(127.066081593223 160.18590607119),(150 190))