mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-18 08:19:51 +00:00
lines
This commit is contained in:
parent
f326933269
commit
fb34a5920d
1 changed files with 4 additions and 0 deletions
|
@ -728,6 +728,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
|
||||||
return 'I' + str;
|
return 'I' + str;
|
||||||
if (type.equals("IC")) // Intercity
|
if (type.equals("IC")) // Intercity
|
||||||
return 'I' + str;
|
return 'I' + str;
|
||||||
|
if ("InterCity".equals(type))
|
||||||
|
return 'I' + str;
|
||||||
if (type.equals("ICE")) // Intercity Express
|
if (type.equals("ICE")) // Intercity Express
|
||||||
return 'I' + str;
|
return 'I' + str;
|
||||||
if (type.equals("X")) // InterConnex
|
if (type.equals("X")) // InterConnex
|
||||||
|
@ -765,6 +767,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
|
||||||
|
|
||||||
if (type.equals("IR")) // Interregio
|
if (type.equals("IR")) // Interregio
|
||||||
return 'R' + str;
|
return 'R' + str;
|
||||||
|
if ("InterRegio".equals(type))
|
||||||
|
return 'R' + str;
|
||||||
if (type.equals("IRE")) // Interregio-Express
|
if (type.equals("IRE")) // Interregio-Express
|
||||||
return 'R' + str;
|
return 'R' + str;
|
||||||
if (P_LINE_IRE.matcher(type).matches())
|
if (P_LINE_IRE.matcher(type).matches())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue