-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathlobo-class.Rd
106 lines (92 loc) · 3.7 KB
/
lobo-class.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lobo.R
\docType{class}
\name{lobo-class}
\alias{lobo-class}
\title{Class to Store LOBO Data}
\description{
This class stores LOBO data.
}
\section{Slots}{
\describe{
\item{\code{data}}{As with all \code{oce} objects, the \code{data} slot
for \code{lobo} objects is a
\link{list} containing the main data for the object.
{}}
\item{\code{metadata}}{As with all \code{oce} objects, the \code{metadata} slot
for \code{lobo} objects is a \link{list} containing
information about the \code{data} or about the object itself.
{}}
\item{\code{processingLog}}{As with all \code{oce} objects, the \code{processingLog} slot
for \code{lobo} objects is a
\link{list} with entries describing the creation and evolution
of the object. The contents are updated by various \code{oce} functions to
keep a record of processing steps. Object summaries and
\code{\link[=processingLogShow]{processingLogShow()}} both display the log.}
}}
\section{Modifying slot contents}{
Although the \code{[[<-} operator may permit modification of the contents
of \linkS4class{lobo} objects (see \code{\link{[[<-,lobo-method}}),
it is better to use \code{\link[=oceSetData]{oceSetData()}} and \code{\link[=oceSetMetadata]{oceSetMetadata()}},
because those functions save an entry in the \code{processingLog}
that describes the change.
}
\section{Retrieving slot contents}{
The full contents of the \code{data} and \code{metadata} slots of a \linkS4class{lobo}
object may be retrieved in the standard R way using \code{\link[=slot]{slot()}}. For
example \code{slot(o,"data")} returns the \code{data} slot of an object named \code{o},
and similarly \code{slot(o,"metadata")} returns
the \code{metadata} slot.
The slots may also be obtained with the \code{\link{[[,lobo-method}}
operator, as e.g. \code{o[["data"]]} and \code{o[["metadata"]]}, respectively.
The \code{\link{[[,lobo-method}} operator can also
be used to retrieve items from within the \code{data} and \code{metadata} slots.
For example, \code{o[["temperature"]]} can be used to retrieve temperature
from an object containing that quantity. The rule is that a named
quantity is sought first within the object's \code{metadata} slot,
with the \code{data} slot being checked only if \code{metadata} does not
contain the item. This \code{[[} method can also be used to get
certain derived quantities, if the object contains sufficient
information to calculate them. For example, an object that holds
(practical) salinity, temperature and pressure, along with
longitude and latitude, has sufficient information to compute
Absolute Salinity, and so \code{o[["SA"]]} will yield the
calculated Absolute Salinity.
It is also possible to find items more directly, using \code{\link[=oceGetData]{oceGetData()}} and
\code{\link[=oceGetMetadata]{oceGetMetadata()}}, but neither of these functions can
retrieve derived items.
}
\seealso{
Other classes provided by oce:
\code{\link{adp-class}},
\code{\link{adv-class}},
\code{\link{argo-class}},
\code{\link{bremen-class}},
\code{\link{cm-class}},
\code{\link{coastline-class}},
\code{\link{ctd-class}},
\code{\link{lisst-class}},
\code{\link{met-class}},
\code{\link{oce-class}},
\code{\link{odf-class}},
\code{\link{rsk-class}},
\code{\link{sealevel-class}},
\code{\link{section-class}},
\code{\link{topo-class}},
\code{\link{windrose-class}},
\code{\link{xbt-class}}
Other things related to lobo data:
\code{\link{[[,lobo-method}},
\code{\link{[[<-,lobo-method}},
\code{\link{as.lobo}()},
\code{\link{lobo}},
\code{\link{plot,lobo-method}},
\code{\link{read.lobo}()},
\code{\link{subset,lobo-method}},
\code{\link{summary,lobo-method}}
}
\author{
Dan Kelley
}
\concept{classes provided by oce}
\concept{things related to lobo data}