mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-21 09:49:51 +00:00
lines
This commit is contained in:
parent
af256ab37c
commit
20a3c94dbd
3 changed files with 10 additions and 0 deletions
|
@ -1025,6 +1025,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
|
|||
return 'R' + str;
|
||||
if (type.equals("as")) // agilis-Schnellzug
|
||||
return 'R' + str;
|
||||
if (type.equals("agilis-Schnellzug")) // agilis-Schnellzug
|
||||
return 'R' + str;
|
||||
if (type.equals("TLX")) // Trilex (Vogtlandbahn)
|
||||
return 'R' + str;
|
||||
if (type.equals("DBG")) // Döllnitzbahn
|
||||
|
@ -1262,6 +1264,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
|
|||
return 'S' + str;
|
||||
if ("Breisgau-S-Bahn".equals(type)) // Bayern
|
||||
return 'S' + type;
|
||||
if ("RSB".equals(type)) // Schnellbahn Wien
|
||||
return 'S' + type;
|
||||
if ("RER".equals(type)) // Réseau Express Régional, Frankreich
|
||||
return 'S' + str;
|
||||
if ("LO".equals(type)) // London Overground, GB
|
||||
|
|
|
@ -2390,6 +2390,8 @@ public abstract class AbstractHafasProvider extends AbstractNetworkProvider
|
|||
return 'I';
|
||||
if ("FYR".equals(ucType)) // Fyra, Amsterdam-Schiphol-Rotterdam
|
||||
return 'I';
|
||||
if ("FYRA".equals(ucType)) // Fyra, Amsterdam-Schiphol-Rotterdam
|
||||
return 'I';
|
||||
if ("SC".equals(ucType)) // SuperCity, Tschechien
|
||||
return 'I';
|
||||
if ("LE".equals(ucType)) // LEO Express, Prag
|
||||
|
@ -2588,6 +2590,8 @@ public abstract class AbstractHafasProvider extends AbstractNetworkProvider
|
|||
return 'R';
|
||||
if ("BKB".equals(ucType)) // Buckower Kleinbahn
|
||||
return 'R';
|
||||
if ("GEX".equals(ucType)) // Glacier Express
|
||||
return 'R';
|
||||
|
||||
// if ("E".equals(normalizedType)) // Eilzug, stimmt wahrscheinlich nicht
|
||||
// return "R" + normalizedName;
|
||||
|
|
|
@ -211,6 +211,8 @@ public class PlProvider extends AbstractHafasProvider
|
|||
return 'R';
|
||||
if ("DB".equals(ucType))
|
||||
return 'R';
|
||||
if ("REG".equals(ucType))
|
||||
return 'R';
|
||||
|
||||
if ("FRE".equals(ucType))
|
||||
return 'F';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue