Use spplot to plot a Raster* or other object
One of the advantages of the wrapper function for Raster* objects is the additional maxpixels
argument to sample large objects for faster drawing.
There are also added spplot methods for Spatial objects that have no data.frame and for SpatVector (terra package)
## S4 method for signature 'Raster' spplot(obj, ..., maxpixels=50000, as.table=TRUE, zlim)
obj |
Raster* object |
... |
|
maxpixels |
integer. Number of pixels to sample from each layer of large Raster objects |
as.table |
If |
zlim |
Vector of two elements indicating the minimum and maximum values to be mapped (values outside that ranage are set to these limits) |
The rasterVis package has more advanced plotting methods for Raster objects
r <- raster(system.file("external/test.grd", package="raster")) s <- stack(r, r*2) names(s) <- c('meuse', 'meuse x 2') spplot(s) pts <- data.frame(sampleRandom(r, 10, xy=TRUE)) coordinates(pts) <- ~ x + y spplot(s, scales = list(draw = TRUE), xlab = "easting", ylab = "northing", col.regions = rainbow(99, start=.1), names.attr=c('original', 'times two'), sp.layout = list("sp.points", pts, pch=20, cex=2, col='black'), par.settings = list(fontsize = list(text = 12)), at = seq(0, 4000, 500))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.