buffer_circle {buffeRs} | R Documentation |
Creates a circular buffer. Wrapper around sf::st_buffer()
buffer_circle(point, radius, ...)
point |
Cente point of the buffer, must equal to true in: |
radius |
Radius of the buffer (numeric) |
... |
Further arguments to give to |
An object of class sfc_POLYGON
example_point = sf::st_point(c(1,2))
example_point = sf::st_sfc(example_point)
example_point = sf::st_sf(example_point)
buffer_circle(example_point, 200) -> circular_buffer
plot(circular_buffer)