Conveniently converts NOAA world ocean atlas parameter names into full oceanographic variable names including units for parsing in plot labels.
Examples
# expression
env_parm_labeller("t_an")
#> expression( ~ "Temperature (" * degree ~ C * ")" ~ )
# plot with temperature axis label
library(ggplot2)
ggplot() +
geom_blank() +
ylab(env_parm_labeller("t_an"))