[GIS] OpenTripPlanner rest api request

opentripplannerrouting

following this tutorial I set up a OpenTripPlanner (version 0.11.0) stand alone server.
It works very well at

 http://localhost:8080/index.html

and for example at

http://localhost:8080/otp/routers/default/index/routes 

returns a routes json.

Now I'd make rest api request (I'm interesting to Isochrone api).
I try return isochrone geometry as a set of GeoJSON polygons at the url specified at this link but doesn't work.

Can you suggest the right url to get Isochrone GeoJSON?

Best Answer

I am pretty much in the same boat as you but I think I have figured out how to create an isochrone. I am using version 0.18.0, not sure if that is relevant or not.

Here is where I found the example

Here's a sample isochrone that I got

http://localhost:8080/otp/routers/default/isochrone?&fromPlace=39.78,-86.1476&date=2015/01/09&time=12:00:00&mode=WALK&&walkSpeed=5&cutoffSec=4000

It looks pretty intuitive, but I don't think the docs that I found are up to date so I have no idea how to alter the isochrone except in simple ways. Hope this is useful.

Related Question