amsr: An amsr dataset for waters near Nova Scotia

amsrR Documentation

An amsr dataset for waters near Nova Scotia

Description

This is a composite satellite image combining views for 2020 August 9, 10 and 11, trimmed from a world view to a view spanning 30N to 60N and 80W to 40W; see “Details”.

Usage

data(amsr)

Details

The following code was used to create this dataset.

library(oce)
data(coastlineWorldFine, package="ocedata")
d1 <- read.amsr(download.amsr(2020, 8,  9, "~/data/amsr"))
d2 <- read.amsr(download.amsr(2020, 8, 10, "~/data/amsr"))
d3 <- read.amsr(download.amsr(2020, 8, 11, "~/data/amsr"))
d <- composite(d1, d2, d3)
amsr <- subset(d,    -80 < longitude & longitude < -40)
amsr <- subset(amsr,  30 < latitude  &  latitude <  60)

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"]])


oce documentation built on July 9, 2023, 5:18 p.m.