Description Usage Arguments Details Value Author(s) See Also Examples
Visualisation of satellite data (mainly SST and chlorophyll-a concentration) from Aqua Modis and SeaWiFS products.
1 2 3 4 5 |
satin.obj |
a satin object with satellite data as returned by |
image |
number of image to plot |
xlim |
minimum and maximum longitude values for the map |
ylim |
minimum and maximum latitude values for the map |
zlim |
minimum and maximum parameter values for the map |
xoffs |
a value to add/substract from |
yoffs |
a value to add/substract from |
map |
a user defined map of class "sp" |
map.col |
color for the map |
map.outline |
color for the map outline |
colimg |
a list with a vector of color names and a vector of color breaks as returned by |
colbar |
logical. If |
colbar.pos |
position of the color bar. Either top "t" or right "r" side |
main |
title for the plot, defaults to |
main.pos |
position for the title: top right ("tr"), top left ("tl"), bottom right ("br") or bottom left ("bl") |
log |
logical. If |
... |
further arguments to pass to |
The only mandatory argument for this function to produce a map is an object of class "satin" (satin.obj
), which contains the longitude and latitude vectors and the corresponding parameter array (SST or chlorophyll concentration). All the other arguments are optional and are conceived to customize the map produced.
a map of the corresponding parameter is produced
Héctor Villalobos
1 2 3 4 5 6 7 8 9 10 | # SST data (Aqua Modis)
data(dbsst)
plotSatin(dbsst)
plotSatin(dbsst, map=dmap, colbar.pos="t")
# Chl-a concentration data (Aqua Modis) in actual units and in logarithmic scale
data(dchla)
plotSatin(dchla, map=dmap, xlim=c(-130, -105), ylim=c(20, 40))
x11()
plotSatin(dchla, map=dmap, xlim=c(-130, -105), ylim=c(20, 40), log = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.