mfdz / GTFS-Issues

Documentation and Tracking of Issues in GTFS- and GTFS-RT Feeds
36 stars 3 forks source link

VBB: Steige mehrfach als Stop / unterschiedliche Steige mit gleicher Koordinate #80

Open hbruch opened 2 years ago

hbruch commented 2 years ago

Beschreibe den Fehler Für Brandenburg Hauptbahnhof liegen alle Steige der Bus- und Bahnhalte auf der gleichen Koordinate. Zudem sind die gleichen Gleise mehrfach als unterschiedliche stops in der stops.txt enthalten:

$ grep “Brandenburg, Hauptbahnhof” stops.txt
000008010060,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“”,“”
900000275110,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,1,,,“”,“900000275110 5742 Brandenburg, Hauptbahnhof”
240000011001,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“1",“”
240000011003,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“3",“”
240000011012,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“4",“”
240000011011,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“5",“”
710008010060,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“”,“”
250000050204,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“4",“”
250000050205,“”,“Brandenburg, Hauptbahnhof”,,“52.400794000000",“12.566036000000”,0,900000275110,,“5",“”

Referenz GTFS Best practices

Aktualisierungszeitpunkt der GTFS-Daten:

  1. November 2021

Downloadlink der GTFS-Daten: https://www.vbb.de/fileadmin/user_upload/VBB/Dokumente/API-Datensaetze/GTFS.zip

OpenDataVBB commented 2 years ago

Aktuell werden im GTFS die einzelnen Masten dargestellt, ziehen sich die Koordinate aber immer von der parent_station. Das ist zur Zeit bei allen Haltestellen so. Die Umstellung auf eine mastscharfe Auskunft und somit auch der korrekten Abbildung im GTFS laufen.

Dass Plattform 4 und 5 doppelt auftauchen kommt davon, dass Bus- und Bahnsteige hier die gleiche Nummer verwenden.

OpenDataVBB commented 2 years ago

Der neue Datensatz ist jetzt verfügbar und wird wöchentlich aktualisiert vbb.de/vbbgtfs. Feedback gerne an api@vbb.de senden.

derhuerst commented 2 years ago

Das Problem besteht immer noch im VBB-Datensatz vom 4.3. (edit: und vom 4.1.):

SELECT
    stops.stop_id,
    stops2.stop_id as duplicate_stop_id,
    stops.stop_name
FROM (
    SELECT
        stops.*,
        stations.stop_name as station_name,
        stations.location_type as station_location_type,
        stations.stop_loc as station_loc
    FROM stops
    LEFT JOIN stops stations ON stations.stop_id = stops.parent_station
) stops
JOIN stops stops2 ON stops2.parent_station = stops.parent_station
WHERE True
AND stops.stop_id != stops2.stop_id AND stops.stop_id < stops2.stop_id
AND stops.stop_name = stops2.stop_name
AND stops.stop_loc = stops2.stop_loc
stop_id duplicate_stop_id stop_name
000300022022 000300022088 U Hansaplatz (Berlin)
000300258040 000300258229 S+U Berlin Hauptbahnhof
000300258040 000300258091 S+U Berlin Hauptbahnhof
000300258049 000300258187 S+U Berlin Hauptbahnhof
000300258077 000300258225 S+U Berlin Hauptbahnhof
000300258078 000300258226 S+U Berlin Hauptbahnhof
000300258089 000300258227 S+U Berlin Hauptbahnhof
000300258090 000300258228 S+U Berlin Hauptbahnhof
000300258091 000300258229 S+U Berlin Hauptbahnhof
000300258110 000300258176 S+U Berlin Hauptbahnhof
000300258111 000300258177 S+U Berlin Hauptbahnhof
000300258112 000300258178 S+U Berlin Hauptbahnhof
000300258113 000300258179 S+U Berlin Hauptbahnhof
000300258114 000300258180 S+U Berlin Hauptbahnhof
000300258115 000300258181 S+U Berlin Hauptbahnhof
000300258020 000300258076 S+U Berlin Hauptbahnhof
000300258021 000300258179 S+U Berlin Hauptbahnhof
000300258021 000300258113 S+U Berlin Hauptbahnhof
000300258031 000300258177 S+U Berlin Hauptbahnhof
000300258031 000300258111 S+U Berlin Hauptbahnhof
000300258032 000300258180 S+U Berlin Hauptbahnhof
000300258032 000300258114 S+U Berlin Hauptbahnhof
000300258039 000300258178 S+U Berlin Hauptbahnhof
000300258039 000300258112 S+U Berlin Hauptbahnhof
000300301026 000300301057 U Bundestag (Berlin)
000300105021 000300105034 U Kurfürstenstr. (Berlin)
000300165082 000300165091 S+U Gesundbrunnen Bhf (Berlin)
000300165077 000300165090 S+U Gesundbrunnen Bhf (Berlin)
000300165034 000300165040 S+U Gesundbrunnen Bhf (Berlin)
000300165033 000300165048 S+U Gesundbrunnen Bhf (Berlin)
000300165021 000300165032 S+U Gesundbrunnen Bhf (Berlin)
000300113021 000300113083 U Voltastr. (Berlin)
000300114021 000300114083 U Bernauer Str. (Berlin)
000300215007 000300215009 S Humboldthain (Berlin)
000300141012 000300141065 U Reinickendorfer Str. (Berlin)
000300024013 000300024026 U Amrumer Str. (Berlin)
000300024021 000300024094 U Amrumer Str. (Berlin)
000300024019 000300024095 U Amrumer Str. (Berlin)
000300017020 000300017076 U Leopoldplatz (Berlin)
000300017020 000300017098 U Leopoldplatz (Berlin)
000300017076 000300017098 U Leopoldplatz (Berlin)
000300017023 000300017061 U Leopoldplatz (Berlin)
000300158011 000300158064 S+U Wedding (Berlin)
000300158015 000300158044 S+U Wedding (Berlin)
000300019032 000300019059 U Osloer Str. (Berlin)
000300019032 000300019092 U Osloer Str. (Berlin)
000300019059 000300019092 U Osloer Str. (Berlin)
000300139022 000300139065 U Rehberge (Berlin)
000300138022 000300138065 U Afrikanische Str. (Berlin)
000300146022 000300146065 U Kochstr./Checkpoint Charlie (Berlin)
000300104051 000300104062 U Hallesches Tor (Berlin)
000300104056 000300104064 U Hallesches Tor (Berlin)
000300102042 000300102078 U Kottbusser Tor (Berlin)
000300102020 000300102073 U Kottbusser Tor (Berlin)
000300102020 000300102084 U Kottbusser Tor (Berlin)
000300102020 000300102047 U Kottbusser Tor (Berlin)
000300102073 000300102084 U Kottbusser Tor (Berlin)
000300102047 000300102073 U Kottbusser Tor (Berlin)
000300102047 000300102084 U Kottbusser Tor (Berlin)
000300103022 000300103035 U Prinzenstr. (Berlin)
000300041020 000300041075 U Südstern (Berlin)
000300006055 000300006062 U Mehringdamm (Berlin)
000300006031 000300006050 U Mehringdamm (Berlin)
000300052011 000300052073 U Halemweg (Berlin)
000300095023 000300095034 U Sophie-Charlotte-Platz (Berlin)
000300095021 000300095038 U Sophie-Charlotte-Platz (Berlin)
000300096035 000300096050 U Deutsche Oper (Berlin)
000300096032 000300096060 U Deutsche Oper (Berlin)
000300057015 000300057053 U Richard-Wagner-Platz (Berlin)
000300002032 000300002110 S+U Zoologischer Garten Bhf (Berlin)
000300002035 000300002225 S+U Zoologischer Garten Bhf (Berlin)
000300131023 000300131028 U Augsburger Str. (Berlin)
000300131021 000300131035 U Augsburger Str. (Berlin)
000300009022 000300009063 U Kurfürstendamm (Berlin)
000300009066 000300009099 U Kurfürstendamm (Berlin)
000300009026 000300009053 U Kurfürstendamm (Berlin)
000300106008 000300106009 U Uhlandstr. (Berlin)
000300056012 000300056072 U Adenauerplatz (Berlin)
000300233042 000300233043 S Charlottenburg Bhf (Berlin)
000300218009 000300218016 S Messe Nord/ICC (Berlin)
000300218006 000300218012 S Messe Nord/ICC (Berlin)
000300059059 000300059077 U Wilmersdorfer Str. (Berlin)
000300059024 000300059059 U Wilmersdorfer Str. (Berlin)
000300059024 000300059077 U Wilmersdorfer Str. (Berlin)
000300043033 000300043066 U Altstadt Spandau (Berlin)
000300043026 000300043037 U Altstadt Spandau (Berlin)
000300043022 000300043042 U Altstadt Spandau (Berlin)
000300043021 000300043041 U Altstadt Spandau (Berlin)
000300043020 000300043040 U Altstadt Spandau (Berlin)
000300164027 000300164065 S+U Rathaus Spandau (Berlin)
000300164058 000300164081 S+U Rathaus Spandau (Berlin)
000300164071 000300164087 S+U Rathaus Spandau (Berlin)
000300044013 000300044073 U Zitadelle (Berlin)
000300044018 000300044076 U Zitadelle (Berlin)
000300044015 000300044020 U Zitadelle (Berlin)
000300048022 000300048075 U Haselhorst (Berlin)
000300051014 000300051074 U Siemensdamm (Berlin)
000300281012 000300281013 Berlin, Albrechtshof Bhf
000300213008 000300213010 S Halensee (Berlin)
000300011023 000300011036 U Fehrbelliner Platz (Berlin)
000300011018 000300011048 U Fehrbelliner Platz (Berlin)
000300011047 000300011073 U Fehrbelliner Platz (Berlin)
000300010022 000300010096 U Spichernstr. (Berlin)
000300010022 000300010049 U Spichernstr. (Berlin)
000300010049 000300010096 U Spichernstr. (Berlin)
000300010019 000300010036 U Spichernstr. (Berlin)
000300130021 000300130030 U Hohenzollernplatz (Berlin)
000300008041 000300008072 U Berliner Str. (Berlin)
000300008025 000300008041 U Berliner Str. (Berlin)
000300008025 000300008072 U Berliner Str. (Berlin)
000300129011 000300129031 U Rüdesheimer Platz (Berlin)
000300122014 000300122022 U Krumme Lanke (Berlin)
000300125012 000300125022 U Freie Universität (Thielplatz) (Berlin)
000300128014 000300128035 U Breitenbachplatz (Berlin)
000300124020 000300124035 U Oskar-Helene-Heim (Berlin)
000300127011 000300127021 U Podbielskiallee (Berlin)
000300040022 000300040042 U Kleistpark (Berlin)
000300040049 000300040074 U Kleistpark (Berlin)
000300154019 000300154034 S+U Innsbrucker Platz (Berlin)
000300060021 000300060044 U Viktoria-Luise-Platz (Berlin)
000300046022 000300046074 U Bayerischer Platz (Berlin)
000300046022 000300046045 U Bayerischer Platz (Berlin)
000300046045 000300046074 U Bayerischer Platz (Berlin)
000300001072 000300001092 U Nollendorfplatz (Berlin)
000300001024 000300001063 U Nollendorfplatz (Berlin)
000300001023 000300001092 U Nollendorfplatz (Berlin)
000300001023 000300001072 U Nollendorfplatz (Berlin)
000300330022 000300330053 S+U Yorckstr. (Großgörschenstr.) (Berlin)
000300014024 000300014077 S+U Yorckstr. (Berlin)
000300027021 000300027043 U Walther-Schreiber-Platz (Berlin)
000300027044 000300027095 U Walther-Schreiber-Platz (Berlin)
000300025027 000300025095 U Friedrich-Wilhelm-Platz (Berlin)
000300012030 000300012076 S+U Rathaus Steglitz (Berlin)
000300012071 000300012093 S+U Rathaus Steglitz (Berlin)
000300012041 000300012062 S+U Rathaus Steglitz (Berlin)
000300012101 000300012149 S+U Rathaus Steglitz (Berlin)
000300026014 000300026039 U Schloßstr. (Berlin)
000300251012 000300251015 S Osdorfer Str. (Berlin)
000300237032 000300237053 S Lichterfelde West (Berlin)
000300237022 000300237033 S Lichterfelde West (Berlin)
000300148004 000300148011 U Paradestr. (Berlin)
000300157026 000300157053 S+U Tempelhof (Berlin)
000300157022 000300157063 S+U Tempelhof (Berlin)
000300015022 000300015059 U Hermannplatz (Berlin)
000300015023 000300015083 U Hermannplatz (Berlin)
000300015061 000300015069 U Hermannplatz (Berlin)
000300038022 000300038075 U Rathaus Neukölln (Berlin)
000300037011 000300037021 U Karl-Marx-Str. (Berlin)
000300121022 000300121080 U Leinestr. (Berlin)
000300120021 000300120084 U Boddinstr. (Berlin)
000300156017 000300156086 S+U Hermannstr. (Berlin)
000300156032 000300156065 S+U Hermannstr. (Berlin)
000300035014 000300035075 U Blaschkoallee (Berlin)
000300034016 000300034028 U Parchimer Allee (Berlin)
000300033011 000300033021 U Britz-Süd (Berlin)
000300032020 000300032076 U Lipschitzallee (Berlin)
000300028022 000300028075 U Johannisthaler Chaussee (Berlin)
000300030060 000300030074 U Zwickauer Damm (Berlin)
000300031020 000300031077 U Wutzkyallee (Berlin)
000300029036 000300029076 U Rudow (Berlin)
D_000300262007 D_de:11000:900085105::1 S Alt-Reinickendorf (Berlin)
000300135023 000300135063 U Otisstr. (Berlin)
000300137018 000300137065 U Kurt-Schumacher-Platz (Berlin)
000300108024 000300108079 U Lindauer Allee (Berlin)
000300108021 000300108084 U Lindauer Allee (Berlin)
000300136022 000300136066 U Scharnweberstr. (Berlin)
000300261031 000300261041 S Tegel (Berlin)
000300163012 000300163086 S+U Wittenau (Berlin)
000300162025 000300162085 S+U Karl-Bonhoeffer-Nervenklinik (Berlin)
000300005524 000300005664 S+U Friedrichstr. Bhf (Berlin)
000300003137 000300003160 S+U Alexanderplatz Bhf (Berlin)
000300003129 000300003180 S+U Alexanderplatz Bhf (Berlin)
000300003109 000300003151 S+U Alexanderplatz Bhf (Berlin)
000300003112 000300003171 S+U Alexanderplatz Bhf (Berlin)
000300003027 000300003129 S+U Alexanderplatz Bhf (Berlin)
000300003027 000300003180 S+U Alexanderplatz Bhf (Berlin)
000300003027 000300003073 S+U Alexanderplatz Bhf (Berlin)
000300003032 000300003109 S+U Alexanderplatz Bhf (Berlin)
000300003032 000300003151 S+U Alexanderplatz Bhf (Berlin)
000300003032 000300003058 S+U Alexanderplatz Bhf (Berlin)
000300003054 000300003211 S+U Alexanderplatz Bhf (Berlin)
000300003058 000300003109 S+U Alexanderplatz Bhf (Berlin)
000300003058 000300003151 S+U Alexanderplatz Bhf (Berlin)
000300003059 000300003112 S+U Alexanderplatz Bhf (Berlin)
000300003059 000300003171 S+U Alexanderplatz Bhf (Berlin)
000300003070 000300003137 S+U Alexanderplatz Bhf (Berlin)
000300003070 000300003160 S+U Alexanderplatz Bhf (Berlin)
000300003073 000300003129 S+U Alexanderplatz Bhf (Berlin)
000300003073 000300003180 S+U Alexanderplatz Bhf (Berlin)
000300168034 000300168083 S+U Jannowitzbrücke (Berlin)
000300143023 000300143066 U Naturkundemuseum (Berlin)
000300086012 000300086025 U Stadtmitte (Berlin)
000300082011 000300082024 U Klosterstr. (Berlin)
000300077021 000300077054 U Schillingstr. (Berlin)
000300144011 000300144066 U Oranienburger Tor (Berlin)
000300004007 000300004033 S+U Potsdamer Platz Bhf (Berlin)
000300004010 000300004075 S+U Potsdamer Platz Bhf (Berlin)
000300004037 000300004069 S+U Potsdamer Platz Bhf (Berlin)
000300004044 000300004072 S+U Potsdamer Platz Bhf (Berlin)
000300004082 000300004129 S+U Potsdamer Platz Bhf (Berlin)
000300004085 000300004130 S+U Potsdamer Platz Bhf (Berlin)
000300223035 000300223059 S+U Brandenburger Tor (Berlin)
000300142022 000300142063 U Schwartzkopffstr. (Berlin)
000302181012 000302181052 U Unter den Linden (Berlin)
000302181017 000302181041 U Unter den Linden (Berlin)
000306757032 000306757083 U Museumsinsel (Berlin)
000300211034 000300211052 S Prenzlauer Allee (Berlin)
000300207053 000300207063 S Greifswalder Str. (Berlin)
000300208019 000300208067 S Landsberger Allee (Berlin)
000300169021 000300169042 S+U Frankfurter Allee (Berlin)
000300169039 000300169084 S+U Frankfurter Allee (Berlin)
000300169044 000300169054 S+U Frankfurter Allee (Berlin)
000300167034 000300167035 S+U Warschauer Str. (Berlin)
000300167009 000300167021 S+U Warschauer Str. (Berlin)
000300167043 000300167047 S+U Warschauer Str. (Berlin)
000300167042 000300167046 S+U Warschauer Str. (Berlin)
000300074024 000300074038 U Frankfurter Tor (Berlin)
000300075022 000300075054 U Weberwiese (Berlin)
000300160036 000300160054 S+U Pankow (Berlin)
000300160038 000300160063 S+U Pankow (Berlin)
de:11000:900132501::7 de:11000:900132501::8 Angerweg (Berlin)
000300198042 000300198053 S Rummelsburg (Berlin)
000300070022 000300070054 U Tierpark (Berlin)
000300180033 000300180056 S Karlshorst (Berlin)
000300176022 000300176078 S Friedrichsfelde Ost (Berlin)
000300066023 000300066054 U Kienberg (Gärten der Welt) (Berlin)
000300177034 000300177062 S Schöneweide Bhf (Berlin)
000300189034 000300189054 S Adlershof (Berlin)
000300531031 000300531038 Brandenburg, Hauptbahnhof
000300531025 000300531034 Brandenburg, Hauptbahnhof
000300528041 000300528047 Cottbus, Hauptbahnhof
000300526021 000300526024 Frankfurt (Oder), Bahnhof
000300572011 000300572017 Eberswalde, Hauptbahnhof
000300572013 000300572019 Eberswalde, Hauptbahnhof
000300509003 000300509005 S Bernau-Friedenstal
000300558025 000300558026 Doberlug-Kirchhain, Bahnhof
000300558021 000300558022 Doberlug-Kirchhain, Bahnhof
000300684022 000300684024 Elsterwerda, Bahnhof
000300684023 000300684025 Elsterwerda, Bahnhof
000300679011 000300679012 Elstal, Bahnhof
000300818003 000300818014 S Fredersdorf
000300815014 000300815015 S Birkenstein
000300524020 000300524029 Lübbenau, Bahnhof
000300623021 000300623022 Bad Belzig, Bahnhof
000300550010 000300550014 Trebbin, Bahnhof
000300550012 000300550016 Trebbin, Bahnhof
000300553017 000300553018 Luckenwalde, Bahnhof
000300553013 000300553014 Luckenwalde, Bahnhof
000300767007 000300767009 Rangsdorf, Bahnhof
000300570018 000300570027 Angermünde, Bahnhof
000300570029 000300570031 Angermünde, Bahnhof
000300570015 000300570025 Angermünde, Bahnhof