Description Usage Arguments Value Examples
Use argo_meta_*()
functions to extract information from Argo meta
NetCDF files. Use argo_read_meta_*()
to extract information from a single previously-downloaded NetCDF file.
Using argo_info()
on meta files is also useful for extracting general
float information.
1 2 3 4 5 6 7 8 9 10 11 12 13 | argo_meta_config_param(path, download = NULL, quiet = NA)
argo_meta_missions(path, download = NULL, quiet = NA)
argo_meta_trans_system(path, download = NULL, quiet = NA)
argo_meta_positioning_system(path, download = NULL, quiet = NA)
argo_meta_launch_config_param(path, download = NULL, quiet = NA)
argo_meta_sensor(path, download = NULL, quiet = NA)
argo_meta_param(path, download = NULL, quiet = NA)
|
path |
A path relative to the root directory of
|
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_meta_config_param()
: one row per file per configuration parameter and
columns file
, n_config_param
, n_missions
, config_parameter_value
,
and config_parameter_name
.
argo_meta_missions()
: one row per file per mission and columns file
,
n_missions
, config_mission_number
, and config_mission_comment
.
argo_meta_trans_system()
: one row per file per transmission system
and columns file
, n_trans_system
, trans_system
, trans_system_id
,
and trans_frequency
.
argo_meta_positioning_system()
: one row per file per positioning
system and columns file
, n_positioning_system
, and
positioning_system
.
argo_meta_launch_config_param()
: one row per file per launch
configuration parameter and columns file
, n_launch_config_param
,
launch_config_parameter_name
, and launch_config_parameter_value
.
argo_meta_sensor()
: one row per file per sensor and columns
file
, n_sensor
, sensor
, sensor_maker
, sensor_model
,
and sensor_serial_no
.
argo_meta_param()
: one row per file per parameter and columns file
,
n_param
, parameter
parameter_sensor
, parameter_units
,
parameter_resolution
, predeployment_calib_equation
,
predeployment_calib_coefficient
, and predeployment_calib_comment
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | with_argo_example_cache({
argo_meta_config_param("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_missions("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_trans_system("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_positioning_system("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_launch_config_param("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_sensor("dac/csio/2900313/2900313_meta.nc")
})
with_argo_example_cache({
argo_meta_param("dac/csio/2900313/2900313_meta.nc")
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.