VRR: 'SEV A' and 'SEV B' lines.

This commit is contained in:
Andreas Schildbach 2020-10-10 19:09:45 +02:00
parent 6d41267d28
commit e12aa6e684

View file

@ -83,6 +83,10 @@ public class VrrProvider extends AbstractEfaProvider {
return new Line(id, network, Product.BUS, trainNum);
if (trainType == null && "3SEV".equals(trainNum))
return new Line(id, network, Product.BUS, trainNum);
if (trainType == null && "SEV A".equals(trainNum))
return new Line(id, network, Product.BUS, trainNum);
if (trainType == null && "SEV B".equals(trainNum))
return new Line(id, network, Product.BUS, trainNum);
} else if ("11".equals(mot)) {
// Wuppertaler Schwebebahn & SkyTrain D'dorf
if ("Schwebebahn".equals(trainName) || (longName != null && longName.startsWith("Schwebebahn")))