oceColorsClosure {oce} | R Documentation |
This function generates other functions that are used to specify colors.
It is used within oce to create oceColorsTemperature
and its many cousins. Users may also find it helpful, for creating
custom color schemes (see “Examples”).
oceColorsClosure(spec)
spec |
Specification of the color scheme. This may be a
character string, in which case it must be the name of an item stored
in |
Other things related to colors: colormap
,
oceColors9B
, oceColorsCDOM
,
oceColorsChlorophyll
,
oceColorsDensity
,
oceColorsFreesurface
,
oceColorsGebco
, oceColorsJet
,
oceColorsOxygen
,
oceColorsPAR
,
oceColorsPalette
,
oceColorsPhase
,
oceColorsSalinity
,
oceColorsTemperature
,
oceColorsTurbidity
,
oceColorsTwo
,
oceColorsVelocity
,
oceColorsViridis
,
oceColorsVorticity
, ocecolors
## Not run: ## Update oxygen color scheme to latest matplotlib value. library(oce) oxy <- "https://raw.githubusercontent.com/matplotlib/cmocean/master/cmocean/rgb/oxy-rgb.txt" oxyrgb <- read.table(oxy, header=FALSE) oceColorsOxygenUpdated <- oceColorsClosure(oxyrgb) par(mfrow=c(1, 2)) m <- matrix(1:256) imagep(m, col=oceColorsOxygen, zlab="oxygen") imagep(m, col=oceColorsOxygenUpdated, zlab="oxygenUpdated") ## End(Not run)