-
Notifications
You must be signed in to change notification settings - Fork 0
RPCs
Jon edited this page Jan 1, 2017
·
7 revisions
timetable.next_visit(station, route, timestamp) -> (ETA, ETD)
-
rpcReturns the next estimated arrival and departure pair of
route
atstation
where the departure time is aftertimestamp
. timetable.next_visits(station, route, timestamp, n) -> [(ETA, ETD)]
-
rpcReturns the next
n
estimated arrivals and departure pairs ofroute
atstation
where the departure times are aftertimestamp
. timetable.last_visit(station, route, timestamp) -> (ETA, ETD)
-
rpcReturns the last estimated arrival and departure pair of
route
atstation
where the departure time is beforetimestamp
. timetable.last_visits(station, route, timestamp, n) -> [(ETA, ETD)]
-
rpcReturns the last
n
estimated arrivals and departure pairs ofroute
atstation
where the departure times are beforetimestamp
.