Convert ATOC CIF files to GTFS
atoc2gtfs(
path_in,
silent = TRUE,
ncores = 1,
locations = "tiplocs",
agency = "atoc_agency",
shapes = FALSE,
transfers = TRUE,
missing_tiplocs = TRUE
)
Character, path to ATOC file e.g."C:/input/ttis123.zip"
Logical, should progress messages be suppressed (default TRUE)
Numeric, When parallel processing how many cores to use (default 1)
where to get tiploc locations (see details)
where to get agency.txt (see details)
Logical, should shapes.txt be generated (default FALSE)
Logical, should transfers.txt be generated (default TRUE)
Logical, if locations = tiplocs, then will check for any missing tiplocs against the main file and add them.(default TRUE)
Locations
The .msn file contains the physical locations of stations and other TIPLOC codes (e.g. junctions). However, the quality of the locations is often poor only accurate to about 1km and occasionally very wrong. Therefore, the UK2GTFS package contains an internal dataset of the TIPLOC locations with better location accuracy, which are used by default.
However you can also specify `locations = "file"` to use the TIPLOC locations in the ATOC data or provide an SF data frame of your own.
Or you can provide your own sf data frame of points in the same format as `tiplocs` or a path to a csv file formatted like a GTFS stops.txt
Agency
The ATOC files do not contain the necessary information to build the agency.txt file. Therefore this data is provided with the package. You can also pass your own data frame of agency information.
Other main:
nr2gtfs()