This function attempts to automatically detect inconsistent
locations (for instance due to a writing error or GPS inaccuracies) in
track
tables.
Author
Simon Garnier, garnier@njit.edu
Examples
# Create data set with inconsistent data
data(tracks)
t_df <- track(x = tracks$x, y = tracks$y, t = tracks$t,
id = tracks$id, proj = "+proj=longlat",
tz = "Africa/Windhoek", table = "df")
t_df$x[1000] <- t_df$x[1000] * 1.0001
t_df$y[4000] <- t_df$y[4000] * 1.00001
# Find inconsistent data
inconsistent <- inconsistent_data(t_df)