extract_segment | R Documentation |
It is assumed that the dataset is grouped by flight id and that position reports are sorted by ascending timestamp.
extract_segment(prs, vert_limit = 5)
prs |
dataset containing position reports.
Two variables are used: |
vert_limit |
the maximum absolute vertical rate for a segment to be considered level (default = 5 feet/s) |
a dataset of level segments. A level segment is defined by its beginning and end 4D position.
Other analysis:
cumulative_distance()
,
cumulative_time()
,
filter_outlier()
,
smooth_positions()
## Not run:
cumulative_time(poss)
f <- cprs %>%
filter(callsign == "RYR40WJ") %>%
arrange(timestamp_track) %>%
rename(timestamp = timestamp_track) %>%
mutate(altitude = flight_level * 100)
extract_segment(f)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.