Index: trunk/src/tmcsim/client/ATMSBatchDriver.java
===================================================================
--- trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 135)
+++ trunk/src/tmcsim/client/ATMSBatchDriver.java	(revision 140)
@@ -145,5 +145,6 @@
         "config/vds_data/loop.txt",
         "config/vds_data/highwaysMeta.txt",
-        "localhost", 8080);
+        "192.168.251.46", 8080);  //IP address of FEP Sim Linux VM
+//        "localhost", 8080);
         // Create console driver but don't start run() method
         console = new ConsoleDriver(highways);
@@ -217,5 +218,5 @@
                         Station.DIRECTION dir = Station.DIRECTION.toDirection(lineScan.next());
                         double postmile = lineScan.nextDouble();
-                        int range = lineScan.nextInt();
+                        double range = lineScan.nextDouble();
                         ConsoleDriver.DOTCOLOR dotcolor = ConsoleDriver.DOTCOLOR.toDotColor(lineScan.next());
                         // apply colorization to highways
@@ -255,21 +256,24 @@
                 // Read a line and add it to the event queue
                 String line = scan.nextLine();
-                eventQueue.add(line);
-                // Parse the incident from the line
-                Scanner lineScan = new Scanner(line);
-                String incident = lineScan.next();
-                // Add the line to the list for the corresponding incident
-                List evtList;
-                if (incidents.containsKey(incident))
-                {
-                    evtList = incidents.get(incident);
-                }
-                else
-                {
-                    evtList = new ArrayList<String>();
-                }               
-                evtList.add(line);
-                // and put it back in the map
-                incidents.put(incident, evtList);
+                if (line.charAt(0) != '#')
+                {
+                    eventQueue.add(line);
+                    // Parse the incident from the line
+                    Scanner lineScan = new Scanner(line);
+                    String incident = lineScan.next();
+                    // Add the line to the list for the corresponding incident
+                    List evtList;
+                    if (incidents.containsKey(incident))
+                    {
+                        evtList = incidents.get(incident);
+                    }
+                    else
+                    {
+                        evtList = new ArrayList<String>();
+                    }               
+                    evtList.add(line);
+                    // and put it back in the map
+                    incidents.put(incident, evtList);
+                }
             }
         } catch (FileNotFoundException ex) {
@@ -307,5 +311,5 @@
                 Station.DIRECTION dir = Station.DIRECTION.toDirection(lineScan.next());
                 double postmile = lineScan.nextDouble();
-                int range = lineScan.nextInt();
+                double range = lineScan.nextDouble();
                 // apply colorization to highways, forcing to green, indicating cleared
                 console.applyColorToHighwayStretch(routeNumber, dir, postmile, range, ConsoleDriver.DOTCOLOR.GREEN);
