Learn R Programming

gtfsrouter (version 0.1.2)

summary.gtfs: summary.gtfs

Description

summary.gtfs

Usage

# S3 method for gtfs
summary(object, ...)

Value

Nothing; this function only prints a summary to the console.

Arguments

object

A gtfs object to be summarised

...

ignored here

See Also

Other additional: go_home(), go_to_work(), process_gtfs_local()

Examples

Run this code
# Examples must be run on single thread only:
nthr <- data.table::setDTthreads (1)

berlin_gtfs_to_zip ()
f <- file.path (tempdir (), "vbb.zip")
g <- extract_gtfs (f)
summary (g)
g <- gtfs_timetable (g)
summary (g) # also summarizes additional timetable information

data.table::setDTthreads (nthr)

Run the code above in your browser using DataLab