compose_plot | R Documentation |
compose_plot
plots images (raster brick or raster stack) and corresponding color bars according to given rectangular layout.
compose_plot(...)
... |
Set of arguments, which are passed to |
Function merges to functions. The first one plots image layout and returns list of color tables. The second one plots legend (colorbars) based on returned color tables. Simplified description is:
ct <- compose_panel(...) compose_legend(ct,...)
These two functions are separated to allow use additional plotting on image panel after primary plot of raster and decorations before panel change or legend plot.
This function returns NULL
value.
Nikita Platonov platonov@sevin.ru
compose_panel
compose_legend
session_grid(NULL)
a <- ursa_dummy(nband=6,min=0,max=255,mul=1/4)
if (example1 <- TRUE) {
b1 <- ursa_brick(a)
# b1 <- colorize(b1,stretch="positive",ramp=FALSE)
compose_open(b1)
compose_plot(b1,grid=FALSE,coast=FALSE,scale=FALSE,trim=1
,stretch="positive",ramp=!FALSE)
compose_close()
}
if (example2 <- TRUE) {
b2 <- ursa_stack(a)
compose_open(b2)
compose_plot(b2,grid=FALSE,coast=FALSE,labels=5,trim=2,las=0)
compose_close()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.