Index: trunk/src/atmsdriver/ConsoleDriver.java
===================================================================
--- trunk/src/atmsdriver/ConsoleDriver.java	(revision 121)
+++ trunk/src/atmsdriver/ConsoleDriver.java	(revision 127)
@@ -409,18 +409,27 @@
     
     /**
-     * Enum for highway status dot colors.
+     * Enum for highway status dot colors. Each color has associated volume
+     * and occupancy constants.
      *
-     * @author John A. Torres
+     * @author John A. Torres, jdalbey
      * @version 10/11/2017
      */
     public static enum DOTCOLOR {
 
-        RED,
-        YELLOW,
-        GREEN;
+        RED(10,10),
+        YELLOW(5,5),
+        GREEN(0,0);
         
         // All the first letters of the values, in order.
         private static String allLetters = "RYG";
         
+        private int vol;  /* volume */
+        private int occ;  /* occupancy */      
+        
+        private DOTCOLOR(int v, int o)
+        {
+            vol = v;
+            occ = o;
+        }
         /**
          * Return the first letter of this enum.
@@ -432,4 +441,12 @@
         }
 
+        public int volume()
+        {
+            return vol;
+        }
+        public int occupancy()
+        {
+            return occ;
+        }
         /**
          * Returns a dot color given its first character.
