sf_boxes {sfheaders} | R Documentation |
sf boxes
Description
returns the bounding box of each geometry
Usage
sf_boxes(obj)
Arguments
obj |
sf, sfc or sfg object |
Examples
df <- data.frame(
id1 = c(1,1,1,1,1,1,1,1,2,2,2,2)
, id2 = c(1,1,1,1,2,2,2,2,1,1,1,1)
, x = c(0,0,1,1,1,1,2,2,3,4,4,3)
, y = c(0,1,1,0,1,2,2,1,3,3,4,4)
)
sf_line <- sfheaders::sf_linestring(
obj = df
, x = "x"
, y = "y"
, linestring_id = "id1"
)
sf_boxes( sf_line )
[Package sfheaders version 0.4.4 Index]