more lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@67 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-08-11 10:18:03 +00:00
parent d1827113ec
commit 839d4a8dcc

View file

@ -458,6 +458,8 @@ public class SbbProvider implements NetworkProvider
return "I" + strippedLine; return "I" + strippedLine;
if (type.equals("tha")) // Thalys if (type.equals("tha")) // Thalys
return "I" + strippedLine; return "I" + strippedLine;
if (type.equals("tgv")) // Train à Grande Vitesse
return "I" + strippedLine;
if (type.equals("rj")) // RailJet, Österreichische Bundesbahnen if (type.equals("rj")) // RailJet, Österreichische Bundesbahnen
return "I" + strippedLine; return "I" + strippedLine;
if (type.equals("oec")) // ÖBB-EuroCity if (type.equals("oec")) // ÖBB-EuroCity
@ -470,16 +472,24 @@ public class SbbProvider implements NetworkProvider
return "R" + strippedLine; return "R" + strippedLine;
if (type.equals("ir")) if (type.equals("ir"))
return "R" + strippedLine; return "R" + strippedLine;
if (type.equals("ire")) // Interregio Express
return "R" + strippedLine;
if (type.equals("d")) if (type.equals("d"))
return "R" + strippedLine; return "R" + strippedLine;
if (P_NORMALIZE_LINE_SBAHN.matcher(type).matches()) if (P_NORMALIZE_LINE_SBAHN.matcher(type).matches())
return "S" + strippedLine; return "S" + strippedLine;
if (type.equals("tra")) if (type.equals("tra"))
return "T" + strippedLine; return "T" + strippedLine;
if (type.equals("m"))
return "T" + strippedLine;
if (type.equals("bus")) if (type.equals("bus"))
return "B" + strippedLine; return "B" + strippedLine;
if (type.equals("tro")) if (type.equals("tro"))
return "B" + strippedLine; return "B" + strippedLine;
if (type.equals("nfb"))
return "B" + strippedLine;
if (type.equals("nbu"))
return "B" + strippedLine;
if (type.equals("bat")) if (type.equals("bat"))
return "F" + strippedLine; return "F" + strippedLine;
if (type.equals("lb")) if (type.equals("lb"))