track.split.3d: This function splits the by outliers in the time lag.

Description Usage Arguments Value Examples

View source: R/wrapper3D.R

Description

The length of timeLag must be the the track's length minus 1 and represents the time passed between the fix point acquisition

Usage

1
track.split.3d(track, timeLag, lag = NULL, tolerance = NULL)

Arguments

track

track data.frame with x, y and z coordinates

timeLag

a numeric vector with the time passed between the fix point acquisition

lag

NULL or a manually chosen lag

tolerance

NULL or a manually chosen tolerance

Value

A list containing the splitted tracks.

Examples

1
2
3
4
5
6
track.split.3d(
  niclas,
  timeLag = rep(1, nrow(niclas) - 1) + rnorm(nrow(niclas) - 1,
  mean = 0,
  sd = 0.25)
)

munterfi/eRTG3D documentation built on Feb. 25, 2022, noon