1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
\name{text}
\docType{methods}
\alias{text}
\alias{text,RasterLayer-method}
\alias{text,RasterStackBrick-method}
\alias{text,SpatialPoints-method}
\alias{text,SpatialPolygons-method}
\title{Add labels to a map}
\description{
Plots labels, that is a textual (rather than color) representation of values, on top an existing plot (map).
}
\usage{
\S4method{text}{RasterLayer}(x, labels, digits=0, fun=NULL, halo=FALSE, ...)
\S4method{text}{RasterStackBrick}(x, labels, digits=0, fun=NULL, halo=FALSE, ...)
\S4method{text}{SpatialPolygons}(x, labels, halo=FALSE, ...)
\S4method{text}{SpatialPoints}(x, labels, halo=FALSE, ...)
}
\arguments{
\item{x}{Raster*, SpatialPoints* or SpatialPolygons* object}
\item{labels}{character. Optional. Vector of labels with \code{length(x)} or a variable name from \code{names(x)}}
\item{digits}{integer. how many digits should be used?}
\item{fun}{function to subset the values plotted (as in \code{\link{rasterToPoints}})}
\item{halo}{logical. If \code{TRUE} a 'halo' is printed around the text. If \code{TRUE}, additional arguments \code{hc='white'} and \code{hw=0.1} can be modified to set the colour and width of the halo}
\item{...}{additional arguments to pass to graphics function \code{\link[graphics]{text}} }
}
\seealso{
\code{\link[graphics]{text}, \link[raster]{plot}}
}
\examples{
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)
}
\keyword{methods}
\keyword{spatial}
|