Description Usage Arguments Value Examples
Use argo_read_prof_*()
functions to extract profile information from a
previously-downloaded Argo NetCDF file.
1 2 3 4 5 6 7 8 9 10 11 | argo_read_prof_levels(file, vars = NULL, quiet = FALSE)
argo_read_prof_prof(file, vars = NULL, quiet = FALSE)
argo_read_prof_calib(file, vars = NULL, quiet = FALSE)
argo_read_prof_param(file, vars = NULL, quiet = FALSE)
argo_read_prof_history(file, vars = NULL, quiet = FALSE)
argo_read_prof_spectra(file, vars = NULL, quiet = FALSE)
|
file |
A previously downloaded Argo NetCDF file
(e.g., using |
vars |
A vector of variable names to include. Explicitly specifying
|
quiet |
Use |
A tibble::tibble()
with
argo_read_prof_levels()
: one row per profile per sampling level.
argo_read_prof_prof()
: one row per profile.
argo_read_prof_calib()
: one row per profile per calibration per parameter.
argo_read_prof_param()
: one row per profile per parameter.
argo_read_prof_history()
: one row per profile per history entry.
argo_read_prof_spectra()
: one row per profile per sampling level per
spectra value.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | prof_file <- system.file(
"cache-test/dac/csio/2900313/profiles/D2900313_000.nc",
package = "argodata"
)
argo_read_prof_levels(prof_file)
argo_read_prof_prof(prof_file)
argo_read_prof_calib(prof_file)
argo_read_prof_param(prof_file)
argo_read_prof_history(prof_file)
bgc_file <- system.file(
"cache-test/dac/aoml/5906206/profiles/BD5906206_016.nc",
package = "argodata"
)
argo_read_prof_spectra(bgc_file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.