more lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@227 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-10-02 23:24:27 +00:00
parent fa55d7274d
commit e5fefd8c8e
5 changed files with 33 additions and 16 deletions

View file

@ -217,8 +217,25 @@ public class NasaProvider extends AbstractHafasProvider
if (t != 0)
return t;
if (ucType.equals("D")) // Rußland Schlafwagenzug
return 'I';
if (ucType.equals("DPF")) // mit Dampflok bespannter Zug
return 'R';
if (ucType.equals("RR")) // Polen
return 'R';
if (ucType.equals("BSV"))
return 'B';
if (ucType.equals("RBS")) // Rufbus
return 'B';
if (ucType.equals("FB")) // Bus
return 'B';
if (ucType.equals("E")) // manchmal S4, manchmal 5stellige Zugnr.
return '?';
if (ucType.equals("EB")) // Europa-Park, vermutlich "Erlebnisbahn"
return '?';
return 0;
}