make_grid
creates a sf grid of polygons. The spatial
reference is taken from the spatial object.
make_grid(spobj, width, height = width, crs = 3857)
A grid of polygons class 'sf'
A spatial object of class sp or sf.
Width of grid cell. It is recommended to use projected values.
Height of grid cell.
coordinate reference system in numeric format from http://spatialreference.org/ to transform/project spatial data using sf::st_transform. The default value is 3857, Pseudo Mercator
if (FALSE) {
data(net)
grid <- make_grid(net, width = 0.5/102.47) #500 mts
plot(grid, axes = TRUE) #class sf
# make grid now returns warnings for crs with form +init...
#grid <- make_grid(net, width = 0.5/102.47) #500 mts
}
Run the code above in your browser using DataLab