-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DELFI: Doppelte Trips #140
Comments
Nachtrag: |
Hallo Holger, viele Grüße |
Guten Morgen Dietmar, Verwendetes Statement ( SELECT DISTINCT s.stop_id
FROM gtfs_trips t
JOIN gtfs_stop_times s ON t.trip_id = s.trip_id
WHERE t.route_id LIKE 'de:vvs:%D'
AND replace(stop_id,'_G','') NOT IN (SELECT DHID FROM zhv); |
Die o.g. Halte Da mittlerweile der SELECT DISTINCT s.stop_id
FROM gtfs_trips t
JOIN gtfs_stop_times s ON t.trip_id = s.trip_id
WHERE t.route_id LIKE 'de:vvs:%_D_%'
AND replace(stop_id,'_G','') NOT IN (SELECT DHID FROM zhv); Die Linie N44 hat weiterhin abweichende Haltestellen: SELECT DISTINCT st.stop_sequence, t.route_id, st.stop_id, st2.stop_id, t2.route_id
FROM gtfs_trips t, gtfs_trips t2
JOIN gtfs_stop_times st ON t.trip_id=st.trip_id
JOIN gtfs_stop_times st2 ON t2.trip_id=st2.trip_id AND st.stop_sequence = st2.stop_sequence
WHERE t.route_id = 'de:vvs:34044_:_D_3'
AND t2.route_id = 'de:vvs:34044_:_700';
|
Beschreibe den Fehler
Der Delfi-Feed enthält doppelte Trips verschiedener Agencies.
Als Beispiel sei die N44 Nachtbuslinie der VVS hier dargestellt:
Bereits die route_id wird als Duplikat unterschiedlicher Agencies (8096 Regional-Busse RBS bzw 7998 Nachtbusse (Regional)) in routes.txt geführt:
die calendar.txt Einträge sind identisch, die calendar_dates überlappend.
Mutmaßliche Ursache für scheiterende Duplikaterkennung in der GTFS-Ausleitung sind mutmaßlich Abweichungen der in den stop_times referenzierten Stops:
Aktualisierungszeitpunkt der GTFS-Daten:
29.1.2024
Downloadlink der GTFS-Daten:
Open-Data ÖPNV
The text was updated successfully, but these errors were encountered: