mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-15 09:00:36 +00:00
more lines
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@67 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
d1827113ec
commit
839d4a8dcc
1 changed files with 10 additions and 0 deletions
|
@ -458,6 +458,8 @@ public class SbbProvider implements NetworkProvider
|
|||
return "I" + strippedLine;
|
||||
if (type.equals("tha")) // Thalys
|
||||
return "I" + strippedLine;
|
||||
if (type.equals("tgv")) // Train à Grande Vitesse
|
||||
return "I" + strippedLine;
|
||||
if (type.equals("rj")) // RailJet, Österreichische Bundesbahnen
|
||||
return "I" + strippedLine;
|
||||
if (type.equals("oec")) // ÖBB-EuroCity
|
||||
|
@ -470,16 +472,24 @@ public class SbbProvider implements NetworkProvider
|
|||
return "R" + strippedLine;
|
||||
if (type.equals("ir"))
|
||||
return "R" + strippedLine;
|
||||
if (type.equals("ire")) // Interregio Express
|
||||
return "R" + strippedLine;
|
||||
if (type.equals("d"))
|
||||
return "R" + strippedLine;
|
||||
if (P_NORMALIZE_LINE_SBAHN.matcher(type).matches())
|
||||
return "S" + strippedLine;
|
||||
if (type.equals("tra"))
|
||||
return "T" + strippedLine;
|
||||
if (type.equals("m"))
|
||||
return "T" + strippedLine;
|
||||
if (type.equals("bus"))
|
||||
return "B" + strippedLine;
|
||||
if (type.equals("tro"))
|
||||
return "B" + strippedLine;
|
||||
if (type.equals("nfb"))
|
||||
return "B" + strippedLine;
|
||||
if (type.equals("nbu"))
|
||||
return "B" + strippedLine;
|
||||
if (type.equals("bat"))
|
||||
return "F" + strippedLine;
|
||||
if (type.equals("lb"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue