Handles move/track events that do not meet specific thresholds to be
considered. This is based on the researcher-decided total number of
allowable locations that the discarded track can consist of, as well as a
maximum total time length that may elapse. Tracks can be merged into the
preceding stop or excluded. Future versions of this should consider assigning
to the closest stop for small_track_action = merge.
moveMerger(
events,
small_track_action = "merge",
max_locs = 1,
max_time = 600,
max_dist = 100
)Modifies events data.table by reference
data.table of events from returnStateEvents
One of "merge" or "exclude" for specifying the method of handling mergeable tracks
Maximum number of locations for a track to be mergeable. Set to Inf to not consider.
Maximum time elapsed (seconds) for a track to be mergeable. Set to Inf to not consider.
Maximum distance (meters) traveled while on track to be mergeable. Set to Inf to not consider.