1 package org.opentrafficsim.road.gtu.lane.perception.headway;
2
3 /**
4 * Observable characteristics of a GTU.
5 * <p>
6 * Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
8 * <p>
9 * @version $Revision$, $LastChangedDate$, by $Author$, initial version 27 mrt. 2017 <br>
10 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
11 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
12 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
13 */
14 public enum GTUStatus
15 {
16 /** Braking lights are on when observing the headway. */
17 BRAKING_LIGHTS,
18
19 /** Left turn indicator was on when observing the headway. */
20 LEFT_TURNINDICATOR,
21
22 /** Right turn indicator was on when observing the headway. */
23 RIGHT_TURNINDICATOR,
24
25 /** Alarm lights are on. */
26 EMERGENCY_LIGHTS,
27
28 /** GTU was honking (car) or ringing a bell (cyclist) when observing the headway. */
29 HONK;
30 }