import_argos | R Documentation |
Import, process, and export data from Argos downloads
import_argos(
UPLOAD = FALSE,
FORMAT.ARGOS = TRUE,
SPEED.FILTER = TRUE,
argos.csv.path,
argos.processed.file,
export.file,
log.file,
tz = "GMT"
)
UPLOAD |
logical; if TRUE, then an existing, formatted file housed at
the path specified by |
FORMAT.ARGOS |
logical, default is |
SPEED.FILTER |
logical, default is |
argos.csv.path |
character; the path to the Argos data |
argos.processed.file |
character; the file that contains the already- processed data to be appended to the newly processed data |
export.file |
character; the file to which to export the data |
log.file |
character; the PTT log file |
tz |
character; time zone to pass to datetime functions. Default is 'GMT' |
todo
A data frame with the processed Argos data
## Not run:
# Run for all new data
x <- import_argos(
UPLOAD = FALSE, FORMAT.ARGOS = TRUE, SPEED.FILTER = TRUE,
argos.csv.path = "processing/input",
argos.processed.file = "",
export.file = "ArgosData_2022_01_20_02_13_00_output.csv",
log.file = "PTTlog.csv"
)
# Run with already-processed data
x <- import_argos(
UPLOAD = FALSE, FORMAT.ARGOS = TRUE, SPEED.FILTER = TRUE,
argos.csv.path = "processing/input",
argos.processed.file = "ArgosData_##_output.csv",
export.file = "ArgosData_2022_01_20_02_13_00_output.csv",
log.file = "PTTlog.csv"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.