download_validator {gtfstools} | R Documentation |
Download MobilityData's GTFS validator
Description
Downloads MobilityData's command line tool to validate GTFS feeds.
Usage
download_validator(path, version = "latest", force = FALSE, quiet = TRUE)
Arguments
path |
A string. The directory where the validator should be saved to. |
version |
A string. The version of the validator that should be
downloaded. Defaults to |
force |
A logical. Whether to overwrite a previously downloaded
validator in |
quiet |
A logical. Whether to hide log messages and progress bars.
Defaults to |
Value
Invisibly returns the normalized path to the downloaded validator.
See Also
Other validation:
validate_gtfs()
Examples
path <- tempdir()
download_validator(path)
# specifying a specific version
download_validator(path, version = "4.0.0")
[Package gtfstools version 1.2.0 Index]