The opentripplanner
package was originally developed to
support OpenTripPlanner v1.3, and has been updated to support each
subsequent release. OpenTripPlanner v2.0 is the next major release, and
this vignette will document the changes within the package to support
OpenTripPlanner v2.0. While most changes for v2.0 are improvements some,
like the removal of the isochrone feature are not. So the package will
continue to support both version 1.5 (the last v1.x) and subsequent v2.x
releases. This vignette will be updated to help users select the best
version for their needs.
Note OpenTripPlanner is undergoing some significant changes at the moment with features being added and removed. To avoid constant updates to the R package we are currently targeting support at v1.5 and v2.2. Other versions may work but are not officially supported.
Different versions of OpenTripPlanner require different version of Java
It is possible to install multiple version of Java on the same computer:
Download Links
If you have multiple version of Java installed you will also need to change the PATH variable to point to the correct version of Java. You can check your current default version of Java in the terminal using
You can check the version of Java accessible to R by using
otp_check_java
and specifying the version of OTP you want
to use.
For example if you wanted to use OTP 2.0 but have Java 8 installed then you would see:
You can select OTP 2.2 using the otp_dl_jar
function.
library(opentripplanner)
# Path to a folder containing the OTP.jar file, change to where you saved the file.
path_data <- file.path(tempdir(), "OTP")
dir.create(path_data)
path_otp <- otp_dl_jar(version = "2.2.0")
otp_dl_demo(path_data)
# Build Graph and start OTP
log1 <- otp_build_graph(otp = path_otp, dir = path_data)
log2 <- otp_setup(otp = path_otp, dir = path_data)
otpcon <- otp_connect(timezone = "Europe/London")
We can download the demo data and build a graph in the usual way.