more lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@699 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-06-15 14:53:16 +00:00
parent b215c793ac
commit 4a73175244
2 changed files with 8 additions and 1 deletions

View file

@ -600,6 +600,8 @@ public class OebbProvider extends AbstractHafasProvider
if (ucType.equals("U70")) // U.K., Connections only?
return '?';
if (ucType.equals("X70")) // U.K., Connections only?
return '?';
if (ucType.equals("R84")) // U.K., Connections only?
return '?';
if (ucType.equals("S84")) // U.K., Connections only?

View file

@ -148,7 +148,6 @@ public class ZvvProvider extends AbstractHafasProvider
final String ucType = type.toUpperCase();
// E-Bus: Bus, Tram oder Zug?
// TX: Ruftaxi?
if ("S-BAHN".equals(ucType))
return 'S';
@ -162,6 +161,12 @@ public class ZvvProvider extends AbstractHafasProvider
if ("BUS-NF".equals(ucType)) // Niederflur
return 'B';
if ("TRO-NF".equals(ucType)) // Niederflur
return 'B';
if ("BUXI".equals(ucType))
return 'B';
if ("TX".equals(ucType))
return 'B';
if ("D-SCHIFF".equals(ucType))
return 'F';