Displaying 1 result from an estimated 1 matches for "station_d".
Did you mean:
station_id
2006 Mar 29
1
Query a timetable (cute solution?)
...pany
Service = eg. Number 10 bus
Run = Column on timetable
Stop = Cell on timetable
Station = Row on timetable
Really provider and service dont come in to the equation and can be
ignored.
Station_A 09:45 11:23 12:01 2:30
Station_B 09:47 11:25 12:05 2:33
Station_C 09:55 11:31 12:15 2:37
Station_D 10:10 11:42 12:23 2:43
Station_E 10:25 11:45 12:30 2:51
So I need to find all runs (columns) where the end_station follows the
start_station.
This is the code I have at the moment, which finds two stations in the
same run, and does not take in to account either the start_time or
end_stat...