
Last chance! 50% off unlimited learning
Sale ends in
sectionGrid(section, p, method=c("approx","boxcar","lm"),
debug=getOption("oceDebug"), ...)
section
object containing the section to be gridded.section
. If actdDecimate
for a
deeper discussion.read.adv.nortek()
calls read.header.nortek()
, so that
read.adv.nortek(...,debu
ctdDecimate
.class
"section"
that contains
stations whose pressure values match identically."approx"
, "boxcar"
and "lm"
methods are
described in the documentation for ctdDecimate
, which is used
to do this processing. The default "approx"
method is best for
bottle data, the "boxcar"
is best for ctd data, and the "lm"
method is probably too slow to recommend for exploratory work, in which it
is common to do trials with a variety of "p"
values.section-class
explains the
structure of section objects, and also outlines the other functions dealing
with them.# Gulf Stream
library(oce)
# http://cchdo.ucsd.edu/data_access?ExpoCode=90CT40_1
# a03 <- read.section("a03_hy1.csv")
data(a03)
GS <- subset.oce(a03, indices=124:102)
GSg <- sectionGrid(GS, p=seq(0, 5000, 100))
data(coastlineWorld)
plot(GSg, coastline=coastlineWorld, map.xlim=c(-80,-60))
Run the code above in your browser using DataLab