Last chance! 50% off unlimited learning
Sale ends in
Two file types are handled: (1) the "sippican"
format, used
for Sippican XBT files, handled with read.xbt.edf()
, and (2)
the "noaa1"
format, handled with read.xbt.noaa1()
. The first of
these is recognized by read.oce()
, but the second must be called
directly with read.xbt.noaa1()
.
read.xbt(
file,
type = "sippican",
longitude = NA,
latitude = NA,
debug = getOption("oceDebug"),
processingLog
)
a connection or a character string giving the name of the file to load.
character string indicating type of file, with valid choices being
"sippican"
and "noaa1"
.
optional signed numbers indicating the longitude in degrees
East and latitude in degrees North. These values are used if type="sippican"
,
but ignored if type="noaa1"
, because those files contain location information.
a flag that turns on debugging. The value indicates the depth within the call stack to which debugging applies.
if provided, the action item to be stored in the log. This parameter is typically only provided for internal calls; the default that it provides is better for normal calls by a user.
Sippican, Inc. "Bathythermograph Data Acquisition System: Installation, Operation and Maintenance Manual (P/N 308195, Rev. A)," 2003. https://pages.uoregon.edu/drt/MGL0910_Science_Report/attachments/MK21_ISA_Manual_Rev_A.pdf.
Other things related to xbt data:
[[,xbt-method
,
[[<-,xbt-method
,
as.xbt()
,
plot,xbt-method
,
read.xbt.noaa1()
,
subset,xbt-method
,
summary,xbt-method
,
xbt-class
,
xbt.edf
,
xbt
# NOT RUN {
library(oce)
xbt <- read.oce(system.file("extdata", "xbt.edf", package="oce"))
summary(xbt)
plot(xbt)
# }
Run the code above in your browser using DataLab