A multi-modal, multi-platform trip planner with a REST API.
Questions tagged [opentripplanner]
48 questions
1
vote
1 answer
How to use OpenTripPlanner on a web application?
I am new to open trip planner (and OpenStreetMap too), and I would like to use it in a web application, where I would let the user choose preferred options (like travel mode) and even use tags to create a personal route.
Following the tutorial Basic…

Usr
- 2,628
- 10
- 51
- 91
1
vote
0 answers
Parallelizing for loop calling OpenTripPlanner
I have a python script that calls OpenTripPlanner to calculate a travel time matrix between pairs of geolocated points. The python script uses a for loop to calculate one matrix for every departure time and save it as a separate .csv file.
I would…

rafa.pereira
- 13,251
- 6
- 71
- 109
1
vote
1 answer
OpenTripPlanner: How to run standalone instance on a port different from default 8080?
I use this command to get the Grizzly server running:
java -Xmx6G -jar otp-0.19.0-shaded.jar --build Data --inMemory
and it successfuly runs the Grizzly server on 8080. But because I have want to now use it on a machine that has 8080 occupied I…

dimrizo
- 479
- 1
- 5
- 14
1
vote
1 answer
Routers not getting listed
I started
java -Xmx512M -jar /home/ec2-user/OpenTripPlanner/otp-0.20.0-20160422.165451-50-shaded.jar --basePath /home/ec2-user/OpenTripPlanner --server
I have this in the base path
[ec2-user@ip-172-31-31-88 OpenTripPlanner]$ ls -R…

Yash
- 946
- 1
- 13
- 28
0
votes
0 answers
How to use a client for OpenTripPlanner router service to process RouteRequest and obtain RouteResponse?
Hello fellow developers,
I have set up an OpenTripPlanner (OTP) planner service on my server at xx.xx.xx.xx:xxxx/router/default/plan. The service allows me to send a GET request, including the RouteRequest, which I want to process. In return, the…

Chuck Nuris
- 71
- 1
- 6
0
votes
0 answers
Import errors with Jython/opentripplanner even though the file is listed in the directory
I'm trying to use otp to generate some journeys to a list of destinations. I'm starting with the script outlined in this post: https://stackoverflow.com/a/33222627
However, this first import keeps failing.
#!/usr/bin/jython
from…
0
votes
0 answers
Open Trip Planner’s handling of turn restrictions in a local instance
I’ve tried using both Open Trip Planner (1.5) and Coveyal’s r5 to model the impact of street network adjustments. I’ve been using JOSM to add turn restrictions to a locally stored .pbf using the turn restrictions plugin and manually editing…

James DeWeese
- 159
- 1
- 8
0
votes
1 answer
Gtfs files wont work in Open Trip Planner
My question is a duplicate of this question:
GTFS in OpenTripPlanner
, but there arent any solutions in that answer.
My gtfs are loaded correctly and the stops do appear on the map. But OTP doesnt
take into account the bus routes only walking and…

Billy
- 17
- 1
- 4
0
votes
1 answer
OpenTripPlanner and Flutter
Is there a way that I can use OpenTripPlanner in Flutter? I'm able to set it up locally on my laptop with GTFS but I don't know how to implement it in Flutter.
For context, I'm building a public transport journey planner app.
Your help will be…

Boxxy
- 1
0
votes
1 answer
Where to put gtfs and osm data for the open trip planner?
I am trying to use open trip planner and I’m using the src/client/index.html to view the gtfs and osm data. What file do I edit to point the data to use for otp? Where do I put the gtfs and osm data so I can view it through the index.html provided…

Andrew
- 27
- 2
0
votes
0 answers
R - package otpr - no trip found
Using R and the package otpr I am trying to run the example
library(otpr)
otpcon <- otp_connect()
otp_get_distance(
otpcon,
fromPlace = c(53.48805,-2.24258),
toPlace =…

Jesper Hybel Pedersen
- 263
- 3
- 14
0
votes
1 answer
OpenTripPlanner on React Native
I am writing my bachelor's thesis on cross-platform applications for transport management systems.
The idea is to create a React Native application with OpenTripPlanner. I have found this - https://github.com/opentripplanner/otp-react-redux and am…

Gundega
- 1
0
votes
1 answer
Open Trip Planner Real-Time Testing
I am setting up a OTP instance on my local machine and I have at my disposal all the necessary feeds (Static and Real-Time). Some of these have some issues regarding the quality of data but overall they are working and being processed.
So far I have…

Steven
- 23
- 7
0
votes
1 answer
OpenTripPlanner is not returning stops within a given radius
OTP 1.4.0 will return all of the stops in the GTFS feed but will not return nearby stops when provided with lat/lon and radius. Does anyone know why this is happening and how to resolve…

Damion
- 21
- 5
0
votes
1 answer
Open Trip Planner over HTTPS
I'm trying to deploy a solution using Open Trip Planner, and everything is OK if I use HTTP, but apparently the HTTPS connection doesn't work.
I've followed the official docs but with no success, apparently the internal server is running, it logs…

Leonardo Spina
- 680
- 6
- 15