mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-18 16:29:51 +00:00
AbstractEfaProvider: 'DNA' line.
This commit is contained in:
parent
08f4b15592
commit
66409f80e7
1 changed files with 4 additions and 0 deletions
|
@ -1274,6 +1274,10 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
|
|||
return new Line(id, network, Product.REGIONAL_TRAIN, "NX" + trainNum);
|
||||
if (("SE".equals(trainType) || "ABELLIO Rail Mitteldeutschland GmbH".equals(trainName)) && trainNum != null)
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "SE" + trainNum);
|
||||
if (("DNA".equals(trainType) && trainNum != null)) // Dieselnetz Augsburg
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "DNA" + trainNum);
|
||||
if ("Dieselnetz".equals(trainType) && "Augsburg".equals(trainNum))
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "DNA");
|
||||
|
||||
if (("BSB".equals(trainType) || "Breisgau-S-Bahn Gmbh".equals(trainName)) && trainNum != null)
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "BSB" + trainNum);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue