diff --git a/components/i_feed/devices/vehicle.py b/components/i_feed/devices/vehicle.py index 65f0e85..d4b55d5 100644 --- a/components/i_feed/devices/vehicle.py +++ b/components/i_feed/devices/vehicle.py @@ -17,7 +17,7 @@ from pika.exceptions import AMQPConnectionError STARTING_POINT = geopy.Point(47.89053, 16.20703) # Driving direction in degrees: 0=N, 90=E, 180=S, 270=W -BEARING = 0 +BEARING = 2 # Scale speed of vehicles by factor x SCALING = 1 # in km/h @@ -29,7 +29,7 @@ NCE_KM = 2.4 # Time in seconds to recover from NCE (will be scaled) TIME_TO_RECOVER = 15 # Resets vehicle at km x -RESET_KM = 4 +RESET_KM = 4.3 class Vehicle: