interpolate_stop_times: Interpolate missing stop_times linearly Uses...

View source: R/time.R

interpolate_stop_timesR Documentation

Interpolate missing stop_times linearly Uses shape_dist_traveled if available

Description

Interpolate missing stop_times linearly Uses shape_dist_traveled if available

Usage

interpolate_stop_times(x, use_shape_dist = TRUE)

Arguments

x

tidygtfs object or stop_times table

use_shape_dist

if available, use shape_dist_traveled column for time interpolation. If shape_dist_traveled is missing, times are interpolated equally between stops.

Value

tidygtfs or stop_times with interpolated arrival and departure times

Examples

## Not run: 
data(gtfs_duke)
print(gtfs_duke$stop_times[1:5, 1:5])

gtfs_duke_2 = interpolate_stop_times(gtfs_duke)
print(gtfs_duke_2$stop_times[1:5, 1:5])

gtfs_duke_3 = interpolate_stop_times(gtfs_duke, FALSE)
print(gtfs_duke_3$stop_times[1:5, 1:5])

## End(Not run)

tidytransit documentation built on July 9, 2023, 7:30 p.m.