This is a three-day composite satellite image for July 27, 2023, trimmed to show waters south and east of Nova Scotia, using code provide in the “Details” section.

data(amsr)

Details

The following code was used to create this dataset.


library(oce)
amsr <- read.amsr(download.amsr(2023, 7, 27, destdir="~/data/amsr"))
amsr <- subset(amsr, -71 < longitude & longitude < -60, debug=2)
amsr <- subset(amsr,  36 < latitude  &  latitude <  45, debug=2)

See also

Other satellite datasets provided with oce: landsat

Other datasets provided with oce: adp, adv, argo, cm, coastlineWorld, ctd, ctdRaw, echosounder, landsat, lisst, lobo, met, ocecolors, rsk, sealevel, sealevelTuktoyaktuk, section, topoWorld, wind, xbt

Other things related to amsr data: [[,amsr-method, [[<-,amsr-method, amsr-class, composite,amsr-method, download.amsr(), plot,amsr-method, read.amsr(), subset,amsr-method, summary,amsr-method

Examples

library(oce)
data(coastlineWorld)
data(amsr)
plot(amsr, "SST")
lines(coastlineWorld[["longitude"]], coastlineWorld[["latitude"]])