Started to use open trip planner. The goal is to have fixed public transport information from gtfs files combined with osm data. I can get the server running but can't plan routes. I'm trying with a minimal set of GTFS data.
I can list all my stops with http://localhost:8080/otp/routers/default/index/stops and i'm also sure the osm map is within the boundaries. The server on start-up doesn't throw any gtfs errors.
The command i use is:
http://localhost:8080/otp/routers/default/plan?fromPlace=9.93414,-84.08453&toPlace=10.0147,-84.2154&time=09:02am&date=10-29-2020&mode=TRANSIT,WALK&maxWalkDistance=5000&arriveBy=falseEvery time, with every version of OTP, even the new 2.0 rc1 i get the OUTSIDE_BOUNDS error saying in the error message: Trip is not possible. You might be trying to plan a trip outside the map data boundary. I'm sure though the osm data provided includes those.
This is the response:
{"requestParameters":{"fromPlace":" 9.93414,-84.08453 "},"error":{"id":400,"msg":"Trip is not possible. You might be trying to plan a trip outside the map data boundary.","message":"OUTSIDE_BOUNDS","missing":["to"],"noPath":true},"debugOutput":{"precalculationTime":0,"pathCalculationTime":0,"pathTimes":[],"renderingTime":0,"totalTime":0,"timedOut":false},"elevationMetadata":{"ellipsoidToGeoidDifference":10.931726823061318,"geoidElevation":false}}
the server log shows: INFO (GraphPathFinder.java:381) Vertex not found: 10.0036,-84.20873 : null,null
I'm getting this error with all coordinates i'm trying to use. Even the exact ones of some of the stops I'm feeding via GTFS.
It seems like a general problem. I just have no idea what exactly.
Any help is highly appreciated.
PS: Also the web interface never started working with me. According to https://docs.opentripplanner.org/en/latest/Basic-Tutorial/ it should be available. All i get when opening the url localhost:8080 is an xml reply with the server stats.