Index: /trunk/paramics_communicator.log
===================================================================
--- /trunk/paramics_communicator.log	(revision 79)
+++ /trunk/paramics_communicator.log	(revision 261)
@@ -1,12 +1,18 @@
-
-<!-- Time written to file: 00:00:00 -->
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<CAD_DATA>
-    <Basic>
-        <Comm_Interval>30</Comm_Interval>
-        <Network_ID>1</Network_ID>
-        <Simulation>FALSE</Simulation>
-        <Incident>FALSE</Incident>
-    </Basic>
-</CAD_DATA>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE log SYSTEM "logger.dtd">
+<log>
+<record>
+  <date>2017-11-06T14:55:23</date>
+  <millis>1510008923085</millis>
+  <sequence>1</sequence>
+  <logger>tmcsim.parmicsLog</logger>
+  <level>INFO</level>
+  <class>tmcsim.paramicslog.ParamicsLogFileHandlerTest</class>
+  <method>testGetInstance</method>
+  <thread>1</thread>
+  <message>
+&lt;!-- Time written to file: 00:00:00 --&gt;
+Hello friendly log.
+</message>
+</record>
+</log>
Index: /trunk/config/testConfig/traffic_model_config.properties
===================================================================
--- /trunk/config/testConfig/traffic_model_config.properties	(revision 229)
+++ /trunk/config/testConfig/traffic_model_config.properties	(revision 261)
@@ -4,2 +4,3 @@
 FEPSim_IP_addr = localhost
 Output_Destination = FEP
+Json_Path = highways.json
Index: /trunk/atms_map_night_30sec.html
===================================================================
--- /trunk/atms_map_night_30sec.html	(revision 259)
+++ /trunk/atms_map_night_30sec.html	(revision 261)
@@ -7,5 +7,5 @@
       /* Set the size of the div element that contains the map */
       #mapdiv {
-        height: 550px;  // or  height: 100%
+        height: 100%;
         width: 100%;  
        }
Index: unk/atms_map_proto_30sec.html
===================================================================
--- /trunk/atms_map_proto_30sec.html	(revision 250)
+++ 	(revision )
@@ -1,71 +1,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
-    <title>ATMS Simulator Map Prototype</title> 
-    <style>
-      /* Set the size of the div element that contains the map */
-      #mapdiv {
-        height: 550px;  // or  height: 100%
-        width: 100%;  
-       }
-        /* Makes the sample page fill the window. */
-      html, body {
-        height: 100%;
-        margin: 0;
-        padding: 0;
-      }
-    </style>
-  </head>
-  <body>
-    <h3>ATMS Simulator Map Prototype 0.1</h3>
-    <!--The div element for the map -->
-    <div id="mapdiv"></div>
-    <script>
-    var map;  // a global variable for the google map
-    // Build a solid colored dot icon to use instead of the classic pin
-    function dotSymbol(color)
-    {
-        return {
-            path:google.maps.SymbolPath.CIRCLE,
-            scale: 3,
-            strokeColor: color,
-            fillColor: color,
-            fillOpacity: 1.0
-        };
-    }
-    function loadMapData()
-    {
-        // Load the map data
-        map.data.loadGeoJson('highways.json');
-//map.data.loadGeoJson("https://www.dropbox.com/s/qzlj63sqsua07ah/highways.json");
-        // Style the map data by applying the color property to each dot
-        map.data.setStyle(function(feature) 
-        {
-            // Property value can be any HTML color name
-            var ptColor = feature.getProperty("color");
-            return {
-                icon: dotSymbol(ptColor)
-                    };
-        });
-    }
-    // Initialize and add the map
-    function initMap() 
-    {
-        // The location of John Wayne Airport
-        var wayne = {lat: 33.687228, lng: -117.872148};
-        // The map, centered at John Wayne Airport
-        map = new google.maps.Map(
-            document.getElementById('mapdiv'), {zoom: 13, center: wayne});
-        loadMapData();
-        // Start a time to refresh the map every 30 seconds
-        var myTimer = setInterval(loadMapData, 30000);
-    }
-
-    // Using John's API Key
-    </script>
-    <script async defer
-    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD6iTyN0DjP-9OVkAgicyp4tkC10naE_B8&callback=initMap">
-    </script>
-  </body>
-</html>
