Skip to content
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 (DB Regio): stop_times für Frankfurter S-Bahnen nicht steigscharf angegeben #161

Open
hbruch opened this issue Dec 11, 2024 · 0 comments
Labels
DELFI Falsche Angaben Hier liegt ein inhaltlicher Fehler vor

Comments

@hbruch
Copy link
Member

hbruch commented Dec 11, 2024

Beschreibe den Fehler
Im Datensatz vom 09.12.2024 sind die stop_time-Angaben der Frankfurter S-Bahn nicht steigscharf angegen.
In vorhergehenden Datensätzen war dies jedoch der Fall.

SQL um das Problem aufzuzeigen (falls zutreffend)
Falls das Problem anhand einer SQL-Abfrage demonstriert werden kann, füge diese hier ein:

-- Anfrage Datensatz 2024-11-30
SELECT s.stop_id, s.stop_name, r.route_short_name, count(*)
    FROM agency a
    JOIN routes r ON a.agency_id = r.agency_id
    JOIN trips t ON r.route_id = t.route_id
    JOIN stop_times st ON st.trip_id = t.trip_id
    JOIN stops s ON st.stop_id = s.stop_id
   WHERE st.stop_id like 'de:06412%'
     AND a.agency_id =  '12201'
   GROUP BY s.stop_id, s.stop_name, r.route_short_name
   ORDER by s.stop_id, r.route_short_name

  ;
┌─────────────────────┬──────────────────────────────────────┬──────────────────┬──────────────┐
│       stop_id       │              stop_name               │ route_short_name │ count_star() │
│       varcharvarcharvarchar      │    int64     │
├─────────────────────┼──────────────────────────────────────┼──────────────────┼──────────────┤
│ de:06412:1008:11:1  │ Frankfurt (Main) Höchst Bahnhof      │ S1               │           96 │
│ de:06412:1008:11:1  │ Frankfurt (Main) Höchst Bahnhof      │ S2               │           25 │
│ de:06412:1008:11:2  │ Frankfurt (Main) Höchst Bahnhof      │ S1               │          270 │
│ de:06412:1008:11:2  │ Frankfurt (Main) Höchst Bahnhof      │ S2               │          202 │
│ de:06412:1008:12:4  │ Frankfurt (Main) Höchst Bahnhof      │ S1               │          188 │
│ de:06412:1008:12:4  │ Frankfurt (Main) Höchst Bahnhof      │ S2               │          223 │
│ de:06412:1008:13:13 │ Frankfurt (Main) Höchst Bahnhof      │ S1               │            1 │
│ de:06412:1008:13:13 │ Frankfurt (Main) Höchst Bahnhof      │ S2
...

-- Anfrage Datensatz 2024-12-11
SELECT s.stop_id, s.stop_name, r.route_short_name, count(*)
    FROM agency a
    JOIN routes r ON a.agency_id = r.agency_id
    JOIN trips t ON r.route_id = t.route_id
    JOIN stop_times st ON st.trip_id = t.trip_id
    JOIN stops s ON st.stop_id = s.stop_id
   WHERE st.stop_id like 'de:06412%'
     AND a.agency_id =  '12201'
   GROUP BY s.stop_id, s.stop_name, r.route_short_name
   ORDER by s.stop_id, r.route_short_name
  ;
┌────────────────┬──────────────────────────────────────────┬──────────────────┬──────────────┐
│    stop_id     │                stop_name                 │ route_short_name │ count_star() │
│    varcharvarcharvarchar      │    int64     │
├────────────────┼──────────────────────────────────────────┼──────────────────┼──────────────┤
│ de:06412:1008  │ Frankfurt (Main) Höchst Bahnhof          │ S1               │          514 │
│ de:06412:1008  │ Frankfurt (Main) Höchst Bahnhof          │ S2               │          360 │
│ de:06412:101   │ Frankfurt (Main) Galluswarte             │ S3               │          209 │
│ de:06412:101   │ Frankfurt (Main) Galluswarte             │ S4               │          265 │
│ de:06412:101   │ Frankfurt (Main) Galluswarte             │ S5               │          354 │
│ de:06412:101   │ Frankfurt (Main) Galluswarte             │ S6               │          489 │
│ de:06412:10_G  │ Frankfurt (Main) Hauptbahnhof            │ S1               │            6 │
│ de:06412:10_G  │ Frankfurt (Main) Hauptbahnhof            │ S2               │           38 │
│ de:06412:10_G  │ Frankfurt (Main) Hauptbahnhof            │ S4               │           11 │
│ de:06412:10_G  │ Frankfurt (Main) Hauptbahnhof            │ S5
...

Aktualisierungszeitpunkt der GTFS-Daten
2024-12-09

Downloadlink der GTFS-Daten
DELFI-GTFS-Feed

@hbruch hbruch added DELFI Falsche Angaben Hier liegt ein inhaltlicher Fehler vor labels Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DELFI Falsche Angaben Hier liegt ein inhaltlicher Fehler vor
Projects
None yet
Development

No branches or pull requests

1 participant