mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 02:59:52 +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;
|
||||
if (type.equals("IC")) // Intercity
|
||||
return 'I' + str;
|
||||
if ("InterCity".equals(type))
|
||||
return 'I' + str;
|
||||
if (type.equals("ICE")) // Intercity Express
|
||||
return 'I' + str;
|
||||
if (type.equals("X")) // InterConnex
|
||||
|
@ -765,6 +767,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
|
|||
|
||||
if (type.equals("IR")) // Interregio
|
||||
return 'R' + str;
|
||||
if ("InterRegio".equals(type))
|
||||
return 'R' + str;
|
||||
if (type.equals("IRE")) // Interregio-Express
|
||||
return 'R' + str;
|
||||
if (P_LINE_IRE.matcher(type).matches())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue