Description Usage Arguments Value See Also Examples
Derive sea-surface temperatures from land temperatures
1 | sst_predict(sstparams, htemp)
|
sstparams |
of parameter values as returned by |
htemps |
a vector of hourly land temperatues, normally for one year (deg C) |
a vector of hourly sea-surface temperatures
1 2 3 4 5 6 7 | sstparams <- sst_fit(temperature2017)
htemp <- rep(temperature2017$land, each = 24)
sstp <- sst_predict(sstparams, htemp)
ssto <- rep(temperature2017$sst, each = 24)
plot(ssto, type = "l", ylim = c(5, 20), col = "red", ylab = "SST")
par(new = T)
plot(sstp, type = "l", ylim = c(5, 20), col = "darkgray", ylab = "")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.