Description Usage Arguments Value Examples
Use argo_prof_*()
functions to extract information from Argo profile
NetCDF files. Use argo_read_prof_*()
to extract information from a single previously-downloaded NetCDF file.
1 2 3 4 5 6 7 8 9 10 11 | argo_prof_levels(path, vars = NULL, download = NULL, quiet = NA)
argo_prof_prof(path, vars = NULL, download = NULL, quiet = NA)
argo_prof_calib(path, vars = NULL, download = NULL, quiet = NA)
argo_prof_param(path, vars = NULL, download = NULL, quiet = NA)
argo_prof_history(path, vars = NULL, download = NULL, quiet = NA)
argo_prof_spectra(path, vars = NULL, download = NULL, quiet = NA)
|
path |
A path relative to the root directory of
|
vars |
A vector of variable names to include. Explicitly specifying
|
download |
A logical vector indicating whether or not
a file should be downloaded. Defaults to the value of
|
quiet |
Use |
A tibble::tibble()
with
argo_prof_levels()
: one row per file per profile per sampling level.
argo_prof_prof()
: one row per file per profile.
argo_prof_calib()
: one row per file per profile per calibration per
parameter.
argo_prof_param()
: one row per file per profile per parameter.
argo_prof_history()
: one row per file per profile per history entry.
argo_prof_spectra()
: one row per file per profile per sampling level
per spectra value.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | with_argo_example_cache({
argo_prof_levels("dac/csio/2900313/profiles/D2900313_000.nc")
})
with_argo_example_cache({
argo_prof_prof("dac/csio/2900313/profiles/D2900313_000.nc")
})
with_argo_example_cache({
argo_prof_calib("dac/csio/2900313/profiles/D2900313_000.nc")
})
with_argo_example_cache({
argo_prof_param("dac/csio/2900313/profiles/D2900313_000.nc")
})
with_argo_example_cache({
argo_prof_history("dac/csio/2900313/profiles/D2900313_000.nc")
})
with_argo_example_cache({
argo_prof_spectra("dac/aoml/5906206/profiles/BD5906206_016.nc")
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.