st_split {lwgeom} | R Documentation |
Return a collection of geometries resulting by splitting a geometry
Description
Return a collection of geometries resulting by splitting a geometry
Usage
st_split(x, y)
Arguments
x |
object with geometries to be splitted |
y |
object split with (blade); if |
Value
object of the same class as x
Examples
library(sf)
l = st_as_sfc('MULTILINESTRING((10 10, 190 190), (15 15, 30 30, 100 90))')
pt = st_sfc(st_point(c(30,30)))
st_split(l, pt)
[Package lwgeom version 0.2-14 Index]