traveltimet

This commit is contained in:
Bensouda Idriss 2023-03-22 10:17:28 +01:00
parent 046ef12ff9
commit 2f68d40f57
2 changed files with 6 additions and 2 deletions

View file

@ -210,7 +210,7 @@ public class Path {
* *
* @return Total length of the path (in meters). * @return Total length of the path (in meters).
* *
* @deprecated Need to be implemented. *
*/ */
public float getLength() { public float getLength() {
// TODO: // TODO:
@ -228,7 +228,11 @@ public class Path {
* @deprecated Need to be implemented. * @deprecated Need to be implemented.
*/ */
public double getTravelTime(double speed) { public double getTravelTime(double speed) {
return speed/(getLength()*3.6); double TotalTime = 0;
for (Arc a : arcs){
TotalTime += a.getTravelTime(speed);
}
return TotalTime;
} }
/** /**