otp_validate_config {opentripplanner} | R Documentation |
Validate Config Object
Description
Checks if the list of OTP configuration options is valid
Usage
otp_validate_config(config, type = attributes(config)$config_type, version = 1)
Arguments
config |
A named list made/modified from 'otp_make_config()' |
type |
type of config file |
version |
version of OPT e.g. 1 or 2 |
Details
Performs basic validity checks on class, max/min values etc as appropriate, some of more complex parameters are not checked. For more details see:
http://docs.opentripplanner.org/en/latest/Configuration http://dev.opentripplanner.org/javadoc/1.3.0/org/opentripplanner/routing/core/RoutingRequest.html
See Also
Other setup:
otp_build_graph()
,
otp_check_java()
,
otp_check_version()
,
otp_dl_demo()
,
otp_dl_jar()
,
otp_make_config()
,
otp_setup()
,
otp_stop()
,
otp_write_config()
Examples
## Not run:
conf <- otp_make_config("build")
otp_validate_config(conf)
## End(Not run)
[Package opentripplanner version 0.5.2 Index]