Description Usage Arguments Value Examples
Use argo_traj_*()
functions to extract information from Argo trajectory
NetCDF files. Use argo_read_traj_*()
to extract information from a single previously-downloaded NetCDF file.
1 2 3 4 5 6 7 | argo_traj_measurement(path, vars = NULL, download = NULL, quiet = NA)
argo_traj_cycle(path, vars = NULL, download = NULL, quiet = NA)
argo_traj_param(path, vars = NULL, download = NULL, quiet = NA)
argo_traj_history(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_traj_measurement()
: one row per file per measurement.
argo_traj_cycle()
: one row per file per cycle.
argo_traj_param()
: one row per file per parameter.
argo_traj_history()
: one row per file per history entry.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | with_argo_example_cache({
argo_traj_measurement("dac/csio/2900313/2900313_Rtraj.nc")
})
with_argo_example_cache({
argo_traj_cycle("dac/csio/2900313/2900313_Rtraj.nc")
})
with_argo_example_cache({
argo_traj_param("dac/csio/2900313/2900313_Rtraj.nc")
})
with_argo_example_cache({
argo_traj_history("dac/csio/2900313/2900313_Rtraj.nc")
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.