Index: trunk/src/tmcsim/cadsimulator/managers/TrafficModelManager.java
===================================================================
--- trunk/src/tmcsim/cadsimulator/managers/TrafficModelManager.java	(revision 248)
+++ trunk/src/tmcsim/cadsimulator/managers/TrafficModelManager.java	(revision 258)
@@ -63,5 +63,6 @@
         FEPSIM_IP_ADDR("FEPSim_IP_addr"),
         EVENTS_FILE("Events_File"),
-        OUTPUT_DEST("Output_Destination");
+        OUTPUT_DEST("Output_Destination"),
+        JSON_PATH("Json_Path");
         
         public String name;
@@ -102,5 +103,10 @@
      */
     private String currentClock = "";
-      
+    
+    /**
+     * Path for writing highway data to Json file.
+     */
+    private String jsonPath;
+    
     /**
      * Constructor. Loads the Properties file and initializes the
@@ -117,4 +123,7 @@
         {
             props = loadProperties(propertiesFile);
+            jsonPath = props.getProperty(PROPERTIES.JSON_PATH.name);
+            logger.logp(Level.INFO, "Traffic Managr", "Constructor", 
+                    "Highway network json output: " + jsonPath);
             // Initialize the highway model
             incidents = new HashMap<String, List<TrafficEvent>>();
@@ -455,5 +464,5 @@
                 {
                     // currently writes to local file
-                    out = new PrintWriter("highways.json");
+                    out = new PrintWriter(jsonPath);
                     out.print(geojson);
                     out.close();
Index: trunk/src/tmcsim/application.properties
===================================================================
--- trunk/src/tmcsim/application.properties	(revision 257)
+++ trunk/src/tmcsim/application.properties	(revision 258)
@@ -1,5 +1,5 @@
-#Mon, 11 Feb 2019 11:45:31 -0800
+#Mon, 11 Feb 2019 16:19:24 -0800
 
-Application.revision=255
+Application.revision=257
 
-Application.buildnumber=92
+Application.buildnumber=94
Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 248)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 258)
@@ -347,5 +347,5 @@
             
             // Print the number of bytes the highways data message contains
-            System.out.println("BYTES: " + this.toCondensedFormat(false).toCharArray().length + 1);
+            System.out.println("Highways sending " + this.toCondensedFormat(false).toCharArray().length + 1 + "bytes to FEPSIM.");
             
             // Write the highways data over the socket
