line_segmentize | R Documentation |
n
equal length LineStringsGiven a LineString, segment it into n
equal length LineStrings.
The n
LineStrings are provided as a MultiLineString
which can
be expanded using expand_geoms()
and consequently flattened
using flatten_geoms()
if desired.
line_segmentize(x, n)
x |
and object of class |
n |
an integer vector determining the number of equal length LineStrings to create |
A vector of class rs_MULTILINESTRING
x <- geom_linestring(1:10, runif(10, -1, 1))
segs <- line_segmentize(x, 3)
flatten_geoms(
expand_geoms(segs)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.