GVH: 'RS3' line

This commit is contained in:
Andreas Schildbach 2023-01-23 16:37:12 +01:00
parent 8b4b8861ba
commit 8bdbc83962

View file

@ -55,6 +55,8 @@ public class GvhProvider extends AbstractEfaProvider {
return new Line(id, network, Product.REGIONAL_TRAIN, "RX" + trainNum);
if ("S4".equals(trainNum))
return new Line(id, network, Product.SUBURBAN_TRAIN, "S4");
if ("RS3".equals(trainNum)) // Regio S-Bahn
return new Line(id, network, Product.SUBURBAN_TRAIN, "RS3");
if (longName != null && longName.startsWith("Bus ") && name != null)
return new Line(id, network, Product.BUS, name);
}