Plot GTFS stops and trips

# S3 method for tidygtfs
plot(x, ...)

Arguments

x

a gtfs_obj as read by read_gtfs()

...

further specifications

Value

plot

Examples

# \donttest{
local_gtfs_path <- system.file("extdata",
                              "google_transit_nyc_subway.zip",
                              package = "tidytransit")
nyc <- read_gtfs(local_gtfs_path)
plot(nyc)

# }