line_interpolate_point: Interpolate a Point on a LineString

View source: R/extendr-wrappers.R

line_interpolate_pointR Documentation

Interpolate a Point on a LineString

Description

Finds the point that lies a given fraction along a line.

Usage

line_interpolate_point(x, fraction)

Arguments

x

an object of class rs_LINESTRING

fraction

a numeric vector of length 1 or the same length as x. Must be a value between 0 and 1 inclusive.

Value

An object of class rs_POINT

Examples

x <- geom_linestring(c(-1, 0, 0), c(0, 0, 1))
line_interpolate_point(x, 0.5)

rsgeo documentation built on Sept. 9, 2023, 1:07 a.m.