argo_read_meta: Read Argo float meta

Description Usage Arguments Value Examples

Description

Use argo_read_meta_*() functions to extract meta information from a previously-downloaded Argo NetCDF file.

Use argo_read_tech_tech_param() to extract technical specifications from a previously-downloaded Argo NetCDF file.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

Arguments

file

A previously downloaded Argo NetCDF file (e.g., using argo_download()).

vars

A vector of variable names to include. Explicitly specifying vars can lead to much faster read times when reading many files.

quiet

Use FALSE to stop for malformed files, NA to silently warn for malformed files, or TRUE to silently ignore read errors when possible.

Value

A tibble::tibble() with

A tibble::tibble() with one row per technical parameter and columns N_TECH_PARAM, TECHNICAL_PARAMETER_NAME, TECHNICAL_PARAMETER_VALUE, and CYCLE_NUMBER.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
meta_file <- system.file(
  "cache-test/dac/csio/2900313/2900313_meta.nc",
  package = "argodata"
)

argo_read_meta_config_param(meta_file)
argo_read_meta_missions(meta_file)
argo_read_meta_trans_system(meta_file)
argo_read_meta_positioning_system(meta_file)
argo_read_meta_launch_config_param(meta_file)
argo_read_meta_sensor(meta_file)
argo_read_meta_param(meta_file)

tech_file <- system.file(
  "cache-test/dac/csio/2900313/2900313_tech.nc",
  package = "argodata"
)

argo_read_tech_tech_param(tech_file)

ArgoCanada/argodata documentation built on Dec. 13, 2021, 10:13 a.m.