GEOTRACES.cruisetrack
— Methodcruisetrack(cruise_name)
Construct GEOTRACES CruiseTrack
from cruise name.
GEOTRACES.dictionary
— Methoddictionary(ds)
A dictionary of the variables name
and long_name
attributes.
Useful for development, dictionary(ds)
allows me to provide shortcuts — and a friendlier interface — for accessing GEOTRACES variables.
GEOTRACES.isotope
— Methodisotope(tracer)
Returns the GEOTRACES variable name of the isotope of tracer str
.
GEOTRACES.list_of_cruises
— Methodlist_of_cruises()
List of GEOTRACES cruises.
GEOTRACES.list_of_stations
— Methodlist_of_stations()
List of GEOTRACES stations.
GEOTRACES.matchingvariables
— Methodmatchingvariables(ds::Dataset, str::String)
Lists names of variables that have str
in their long_name
attribute.
GEOTRACES.metadata
— Methodmetadata(tracer1, tracer2, tracer3, ...)
Returns the GEOTRACES metadata for given tracers.
GEOTRACES.observations
— Methodobservations(tracer1, tracer2, tracer3, ...)
Returns the GEOTRACES observations of the given tracers.
Example usage
x, y, z, ... = observations(tracer1, tracer2, tracer3, ...)
x = observations(tracer1)
Quality control flags
By default, only observations with quality control flag of 1
are kept. If you want more data, you must define keyword-argument QCmax
.
x, y, z, ... = observations(tracer1, tracer2, tracer3, ...; QCmax = 2)
x = observations(tracer1; QCmax = 3)
GEOTRACES.qcvarname
— Methodqcvarname(tracer)
Returns the GEOTRACES variable name of the quality control of tracer str
.
GEOTRACES.qualitycontrols
— Methodqualitycontrols(tracer1, tracer2, tracer3, ...)
Returns the GEOTRACES quality control flag of the given tracers.
GEOTRACES's Char
s are converted to Int
by this function.
From GEOTRACES:
1 = good quality
2 = not evaluated, not available or unknown quality
3 = questionable/suspect quality
4 = bad quality
9 = missing data
Note that there should be no 9
because missing
data is skipped by the observations
function.
GEOTRACES.stdvarname
— Methodstdvarname(tracer)
Returns the GEOTRACES variable name of the standard deviation of tracer str
.
GEOTRACES.transect
— Methodtransect(tracer::String, cruise::String)
The Transect
of observations of tracer tracer
along cruise cruise
.
GEOTRACES.transects
— Methodtransects(tracer::String, cruise::String)
The Transects
of observations of tracer tracer
.
GEOTRACES.varname
— Methodvarname(tracer)
Returns the GEOTRACES variable name that "matches" tracer
.