Index: /trunk/webapps/GTEC/js/vdsLayer.js
===================================================================
--- /trunk/webapps/GTEC/js/vdsLayer.js	(revision 579)
+++ /trunk/webapps/GTEC/js/vdsLayer.js	(revision 581)
@@ -162,6 +162,6 @@
 
                 // Assemble the line to be written to the events file
-                var lineOut = "101   " + printableTime + "\t" + first[0] + "\t" + 
-                first[1] + "\t" + first[2] + "\t" + range.toFixed(3) + "\t" 
+                var lineOut = "101\t" + printableTime + "\t" + first[0] + "\t" + 
+                first[1] + "\t" + Number(first[2]).toFixed(2) + "\t" + range.toFixed(3) + "\t" 
                 + getColorAbbr(chosenColor);
 
@@ -242,6 +242,4 @@
             postmileList.push(feature.getId()); // save the postmile in a list
         });
-        // update the dot colors from the dynamic json data 
-        updateVDSlayer();
         // go adjust the marker coordinates so dots don't overlap
         adjustCoords(calcDistanceFactor());
@@ -300,18 +298,4 @@
             }
         }
-    }
-
-    // Load the highways dynamic json file and update the map
-    function updateVDSlayer()
-    {
-        eventIndex = -1;
-        var parsed_JSON;
-        loadJSON(kVDSstatusFile, function(response)
-        {
-            // Parse JSON string into object
-            parsed_JSON = JSON.parse(response);
-            // Process each new marker - lookup in current map
-            parsed_JSON.features.forEach(updateMarker);
-        });
     }
 
