From 34f242b474053af0f054a92d604afbb6c48848bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Tue, 5 Jul 2022 18:20:21 -0400 Subject: [PATCH] simulation: Set stop time to 15 s --- src/data/simulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/simulation.js b/src/data/simulation.js index dfb0f23..4231dd1 100644 --- a/src/data/simulation.js +++ b/src/data/simulation.js @@ -7,7 +7,7 @@ import network from "./network.json"; const server = "http://localhost:4321"; // Time to stay at each stop (milliseconds) -const stopTime = 10000; +const stopTime = 15000; // Step used to compute the vehicle bearing (meters) const angleStep = 10;