Description Usage Arguments Value Examples
The argo_mirror()
points to a directory containing millions of NetCDF
files in which Argo data is organized. These files are indexed by category
in the root directory of the mirror. The argo_global_*()
functions provide
access to these as data frames.
1 2 3 4 5 6 7 8 9 10 11 12 13 | argo_global_meta(download = NULL, quiet = FALSE)
argo_global_prof(download = NULL, quiet = FALSE)
argo_global_tech(download = NULL, quiet = FALSE)
argo_global_traj(download = NULL, quiet = FALSE)
argo_global_bio_traj(download = NULL, quiet = FALSE)
argo_global_bio_prof(download = NULL, quiet = FALSE)
argo_global_synthetic_prof(download = NULL, quiet = FALSE)
|
download |
A logical vector indicating whether or not
a file should be downloaded. Defaults to the value of
|
quiet |
Use |
argo_global_meta()
: a tibble::tibble()
of the Argo meta file index
argo_global_tech()
: a tibble::tibble()
of the Argo tech file index
argo_global_traj()
: a tibble::tibble()
of the Argo trajectory file index
argo_global_bio_traj()
: a tibble::tibble()
of the Argo meta
biogeochemical trajectory index
argo_global_prof()
: a tibble::tibble()
of the Argo profile file index
argo_global_bio_prof()
: a tibble::tibble()
of the Argo biogeochemical profile
index
argo_global_synthetic_prof()
: a tibble::tibble()
of the Argo
biogeochemical synthetic profile index
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | with_argo_example_cache({
argo_global_meta()
})
with_argo_example_cache({
argo_global_tech()
})
with_argo_example_cache({
argo_global_traj()
})
with_argo_example_cache({
argo_global_bio_traj()
})
## Not run:
# extended download time if no cached version is available
argo_global_prof()
argo_global_bio_prof()
argo_global_synthetic_prof()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.