7.10 Linear Referencing: See Also
7.10 Linear Referencing: See Also
1 Manual
243 / 315
UNION ALL
SELECT ST_GeomFromEWKT(LINESTRING(5 5 5, 10 10 10)) as the_geom ) as foo;
st_asewkt
--------GEOMETRYCOLLECTION(POINT(-2 3 1),LINESTRING(5 5 5,10 10 10),POLYGON((-7 4.2 2,-7.1 4.2
3,-7.1 4.3 2,-7 4.2 2)))
See Also
ST_Collect
Synopsis
geometry ST_Line_Interpolate_Point(geometry a_linestring, float a_fraction);
Description
Returns a point interpolated along a line. First argument must be a LINESTRING. Second argument is a float8 between 0 and 1
representing fraction of total linestring length the point has to be located.
See ST_Line_Locate_Point for computing the line location nearest to a Point.
Note
Since release 1.1.1 this function also interpolates M and Z values (when present), while prior releases set them to 0.0.
Examples
See Also
ST_AsText,ST_AsEWKT,ST_Length, ST_Line_Locate_Point