Index: trunk/src/atmsdriver/ConsoleTrafficDriver.java
===================================================================
--- trunk/src/atmsdriver/ConsoleTrafficDriver.java	(revision 184)
+++ trunk/src/atmsdriver/ConsoleTrafficDriver.java	(revision 234)
@@ -31,4 +31,5 @@
      */
     private static Properties ConsoleDriverProperties;
+    
 
     /** Entry point for the application.
Index: trunk/src/atmsdriver/model/Station.java
===================================================================
--- trunk/src/atmsdriver/model/Station.java	(revision 203)
+++ trunk/src/atmsdriver/model/Station.java	(revision 234)
@@ -196,5 +196,5 @@
         this.OppTotVol = getOPPTotVol();
     }
-
+    
     /**
      * Return the color for the lanes in a given direction.
Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 228)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 234)
@@ -283,7 +283,8 @@
 
         int loopID = scline.nextInt();
-        String loopLoc = getLoopLoc(line);
+        String loopLocID = scline.next();
+        String loopLoc = scline.next();
         scline.close();
-        return new LoopDetector(loopID, loopLoc);
+        return new LoopDetector(loopID, loopLocID, loopLoc);
     }
 
Index: trunk/src/atmsdriver/model/LoopDetector.java
===================================================================
--- trunk/src/atmsdriver/model/LoopDetector.java	(revision 202)
+++ trunk/src/atmsdriver/model/LoopDetector.java	(revision 234)
@@ -20,4 +20,5 @@
     final public int loopID;
     final public String loopLocation;
+    final public String loopLocationID;
     
     /* dynamic data */
@@ -32,10 +33,10 @@
      * @param laneNum 
      */
-    public LoopDetector(int loopID, String loopLocation)
+    public LoopDetector(int loopID, String loopLocationID, String loopLocation)
     {
         /* Set static data */
         this.loopID = loopID;
         this.loopLocation = loopLocation;
-        
+        this.loopLocationID = loopLocationID;
         /* Init dynamic data */
         this.vol = 0;
Index: trunk/src/tmcsim/application.properties
===================================================================
--- trunk/src/tmcsim/application.properties	(revision 232)
+++ trunk/src/tmcsim/application.properties	(revision 234)
@@ -1,5 +1,5 @@
-#Tue, 07 Nov 2017 10:10:47 -0800
+#Thu, 23 Nov 2017 17:06:06 -0800
 
-Application.revision=231
+Application.revision=232
 
 Application.buildnumber=88
