mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 22:19:50 +00:00
Brandenburg
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@626 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
4d70ac385e
commit
65f74018ad
4 changed files with 328 additions and 3 deletions
|
@ -1204,6 +1204,14 @@ public abstract class AbstractHafasProvider implements NetworkProvider
|
|||
return 'R';
|
||||
if ("ARZ".equals(ucType)) // Auto-Reisezug Brig - Iselle di Trasquera
|
||||
return 'R';
|
||||
if ("OE".equals(ucType)) // Ostdeutsche Eisenbahn
|
||||
return 'R';
|
||||
if ("MR".equals(ucType)) // Märkische Regionalbahn
|
||||
return 'R';
|
||||
if ("PE".equals(ucType)) // Prignitzer Eisenbahn GmbH
|
||||
return 'R';
|
||||
if ("NE".equals(ucType)) // NEB Betriebsgesellschaft mbH
|
||||
return 'R';
|
||||
|
||||
// Suburban Trains
|
||||
if (ucType.equals("S")) // Generic S-Bahn
|
||||
|
@ -1240,12 +1248,14 @@ public abstract class AbstractHafasProvider implements NetworkProvider
|
|||
return 'B';
|
||||
|
||||
// Ferry
|
||||
if ("SCHIFF".equals(ucType))
|
||||
return 'F';
|
||||
if ("FÄHRE".equals(ucType))
|
||||
return 'F';
|
||||
if (ucType.equals("SCH")) // Schiff
|
||||
return 'F';
|
||||
if (ucType.equals("AS")) // SyltShuttle, eigentlich Autoreisezug
|
||||
return 'F';
|
||||
if ("SCHIFF".equals(ucType))
|
||||
return 'F';
|
||||
if ("KAT".equals(ucType)) // Katamaran
|
||||
return 'F';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue