mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-14 16:40:30 +00:00
more lines
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@699 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
b215c793ac
commit
4a73175244
2 changed files with 8 additions and 1 deletions
|
@ -600,6 +600,8 @@ public class OebbProvider extends AbstractHafasProvider
|
||||||
|
|
||||||
if (ucType.equals("U70")) // U.K., Connections only?
|
if (ucType.equals("U70")) // U.K., Connections only?
|
||||||
return '?';
|
return '?';
|
||||||
|
if (ucType.equals("X70")) // U.K., Connections only?
|
||||||
|
return '?';
|
||||||
if (ucType.equals("R84")) // U.K., Connections only?
|
if (ucType.equals("R84")) // U.K., Connections only?
|
||||||
return '?';
|
return '?';
|
||||||
if (ucType.equals("S84")) // U.K., Connections only?
|
if (ucType.equals("S84")) // U.K., Connections only?
|
||||||
|
|
|
@ -148,7 +148,6 @@ public class ZvvProvider extends AbstractHafasProvider
|
||||||
final String ucType = type.toUpperCase();
|
final String ucType = type.toUpperCase();
|
||||||
|
|
||||||
// E-Bus: Bus, Tram oder Zug?
|
// E-Bus: Bus, Tram oder Zug?
|
||||||
// TX: Ruftaxi?
|
|
||||||
|
|
||||||
if ("S-BAHN".equals(ucType))
|
if ("S-BAHN".equals(ucType))
|
||||||
return 'S';
|
return 'S';
|
||||||
|
@ -162,6 +161,12 @@ public class ZvvProvider extends AbstractHafasProvider
|
||||||
|
|
||||||
if ("BUS-NF".equals(ucType)) // Niederflur
|
if ("BUS-NF".equals(ucType)) // Niederflur
|
||||||
return 'B';
|
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))
|
if ("D-SCHIFF".equals(ucType))
|
||||||
return 'F';
|
return 'F';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue