zb_quadrat {zonebuilder} | R Documentation |
Divide a region into quadrats
Description
Divide a region into quadrats
Usage
zb_quadrat(x, ncol, nrow = NULL, intersection = TRUE)
Arguments
x |
x |
ncol |
ncol |
nrow |
nrow |
intersection |
intersection |
Value
An sf object
Examples
x = london_a()
c = sf::st_centroid(london_a())
plot(zb_quadrat(x, ncol = 2), col = 2:5)
plot(c, add = TRUE, col = "white")
plot(zb_quadrat(x, ncol = 3))
plot(zb_quadrat(x, ncol = 4))
plot(zb_quadrat(x, ncol = 4, intersection = FALSE))
[Package zonebuilder version 0.0.2 Index]