buffer_wedge {buffeRs} | R Documentation |
Creates a wedge polygon
buffer_wedge(point, radius, degree, degree_width)
point |
Centre point of the buffer, must equal to true in: |
radius |
Radius of the buffer (numeric) |
degree |
The angle at which the wedge is centred (clockwise). Must be between 0 and 360 (numeric) |
degree_width |
Width of the wedge. Must be between 0 and 360 (numeric) |
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_wedge(example_point, 200, 90, 45) -> wedge_shaped_buffer
plot(wedge_shaped_buffer)