preprocessing_vms {dafishr} | R Documentation |
Preprocessing Vessel Monitoring System data
Description
This functions bundles all the cleaning functions and allows them to be
easily used in parallel processing to speed up the cleaning of all the Vessel Monitoring System, VMS, data .csv
files.
While it runs, it creates a folder called preprocessed
that will store VMS data that
underwent the preprocessing. If multiple files are used as input (see examples below) it will create
multiple files. All the outputs are in .fst
format, which allows fast upload of large files.
See fst
package documentation for further information https://www.fstpackage.org/.
Usage
preprocessing_vms(files.path, destination.folder)
Arguments
files.path |
it can be a path to the file downloaded or the data object itself.
If function is used with a path it adds a |
destination.folder |
it must record the path to a folder were all the preprocessed files will be stored. |
Value
A .fst
file saved within a directory chosen by the user, that is created automatically if does not exist, and that stores
each of the files that are used as input to the function.
Examples
# An example with the `sample.dataset`
preprocessing_vms(sample_dataset, destination.folder = tempdir())