Takes a list of data frames representing the GTFS format and saves them as GTFS Zip file.
gtfs_write(
gtfs,
folder = getwd(),
name = "gtfs",
stripComma = TRUE,
stripTab = TRUE,
stripNewline = TRUE,
quote = FALSE
)
named list of data.frames
folder to save the gtfs file to
the name of the zip file without the .zip extension, default "gtfs"
logical, should commas be stripped from text, default = TRUE
logical, should tab be stripped from text, default = TRUE
logical, should newline tag be stripped from text, default = TRUE
logical, should strings be quoted, default = FALSE, passed to `data.table::fwrite`