plot {ursa} | R Documentation |
Simple display of raster images
Description
Function image
for ursaRaster
object calls generic function image
.
Function plot
for ursaRaster
object calls function filled.contour
.
Color tables are supported.
Usage
## S3 method for class 'ursaRaster'
plot(x, ...)
## S3 method for class 'ursaRaster'
image(x, ...)
Arguments
x |
Object of class |
... |
Other parameters. Are passed to or |
Details
Usage of both these functions is justified for low-level control of plotting. It is recommended to use high-level function display
. It is flexible and power instrument for raster images visualization.
Function as.list
for ursaRaster
object transforms single band of raster image to a suitable object for plotting via function image
from package graphics
Value
Returned value from image
or filled.contour
(both functions are in the package graphics)
Author(s)
Nikita Platonov platonov@sevin.ru
See Also
Examples
session_grid(NULL)
a <- pixelsize()
plot(a,asp=1)
image(a,asp=1)
b <- colorize(a,ncolor=15)
plot(b,asp=1)
image(b,asp=1)
[Package ursa version 3.10.4 Index]