select_without_gaps: Select all coordinates without gap

Description Usage Arguments Author(s) See Also Examples

View source: R/select_without_gaps.R

Description

Select all coordinates without gap

Usage

1
select_without_gaps(tracks, cgaps)

Arguments

tracks

psyo. Data frame with tracks.

cgaps

character. Column name of tracks that marks gaps with TRUE.

Author(s)

Benjamin Ziepert. Please send feedback to: feedback-psyosphere@analyse-gps.com.

See Also

mark_time_gaps, mark_speed_gaps, select_gaps

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
# Get data
data(psyo_rounds2)
tracks <- psyo_rounds2

# Calculations
tracks <- average_duplicates(tracks)
tracks <- t_time_difference(tracks)

tracks <- mark_time_gaps(tracks)

tracks <- select_without_gaps(tracks,"time_gap")

## End(Not run)

psyosphere documentation built on July 2, 2020, 12:08 a.m.