Hi all
I've been making use of OTP's isochrone API for various modes of transport, and I have found it very useful. I'm now wondering if I can use this or another OTP API for "reverse flow" isochrones, where the isochrone represents all the points that can reach a single destination within a given time boundary, i.e. many origins to a single destination, rather than the other way around.
Maarten seems to have raised the same use case a while back in the developers group at
https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!searchin/opentripplanner-dev/reverse|sort:date/opentripplanner-dev/Djipx6QyE30/vzF32kMO1SEJ - the answers gave me hope that I can achieve my goal via OTP. Initially I thought it might be as simple as replacing the
fromPlace query string parameter with
toPlace in the isochrone API call, but this leads to a NullPointerException and an HTTP 500 response because
fromParameter is expected to always be supplied.
I can't see anything obvious in the request parameters of the isochrone API or any other endpoint in the HTTP API that looks like it will do what I'm looking for. Can this be done with a single API request?
Thanks
Michael