Prints a GTFS object suppressing the class attribute and hiding the
validation_result attribute, created with validate_gtfs().
Usage
# S3 method for class 'tidygtfs'
print(x, ...)Arguments
- x
a tidygtfs object as read by
read_gtfs()- ...
Optional arguments ultimately passed to
format.
Examples
if (FALSE) { # \dontrun{
path = system.file("extdata",
"nyc_subway.zip",
package = "tidytransit")
g = read_gtfs(path)
print(g)
} # }