Removes Capture Effects
Removing relocations at the beginning and/or end of a track, that fall within a user specified period.
remove_capture_effect(x, ...) ## S3 method for class 'track_xyt' remove_capture_effect(x, start, end, ...)
x |
An object of class |
... |
Further arguments, none implemented. |
start |
A |
end |
A |
library(lubridate) n <- 10 df <- track( x = cumsum(rnorm(n)), y = cumsum(rnorm(n)), t = ymd_hm("2017-01-01 00:00") + hours(seq(0, by = 24, length.out = n)) ) df remove_capture_effect(df, start = days(1)) remove_capture_effect(df, end = days(2)) remove_capture_effect(df, start = days(1), end = days(2))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.