Add labels to a map
Plots labels, that is a textual (rather than color) representation of values, on top an existing plot (map).
## S4 method for signature 'RasterLayer' text(x, labels, digits=0, fun=NULL, halo=FALSE, ...) ## S4 method for signature 'RasterStackBrick' text(x, labels, digits=0, fun=NULL, halo=FALSE, ...) ## S4 method for signature 'SpatialPolygons' text(x, labels, halo=FALSE, ...) ## S4 method for signature 'SpatialPoints' text(x, labels, halo=FALSE, ...)
x |
Raster*, SpatialPoints* or SpatialPolygons* object |
labels |
character. Optional. Vector of labels with |
digits |
integer. how many digits should be used? |
fun |
function to subset the values plotted (as in |
halo |
logical. If |
... |
additional arguments to pass to graphics function |
r <- raster(nrows=4, ncols=4) r <- setValues(r, 1:ncell(r)) plot(r) text(r) plot(r) text(r, halo=TRUE, hc='blue', col='white', hw=0.2) plot(r, col=bpy.colors(5)) text(r, fun=function(x){x<5 | x>12}, col=c('red', 'white'), vfont=c("sans serif", "bold"), cex=2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.