-
Notifications
You must be signed in to change notification settings - Fork 3
TwoMinutes
The intent is to get OTP running on your system with pre-built binaries and data (for Portland, Oregon), so you can see OTP running locally quickly (goal: less than 10 minutes, network delays downloading things aside).
-
Download http://maps5.trimet.org/otp-dev/otp.zip (~60 megs). BTW, otp.zip is packaged nightly from the latest OTP source code.
-
Unzip the contents to the root (/) directory (or C:\ for Windows users). This will create an otp directory directly under the root containing the pre-built OTP binaries.
NOTE: it's very important to have the pre-built web app run from the /otp (or C:\otp) directory. If you want to run it from another location, you'll need to edit the file WEB-INF/classes/data-sources.xml within /otp/webapps/opentripplanner-api-webapp.war.
-
Download pre-built Graph.obj file from http://maps5.trimet.org/otp-dev/Graph.obj (~370 megs ... IMPORTANT: do a mouse right-click on this hyperlink, then 'Save link as' on this url).
-
Move
Graph.obj
to/otp/Graph.obj
-
Open a command shell (
cmd.exe
on Windows); From here on, we'll be typing things into the shell, including starting OTP with the start-server script. -
Type:
java -version
into the command shell. You should see something likejava version "1.6.0_1"
. If you don't have java installed (or if you're running a version lower than 1.6), you will need to download a java environment from http://java.sun.com. The latest java 1.6 JRE or JDK is recommended. Java 1.6 is usually installed on most PCs (look in c:\Program Files) and Macs. -
cd to /otp/
-
bin/start-server.sh (or bin\start-server.bat for Windows users). Note that in doing so you are starting up a web server on port 8080 and you can't have more than one server on the same port, so make sure you don't have other servers running on 8080.
-
Open http://localhost:8080/opentripplanner-webapp in a web browser.
-
To kill OTP, you can either hit
control-C
in the command shell (or simply close the window).
See the 5 minute detailed dive-in for instructions on how to build your own OTP Graph.obj...