sf_boxes: sf boxes

View source: R/sfc.R

sf_boxesR 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 )


sfheaders documentation built on July 9, 2023, 7:41 p.m.