Description Usage Arguments Details Value Examples
This function selects points that are too far away from its next neighboring points.
1 | filterForClosePoints(track, threshold)
|
track |
List of trajectory. |
threshold |
Distance threshold. Unit based on crs of track of Points. |
The distance can be determined by the threshold. Whenever the distance to one direct neighboring point is less than the threshold, the point will be kept. It has the main purpose to identify outliers of GPS measurements when the receiver misslocated itself
Returns all entries of the trackOfPoints
that are close enough.
1 2 3 4 5 | ## Not run:
track = readGPXFile("./inst/extdata/track_run.gpx")
filteredTrack = filterForClosePoints(track, 2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.