Build an ID raster matching the extent of a vector dataset
Arguments
- polygons
terra::SpatVector object. The polygons to be aggregated to
- template_raster
(optional) terra::SpatRaster object. The template raster should contain and have the same CRS as the polygons. If template raster is
NULL
, the default, uses the default world template raster frommake_world_template_raster()
.
Value
ID raster. A terra::SpatRaster object that minimally encloses the polygons
Details
The ID raster will be used to build the aggregation table. Each pixel has a unique integer value from 1 to the number of pixels in the ID raster.
Examples
if (FALSE) { # \dontrun{
polygons <- sf::st_read(system.file('extdata/Benin_communes.gpkg', package = 'mbg'))
build_id_raster(polygons)
} # }