read_cpr_north_data | R Documentation |
These functions read one specific csv
file of the FORCIS database
(see below) stored in the folder path
. The function download_forcis_db()
must be used first to store locally the database.
read_cpr_north_data(
path = ".",
version = options()$forcis_version,
check_for_update = options()$check_for_update
)
read_cpr_south_data(
path = ".",
version = options()$forcis_version,
check_for_update = options()$check_for_update
)
read_plankton_nets_data(
path = ".",
version = options()$forcis_version,
check_for_update = options()$check_for_update
)
read_pump_data(
path = ".",
version = options()$forcis_version,
check_for_update = options()$check_for_update
)
read_sediment_trap_data(
path = ".",
version = options()$forcis_version,
check_for_update = options()$check_for_update
)
path |
a |
version |
a |
check_for_update |
a |
read_plankton_nets_data()
reads the FORCIS plankton nets data
read_pump_data()
reads the FORCIS pump data
read_cpr_north_data()
reads the FORCIS CPR North data
read_cpr_south_data()
reads the FORCIS CPR South data
read_sediment_trap_data()
reads the FORCIS sediment traps data
A data.frame
. See
https://zenodo.org/doi/10.5281/zenodo.7390791 for a preview of the
datasets.
download_forcis_db()
to download the complete FORCIS database.
## Not run:
# Attach the package ----
library("forcis")
# Folder in which the database will be saved ----
path_to_save_db <- "data"
# Download the database ----
download_forcis_db(path = path_to_save_db)
# Import plankton nets data ----
plankton_nets_data <- read_plankton_nets_data(path = path_to_save_db)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.