Last active
August 29, 2015 14:22
-
-
Save geoah/b205297865384b88ad45 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 OpenTripPlanner (OTP) 0.19.0 SNAPSHOT Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ubuntu 14.04 OpenTripPlanner (OTP) 0.19.0 SNAPSHOT Installation | |
add-apt-repository ppa:webupd8team/java | |
apt-get update | |
apt-get install -y oracle-java8-installer wget git-core | |
rm -rf /var/lib/apt/lists/* | |
mkdir -p /var/otp/graphs | |
wget -q -O /var/otp/otp.jar http://dev.opentripplanner.org/jars/otp-0.19.0-SNAPSHOT.jar | |
java -Xmx6G -Xverify:none -jar /var/otp/otp.jar --help | |
cd /var/otp | |
mkdir pdx && cd pdx | |
wget https://s3.amazonaws.com/metro-extracts.mapzen.com/munich_germany.osm.pbf | |
java -Xmx6G -Xverify:none -jar /var/otp/otp.jar --build /var/otp/pdx | |
mkdir /var/otp/graphs | |
mv /var/otp/pdx/Graph.obj /var/otp/graphs | |
java -Xmx6G -Xverify:none -jar /var/otp/otp.jar --server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment