我如何获得每辆经过停靠站的公共汽车的下2个停靠站时间(GTFS数据)?

时间:2018-07-21 11:47:39

标签: mysql sql gtfs

我的目标很简单。在我的应用程序中,用户将按一个停靠点,它将打开一个屏幕,显示该停靠点的每条路线(公交车),并显示该停靠点的每条路线的下2个停靠时间。我想在用户按下停止ID为1571的停止时显示的示例:

公交车经过569号车站

2号公路
23分钟(7:23 AM)
43分钟(7:43 AM)

37号公路
15分钟(7:15 AM)
45分钟(7:45 AM)

返回的示例数据(我想要的):
st.departure_time,rte.route_long_name,tr.trip_headsign
市区2号线07:23:00
市区2号线07:43:00
07:15:00,市区37号公路
07:45:00,市区37号公路

应注意,停止码为569,停止码为1571。根据GTFS文档,用户通常会搜索停止码(569),但在内部,停止码(1571)是什么被搜索。这些来自GTFS软件包中的stops.txt文件。

该示例显示2条路线(2和37),但可能会有更多路线,可能只有1条路线,或者在不久的将来根本没有任何路线经过此停靠点(我想忽略这样的时间)距离超过24小时)。

免责声明:我对SQL不太满意。我能够创建一个查询来检索相关数据,但是,它返回的数据比每条路线的下两个停止时间要多。我正在应用程序中对其进行解析以获取所需的结果,但是我觉得改善查询条件会容易得多。

SELECT stop_times.departure_time, routes.route_long_name, trips.trip_headsign, calendar.monday, calendar.tuesday, calendar.wednesday, calendar.thursday, calendar.friday, calendar.saturday, calendar.sunday
FROM stop_times, trips, routes, calendar
WHERE stop_times.stop_id = '1571' AND stop_times.trip_id = trips.trip_id AND trips.route_id = routes.route_id AND trips.service_id = calendar.service_id AND 20180801 >= calendar.start_date AND 20180801 <= calendar.end_date
ORDER BY routes.route_short_name, trips.service_id, stop_times.departure_time

以下是相关表格。我将数据完全按照GTFS文档中的说明存储在数据库中。

stops.txt示例行:
enter image description here

routes.txt示例行:
enter image description here

trips.txt示例行:
enter image description here

stop_times.txt示例行:
enter image description here

calendar.txt示例行:
enter image description here

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

您已经可以做的一件事就是使用标准的JOIN表示法。

它更具可读性,并且不易引起意外的笛卡尔联接。

使用简短的别名可以使SQL更简洁。

SET @StopId = '1571';
SET @CalDate = cast('2018-08-01' as date);

SELECT 
 st.departure_time, 
 rte.route_long_name, 
 tr.trip_headsign,
 cal.monday, cal.tuesday, cal.wednesday, cal.thursday, cal.friday, 
 cal.saturday, cal.sunday
FROM stop_times AS st
JOIN trips AS tr ON tr.trip_id = st.trip_id
JOIN routes AS rte ON rte.route_id = tr.route_id
JOIN calendar AS cal ON cal.service_id = tr.service_id
WHERE st.stop_id = @StopId
AND @CalDate between cal.start_date and cal.end_date
ORDER BY rte.route_short_name, tr.service_id, st.departure_time

至于每条路线要获得下2站的要求?

这是一个示例SQL。
其中包括工作日的支票。不知道是否需要这样做,这只是为了演示。

可以找到here

SET @StopId = 1571;
SET @CalDate = cast('2018-08-01' as date);
SET @StartTime = cast('08:00:00' as time);

SELECT departure_time, route_long_name, trip_headsign
FROM 
(
    SELECT 
     st.departure_time,
     tr.service_id,
     rte.route_short_name,
     rte.route_long_name,
     tr.trip_headsign,
     @num := if(@prev_routeid = tr.route_id, @num + 1, 1) as RN,
     @prev_routeid := tr.route_id as route_id
    FROM stop_times AS st
    JOIN trips AS tr ON tr.trip_id = st.trip_id
    JOIN routes AS rte ON rte.route_id = tr.route_id
    JOIN calendar AS cal ON cal.service_id = tr.service_id
    -- LEFT JOIN stops AS s on s.stop_id = st.stop_id
    CROSS JOIN (SELECT @num := 0, @type := '') AS vars
    WHERE st.stop_id = @StopId
    AND @CalDate between cal.start_date and cal.end_date
    AND (CASE WEEKDAY(@CalDate)
        WHEN 0 THEN monday 
        WHEN 1 THEN tuesday 
        WHEN 2 THEN wednesday
        WHEN 3 THEN thursday
        WHEN 4 THEN friday
        WHEN 5 THEN saturday
        WHEN 6 THEN sunday
        END) = 1
    AND st.departure_time >= @StartTime
    ORDER BY tr.route_id, st.departure_time
) Q
WHERE RN <= 2
ORDER BY route_short_name, service_id, departure_time;