This commit is contained in:
Andreas Schildbach 2012-09-03 16:18:50 +02:00
parent 415c266d6e
commit 47a2e6dc78

View file

@ -766,6 +766,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
return 'R' + str; return 'R' + str;
if (type.equals("R-Bahn")) // Regional-Express, VRR if (type.equals("R-Bahn")) // Regional-Express, VRR
return 'R' + str; return 'R' + str;
if ("RB-Bahn".equals(type)) // Vogtland
return 'R' + str;
if (type.equals("REX")) // RegionalExpress, Österreich if (type.equals("REX")) // RegionalExpress, Österreich
return 'R' + str; return 'R' + str;
if ("EZ".equals(type)) // ÖBB ErlebnisBahn if ("EZ".equals(type)) // ÖBB ErlebnisBahn
@ -1233,6 +1235,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
return 'B' + str; return 'B' + str;
if ("Bex".equals(type)) // Bayern Express if ("Bex".equals(type)) // Bayern Express
return 'B' + str; return 'B' + str;
if ("Ersatzverkehr".equals(type)) // Rhein-Ruhr
return 'B' + str;
if (type.length() == 0) if (type.length() == 0)
return "?"; return "?";