validate_pds_data | R Documentation |
This function takes pds trips data and returns validated trip duration and distance.
validate_pds_data(
data,
max_hrs = NULL,
min_hrs = NULL,
km = NULL,
se_km = NULL,
outl = NULL,
timet = NULL
)
data |
A data frame containing pds trips |
max_hrs |
Upper limit of trip duration (hours) to be considered a valid catch session. |
min_hrs |
Lower limit of trip duration (hours) to be considered a valid catch session. |
km |
Limit of trip distance traveled (Km) to be considered a valid catch session. |
se_km |
Distance between the start and end point of a trip to be considered a valid catch session. |
outl |
Limit of speed outlier points in each trip to be considered a good quality pds track. |
timet |
Limit of signal trace dispersion to be considered a good quality pds track. |
A list containing data frames with validated catch duration and catch distance traveled
## Not run:
pars <- read_config()
pds_trips <- get_preprocessed_trips()
validate_pds(pds_trips)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.