Description Usage Arguments Value Examples
Use argo_read_traj_*()
functions to extract trajectory information from a
previously-downloaded Argo NetCDF file.
1 2 3 4 5 6 7 | argo_read_traj_measurement(file, vars = NULL, quiet = FALSE)
argo_read_traj_cycle(file, vars = NULL, quiet = FALSE)
argo_read_traj_param(file, vars = NULL, quiet = FALSE)
argo_read_traj_history(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_traj_measurement()
: one per measurement.
argo_read_traj_cycle()
: one per cycle.
argo_read_traj_param()
: one per parameter.
argo_read_traj_history()
: one row per history entry.
1 2 3 4 5 6 7 8 9 | traj_file <- system.file(
"cache-test/dac/csio/2900313/2900313_Rtraj.nc",
package = "argodata"
)
argo_read_traj_measurement(traj_file)
argo_read_traj_cycle(traj_file)
argo_read_traj_param(traj_file)
argo_read_traj_history(traj_file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.