Generally, the [[
method lets users extract information from oce
objects, without having to know the details of the internal storage. For
many oce
sub-classes, [[
can also return quantities that are computed
from the object's contents.
Arguments
- x
a section object.
- i
character value indicating the name of an item to extract.
- j
optional additional information on the
i
item.- ...
ignored.
Details
A two-step process is used to try to find the requested information. First, a
class-specific function is used (see “Details of the Specialized
Method”). If this yields nothing, then a general method is used (see
“Details of the General Method”). If both methods fail, then [[
returns NULL.
Some understanding of the subclass is required to know what can be retrieved
with [[
. When dealing with an unfamiliar subclass, it can be useful to
first use x[["?"]]
to get a listing of the retrievable items. See
“Details of the Specialized Method” for more information.
Details of the Specialized Method
There are several possibilities, depending on the nature of i
.
If
i
is"?"
, then the return value is a list containing four items, each of which is a character vector holding the names of things that can be accessed with[[
. This list is compiled by examining all the stations in the object, and reporting an entry if it is found in any one of them. Thedata
andmetadata
items hold the names of entries in the object's data and metadata slots, respectively. ThedataDerived
andmetadataDerived
items hold data-like and metadata-like things that can be derived from these.If
i
is"station"
, then[[
will return alist()
of ctd objects holding the station data. Ifj
is also given, it specifies a station (or set of stations) to be returned. ifj
contains just a single value, then that station is returned, but otherwise a list is returned. Ifj
is an integer, then the stations are specified by index, but if it is character, then stations are specified by the names stored within their metadata. (Missing stations yieldNULL
in the return value.)If
i
is"station ID"
, then the IDs of the stations in the section are returned.If
i
is"dynamic height"
, then an estimate of dynamic height is returned, as calculated withswDynamicHeight
(x)
.If
i
is"distance"
, then the distance along the section is returned, usinggeodDist()
.If
i
is"depth"
, then a vector containing the depths of the stations is returned.If
i
is"z"
, then a vector containing the z coordinates is returned.If
i
is"theta"
or"potential temperature"
, then the potential temperatures of all the stations are returned in one vector. Similarly,"spice"
returns the property known as spice, usingswSpice()
.If
i
is a string ending with"Flag"
, then the characters prior to that ending are taken to be the name of a variable contained within the stations in the section. If this flag is available in the first station of the section, then the flag values are looked up for every station.
If j
is "byStation"
, then a list is returned, with
one (unnamed) item per station.
If j
is "grid:distance-pressure"
or "grid:time-pressure"
, then a gridded
representation of i
is returned, as a list with elements:
distance
(in km) or time
(in POSIXct); pressure
(in dbar) and
field
(in whatever unit is used for i
). See the
examples in the documentation for plot,section-method()
.
Details of the General Method
Note: the text of this section is identical for all oce
subclasses, and so
some of what you read here may not be relevant to the class being described
in this help page.
If the specialized method produces no matches, the following generalized
method is applied. As with the specialized method, the procedure hinges first
on the values of i
and, optionally, j
. The work proceeds in steps, by
testing a sequence of possible conditions in sequence.
A check is made as to whether
i
names one of the standardoce
slots. If so,[[
returns the slot contents of that slot. Thus,x[["metadata"]]
will retrieve themetadata
slot, whilex[["data"]]
andx[["processingLog"]]
return those slots.If
i
is a string ending in the"Unit"
, then the characters preceding that string are taken to be the name of an item in the data object, and a list containing the unit is returned (orNULL
if there is no such unit). This list consists of an item namedunit
, which is anexpression()
, and an item namedscale
, which is a string describing the measurement scale. If the string ends in" unit"
, e.g.x[["temperature unit"]]
(note the space), then just the expression is returned, and if it ends in" scale"
, then just the scale is returned.If
i
is a string ending in"Flag"
, then the corresponding data-quality flag is returned (orNULL
if there is no such flag).If the object holds hydrographic information (pressure, salinity, temperature, longitude and latitude) then another set of possibilities arises. If
i
is"sigmaTheta"
, then the value ofswSigmaTheta()
is called withx
as the sole argument, and the results are returned. Similarly,swSigma0()
is used ifi="sigma0"
, andswSpice()
is used ifi="spice"
. Of course, these actions only make sense for objects that contain the relevant items within theirdata
slot.After these possibilities are eliminated, the action depends on whether
j
has been provided. Ifj
is not provided, or is the string""
, theni
is sought in themetadata
slot, and then in thedata
slot, returning whichever is found first. In other words, ifj
is not provided, themetadata
slot takes preference over thedata
slot. However, ifj
is provided, then it must be either the string"metadata"
or"data"
, and it directs where to look.If none of the above-listed conditions holds, then
NULL
is returned.
See also
Other functions that extract parts of oce objects:
[[,adp-method
,
[[,adv-method
,
[[,amsr-method
,
[[,argo-method
,
[[,bremen-method
,
[[,cm-method
,
[[,coastline-method
,
[[,ctd-method
,
[[,echosounder-method
,
[[,g1sst-method
,
[[,gps-method
,
[[,ladp-method
,
[[,landsat-method
,
[[,lisst-method
,
[[,lobo-method
,
[[,met-method
,
[[,oce-method
,
[[,odf-method
,
[[,rsk-method
,
[[,sealevel-method
,
[[,tidem-method
,
[[,topo-method
,
[[,windrose-method
,
[[,xbt-method
,
[[<-,adv-method
Other things related to section data:
[[<-,section-method
,
as.section()
,
handleFlags,section-method
,
initializeFlagScheme,section-method
,
plot,section-method
,
read.section()
,
section
,
section-class
,
sectionAddStation()
,
sectionGrid()
,
sectionSmooth()
,
sectionSort()
,
subset,section-method
,
summary,section-method
Examples
data(section)
length(section[["latitude"]])
#> [1] 2841
length(section[["latitude", "byStation"]])
#> [1] 124
# Vector of all salinities, for all stations
Sv <- section[["salinity"]]
# List of salinities, grouped by station
Sl <- section[["salinity", "byStation"]]
# First station salinities
Sl[[1]]
#> [1] 36.1384 36.1103 35.9953 35.9372 35.8191