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