Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit d564dbab authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

busAux: select correct cycle: move urban down

parent ab133b1a
No related branches found
No related tags found
No related merge requests found
...@@ -57,14 +57,14 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl ...@@ -57,14 +57,14 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
aauxsignals.TotalCycleTimeSeconds = 3283; aauxsignals.TotalCycleTimeSeconds = 3283;
return "Suburban"; return "Suburban";
} }
if (cycle.Contains("urban")) {
aauxsignals.TotalCycleTimeSeconds = 8149;
return "Urban";
}
if (cycle.Contains("interurban")) { if (cycle.Contains("interurban")) {
aauxsignals.TotalCycleTimeSeconds = 12962; aauxsignals.TotalCycleTimeSeconds = 12962;
return "Interurban"; return "Interurban";
} }
if (cycle.Contains("urban")) {
aauxsignals.TotalCycleTimeSeconds = 8149;
return "Urban";
}
} }
if (cycle.Contains("coach")) { if (cycle.Contains("coach")) {
aauxsignals.TotalCycleTimeSeconds = 15086; aauxsignals.TotalCycleTimeSeconds = 15086;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment