Index: trunk/src/atmsdriver/model/Station.java
===================================================================
--- trunk/src/atmsdriver/model/Station.java	(revision 109)
+++ trunk/src/atmsdriver/model/Station.java	(revision 114)
@@ -50,6 +50,32 @@
         this.routeNumber = hwy;
 
-        this.MLTotVol = 0;
-        this.OppTotVol = 0;
+        this.MLTotVol = getMLTotVol();
+        this.OppTotVol = getOPPTotVol();
+    }
+    
+    private int getMLTotVol()
+    {
+        int mlTotVol = 0;
+        for(LoopDetector loop : loops)
+        {
+            if(loop.loopLocation.startsWith("ML"))
+            {
+                mlTotVol += loop.vol;
+            }
+        }
+        return mlTotVol;
+    }
+    
+    private int getOPPTotVol()
+    {
+        int oppTotVol = 0;
+        for(LoopDetector loop : loops)
+        {
+            if(loop.loopLocation.startsWith("OP"))
+            {
+                oppTotVol += loop.vol;
+            }
+        }
+        return oppTotVol;
     }
 
@@ -143,6 +169,6 @@
                 // vol and occ along with each color.  Then the updateLoop call
                 // below could be update(dotColor.volume, dotColor.occ, speed)
-                int volume = 0;
-                int occ = 0;
+                int volume = 10;
+                int occ = 10;
                 int speed = 0;
                 loop.updateLoop(volume, occ, speed);
