amsr {oce} | R Documentation |
Sample amsr Data (Near Nova Scotia)
Description
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.
Usage
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
,
ctdRaw
,
ctd
,
echosounder
,
landsat
,
lisst
,
lobo
,
met
,
ocecolors
,
rsk
,
sealevelTuktoyaktuk
,
sealevel
,
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"]])
[Package oce version 1.8-2 Index]