line BSB-Zug

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@823 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-10-11 21:06:53 +00:00
parent a48f210e7d
commit 135c577796

View file

@ -1060,19 +1060,21 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
if ("KTB".equals(type)) // Kandertalbahn
return 'R' + type;
if (type.equals("BSB")) // Breisgau-S-Bahn
if ("BSB".equals(type)) // Breisgau-S-Bahn
return 'S' + str;
if (type.equals("RER")) // Réseau Express Régional, Frankreich
if ("BSB-Zug".equals(type)) // Breisgau-S-Bahn
return 'S' + str;
if (type.equals("LO")) // London Overground, GB
if ("Breisgau-S-Bahn".equals(type)) // Bayern
return 'S' + type;
if ("RER".equals(type)) // Réseau Express Régional, Frankreich
return 'S' + str;
if ("LO".equals(type)) // London Overground, GB
return 'S' + str;
if ("A".equals(name) || "B".equals(name) || "C".equals(name)) // SES
return 'S' + str;
final Matcher m = P_LINE_S.matcher(name);
if (m.find())
return 'S' + m.group(1);
if ("Breisgau-S-Bahn".equals(type)) // Bayern
return 'S' + type;
if (P_LINE_U.matcher(type).matches())
return 'U' + str;