Implementation of the generic as.raster
function to create a "raster" (small r) object. Such objects can be used for plotting with the rasterImage
function. NOT TO BE CONFUSED with the Raster* (big R) objects defined by the 'raster' package!
# S4 method for SpatRaster
as.raster(x, maxcell=500000, col)
'raster' object
SpatRaster
positive integer. Maximum number of cells to use for the plot
vector of colors. Default is col=rev(terrain.colors(255)))
r <- rast(ncols=3, nrows=3)
values(r) <- 1:ncell(r)
as.raster(r)
Run the code above in your browser using DataLab