Learn R Programming

tidytransit (version 0.5.1)

filter_stop_times: Filter a stop_times table for a given date and timespan.

Description

Filter a stop_times table for a given date and timespan.

Usage

filter_stop_times(gtfs_obj, extract_date, min_departure_time,
  max_arrival_time)

Arguments

gtfs_obj

a gtfs feed

extract_date

date to extract trips from in YYYY-MM-DD format

min_departure_time

The minimal departure time. Can be given as "HH:MM:SS", hms object or numeric value in seconds.

max_arrival_time

The latest arrival time. Can be given as "HH:MM:SS", hms object or numeric value in seconds

Examples

Run this code
# NOT RUN {
feed_path <- system.file("extdata", "sample-feed-fixed.zip", package = "tidytransit")
g <- read_gtfs(feed_path, local=TRUE)

# Consider precalculating date_service_table for the feed.
g <- set_date_service_table(g)

# filter the sample feed
stop_times <- filter_stop_times(g, "2007-01-06", "06:00:00", "08:00:00")
# }

Run the code above in your browser using DataLab