zoc(time, depth, offset)
plotTD(time, depth, concurVars=NULL, xlim=NULL, depth.lim=NULL,
xlab="time (dd-mmm hh:mm)", ylab.depth="depth (m)",
concurVarTitles=deparse(substitute(concurVars)),
xlab.format="%d-%b %H:%M", sunrise.time="06:00:00",
sunset.time="18:00:00", night.col="gray60",
phaseCol=NULL, interact=TRUE, key=TRUE, cex.pts=0.4, ...)POSIXct object with date and time.strptime.points to set the relative size
of points to plot (if any).par; useful defaults
las=1, bty="n", and mar (the latter depending
on whether additional concurrent data will be plotted) are provided,
butzoc returns a numeric vector, as long as depth of
zero-offset corrected depths. plotTD returns (invisibly) a list with as many components as
sections of the record that were zero-offset corrected, each
consisting of two further lists with the same components as those
returned by locator.
zoc calls
plotDive, which plots depth and, optionally, speed vs. time
with the possibility zooming in and out on time, changing maximum
depths displayed, and panning through time. The option to zero-offset
correct sections of the record gathers x and y coordinates for two
points, obtained by clicking on the plot region. The first point
clicked indicates the offset and beginning time of section to correct,
and the second one indicates the ending time of the section to
correct. Multiple sections of the record can be corrected in this
manner, by panning through the time and repeating the procedure. In
case there's overlap between zero offset corrected windows, the last
one prevails.Once the whole record has been zero-offset corrected, remaining points with depth values lower than zero, are turned into zeroes, as these are assumed to be values at the surface.
calibrateDepth, and plotTDR.data(divesTDR)
## Use interact=TRUE (default) to set the offset interactively
depth.zoc <- zoc(getTime(divesTDR), getDepth(divesTDR), offset=3)
plotTD(getTime(divesTDR), depth.zoc, interact=FALSE)Run the code above in your browser using DataLab