Index: trunk/webapps/EInotebook/summary/summary.js
===================================================================
--- trunk/webapps/EInotebook/summary/summary.js	(revision 359)
+++ trunk/webapps/EInotebook/summary/summary.js	(revision 359)
@@ -0,0 +1,27 @@
+var incidents;
+
+/**
+ * @return The html for the list of incidents.
+ */
+function incidentsHTML()
+{
+	
+	var html = "";
+	
+	// FOR each incident
+	for (var i = 0; i < incidents.length; i++)
+	{
+		// add incident html
+		html += incidents[i].html();
+	}
+	
+	return html;
+}
+
+function loadSummary(theIncidents)
+{
+	incidents = theIncidents;
+	// display the list of incidents
+	document.getElementById("view").innerHTML = incidentsHTML();
+	window.scrollTo(0, readCookie("summaryScrollY"));
+}
Index: trunk/webapps/EInotebook/summary/summary.html
===================================================================
--- trunk/webapps/EInotebook/summary/summary.html	(revision 359)
+++ trunk/webapps/EInotebook/summary/summary.html	(revision 359)
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
+  "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <link href="summary.css" rel="stylesheet" type="text/css">
+    <script type="text/javascript" src="summary.js"></script>
+    <script type="text/javascript" src="../scripts/cookies.js"></script>
+    <title>Summary</title>
+    </head>
+  <body onscroll="setCookie('summaryScrollY', window.pageYOffset);">
+    <div id="view"></div>
+  </body>
+</html>
Index: trunk/webapps/EInotebook/summary/summary.css
===================================================================
--- trunk/webapps/EInotebook/summary/summary.css	(revision 359)
+++ trunk/webapps/EInotebook/summary/summary.css	(revision 359)
@@ -0,0 +1,60 @@
+@CHARSET "UTF-8";
+
+body {
+	font-family: Verdana, sans-serif;	
+}
+
+button.incidentExpandButton {
+	width:30px;	
+	text-align:center;
+	font-size:12pt;
+}
+
+table.incident {
+	padding:0px; 
+	margin-bottom:2px; 
+	width:100%;	
+	border:0px solid black;
+	margin-bottom:30px;
+}
+
+td.incidentHeader {
+	text-align:right;
+}
+
+table.incidentHeader {
+	margin-bottom:2px; 
+	border:2px solid black; 
+	width:100%;	
+}
+
+td.incidentHeader {
+	font-size:12pt;
+	font-weight:bold;	
+}
+
+td.incidentExpandOption {
+	text-align:left; 
+	font-size:12pt;
+	width:10%;
+	visibility:hidden;
+}
+
+td.incidentNumber {
+	text-align:left;
+	width:20%
+}
+
+td.incidentTitle {
+	text-align:left;
+	width:40%
+}
+
+td.incidentTime {
+	text-align:left;
+	width:30%
+}
+
+td.incidentSummary {
+	font-size:11pt;
+}
Index: trunk/webapps/EInotebook/spikes/settime.html
===================================================================
--- trunk/webapps/EInotebook/spikes/settime.html	(revision 359)
+++ trunk/webapps/EInotebook/spikes/settime.html	(revision 359)
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="snoopy.txt">
+// contents of myname.txt is javascript that assigns data to a variable 
+</script>
+<script>
+function getIndex() {
+  document.getElementById("fruit").innerHTML =
+  document.getElementById("mySelect").selectedIndex;
+}
+</script>
+</head>
+<body>
+<p id="demo">What time is it?</p>
+<button type="button" onclick='document.getElementById("demo").innerHTML = snoopy'>Get The Time</button>
+<hr>
+<p id="fruit">Hello</p>
+<form>
+Select your favorite fruit:
+<select id="mySelect">
+  <option>Apple</option>
+  <option>Orange</option>
+  <option>Pineapple</option>
+  <option>Banana</option>
+</select>
+<br><br>
+<input type="button" onclick="getIndex()" 
+value="Display the index of the selected option">
+</form>
+
+
+
+</body>
+</html>
+
Index: trunk/webapps/EInotebook/spikes/snoopy.txt
===================================================================
--- trunk/webapps/EInotebook/spikes/snoopy.txt	(revision 359)
+++ trunk/webapps/EInotebook/spikes/snoopy.txt	(revision 359)
@@ -0,0 +1,1 @@
+var snoopy = "Zero Dark Thirty";
Index: trunk/webapps/EInotebook/maps/atmsMap.html
===================================================================
--- trunk/webapps/EInotebook/maps/atmsMap.html	(revision 359)
+++ trunk/webapps/EInotebook/maps/atmsMap.html	(revision 359)
@@ -0,0 +1,13 @@
+<html>
+  <head>
+
+    <link rel="stylesheet" type="text/css" href="maps.css"> 
+    <script type="text/javascript" src="maps.js"></script> 
+
+  </head>
+  <body onLoad="">
+
+    <table style="padding-top: 4px;"><tr><td><img src="atms.png"></td></tr></table>
+
+  </body>
+</html>
Index: trunk/webapps/EInotebook/maps/maps.css
===================================================================
--- trunk/webapps/EInotebook/maps/maps.css	(revision 359)
+++ trunk/webapps/EInotebook/maps/maps.css	(revision 359)
@@ -0,0 +1,32 @@
+/*************************
+ *    Simulation Page    *
+ *************************/
+body
+{
+   font-family: Arial, Helvetica, sans-serif;
+   background-color:#FFFFFF;
+}
+
+/*************************
+ *   Google Maps Find    *
+ *************************/
+#incidentForm
+{
+   font-size: 2em;
+}
+
+#mapSelect
+{
+   padding: 5px;
+}
+
+/*************************
+ *     Maps Buttons      *
+ *************************/
+.mapButton
+{
+   width: 200px;
+   height: 40px;
+   margin: 0px 50px 10px 50px;
+   font-size: 1.2em;
+}
Index: trunk/webapps/EInotebook/maps/index.html
===================================================================
--- trunk/webapps/EInotebook/maps/index.html	(revision 359)
+++ trunk/webapps/EInotebook/maps/index.html	(revision 359)
@@ -0,0 +1,39 @@
+<html>
+  <head>
+
+    <link rel="stylesheet" type="text/css" href="maps.css"> 
+    <link href="../ipadapp.css" rel="stylesheet" type="text/css">
+    <script type="text/javascript" src="maps.js"></script> 
+
+  </head>
+  <body onLoad="setupMaps()">
+    <!-- Map Selection -->  
+    <center>
+	    <div id="mapSelect">
+	      <table>
+<!--            <tr>
+	        <td><button disabled=true class=mapButton>Incident Map</button></td><td>
+	        <td><button onClick="showMap(\'ATMS Map\')" class=mapButton>ATMS Map</button></td>
+	        </tr>
+-->
+            <tr>
+                <td>
+                <label>
+                    <input id="imap" type="radio" name="mapSelector" value="incidents"  onclick="showMap('Google Map')"/>Incidents
+                </label>
+                <label>
+                    <input id="amap" type="radio" name="mapSelector" value="atms" onclick="showMap('ATMS Map')"/>ATMS
+                </label>
+                </td>
+            </tr>
+          </table>
+	    </div>
+	
+	    <!-- The Map -->
+	    <div id="googleMapContent" style="display:none;"><iframe frameborder=0 width=740 height=600 
+	    	scrolling=no src=googleMap.html marginheight=0 marginwidth=0></iframe></div>
+        <div id="atmsMapContent" style="display:inline;"><iframe frameborder=0 width=740 height=600 
+        	scrolling=no src="../../cptms.html" marginheight=0 marginwidth=0></iframe></div>
+    </center>
+  </body>
+</html>
Index: trunk/webapps/EInotebook/maps/maps.js
===================================================================
--- trunk/webapps/EInotebook/maps/maps.js	(revision 359)
+++ trunk/webapps/EInotebook/maps/maps.js	(revision 359)
@@ -0,0 +1,62 @@
+incidentNames = ["Default", "Find Incident...", "181 - Tomato Truck Spill", 
+                 "182 - Haytruck Crash", "183 - Car Stalled on Freeway"];
+
+/**
+ * Set up the maps.
+ */
+function setupMaps()
+{
+  showMap("Google Map");
+}
+
+/**
+ * Set up Google Maps.
+ */
+function setupGoogleMaps()
+{
+  showIncident("Default");
+}
+
+/**
+ * Shows an incident on Google maps
+ * @param incident Incident name
+ */
+function showIncident(incident)
+{
+  for (var x = 0; x < incidentNames.length; x++)
+  {
+    document.getElementById(incidentNames[x]).style.display = "none";
+  }
+  document.getElementById(incident).style.display = "inline";
+}
+
+/**
+ * Shows a map
+ * @param map Map name
+ */
+function showMap(map)
+{
+  currentMap = map;
+  if (map == "Google Map")
+  {
+	document.getElementById("imap").checked=true;
+	document.getElementById("googleMapContent").style.display = "inline";  
+	document.getElementById("atmsMapContent").style.display = "none";  
+//    document.getElementById("mapSelect").innerHTML =
+//      "<table><tr>" +
+//        "<td><button disabled=true class=mapButton>Incident Map</button></td><td>" +
+//        "<td><button onClick=\"showMap(\'ATMS Map\')\" class=mapButton>ATMS Map</button></td>" +
+//      "</tr></table>";
+  }
+  else if (map == "ATMS Map")
+  {  
+	document.getElementById("amap").checked=true;
+	document.getElementById("googleMapContent").style.display = "none";
+	document.getElementById("atmsMapContent").style.display = "inline";  
+//    document.getElementById("mapSelect").innerHTML =
+//      "<table><tr>" +
+//        "<td><button onClick=\"showMap(\'Google Map\')\" class=mapButton>Incident Map</button></td><td>" +
+//        "<td><button disabled=true class=mapButton>ATMS Map</button></td>" +
+//      "</tr></table>";
+  }
+}
Index: trunk/webapps/EInotebook/maps/googleMap.html
===================================================================
--- trunk/webapps/EInotebook/maps/googleMap.html	(revision 359)
+++ trunk/webapps/EInotebook/maps/googleMap.html	(revision 359)
@@ -0,0 +1,17 @@
+<html>
+  <head>
+
+    <link rel="stylesheet" type="text/css" href="maps.css"> 
+    <link href="../ipadapp.css" rel="stylesheet" type="text/css">
+    <script type="text/javascript" src="maps.js"></script> 
+
+  </head>
+  <body>
+    
+   
+    <!-- The Map -->
+    <div id="Default" style="display:inline;"><img src="incidents.png"></div>
+
+
+  </body>
+</html>
Index: trunk/webapps/EInotebook/full_script_accelerated.xml
===================================================================
--- trunk/webapps/EInotebook/full_script_accelerated.xml	(revision 359)
+++ trunk/webapps/EInotebook/full_script_accelerated.xml	(revision 359)
@@ -0,0 +1,4825 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE TMC_SCRIPT SYSTEM "script.dtd">
+
+<TMC_SCRIPT title="Full Simulation">
+
+	<SCRIPT_DATA>
+		<NEW_UNIT UnitNum = "14-14">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 at Dyer Rd</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011234</BADGE_NUM>
+			<OFFICER>John Carrie</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>9796</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-14</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-17">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 MacArthur Boulevard</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011304</BADGE_NUM>
+			<OFFICER>James Hill</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>15053</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-17</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-9">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 Edinger Avenue</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>012454</BADGE_NUM>
+			<OFFICER>Bobby Hey</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>6394</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-9</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-9">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I405 IRVINE CTR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>011596</BADGE_NUM>
+			<OFFICER>Harry Jackson</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>10606</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-9</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-S3">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>73 Bear Street</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011250</BADGE_NUM>
+			<OFFICER>James Tuchman</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>19005</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-S3</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-15">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 4th street</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>013282</BADGE_NUM>
+			<OFFICER>Sam Spellicy</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>23786</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-15</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-19">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 Culver</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>012495</BADGE_NUM>
+			<OFFICER>Michael Bay</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>15760</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-19</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-24">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-405 IRVINE CNTR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>011194</BADGE_NUM>
+			<OFFICER>Greg Johnson</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>16987</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-24</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-19">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-5 / Sand Canyon</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013181</BADGE_NUM>
+			<OFFICER>Andre Muller</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>18685</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-19</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-13">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-5 / 133</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>015283</BADGE_NUM>
+			<OFFICER>Craig O'Neil</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>14069</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-13</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-11">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>SR55 AT DYER</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>012555</BADGE_NUM>
+			<OFFICER>Alex Carlton</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>15860</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-11</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-07">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I405 / CULVER OFFR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013606</BADGE_NUM>
+			<OFFICER>Gary Schmidt</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>14999</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-7</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-S4">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC></CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013565</BADGE_NUM>
+			<OFFICER>Daniel Pierce</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>10606</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-S4</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-22">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>57 / Chapman</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>012345</BADGE_NUM>
+			<OFFICER>Victor Percival</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>24203</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-22</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-23">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>22 / Euclid Avenue</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>011860</BADGE_NUM>
+			<OFFICER>Michael Rocker</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>20184</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-23</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-26">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>57 / 91</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton Area</AREA>
+			<BADGE_NUM>011480</BADGE_NUM>
+			<OFFICER>Patrick King</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>14023</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-26</ALIAS>
+		</NEW_UNIT>
+		<!-- 17 isn't a valid CHP office? -->
+		<NEW_UNIT UnitNum = "17-14">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 / Euclid</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>017935</BADGE_NUM>
+			<OFFICER>William Bond</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>29877</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>17-14</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "17-16">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>S-405 / Euclid</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>015839</BADGE_NUM>
+			<OFFICER>Matthew McCarmick</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>23998</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>17-16</ALIAS>
+		</NEW_UNIT>
+	</SCRIPT_DATA>
+
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO003</MASTER_INC_NUM>
+			<P>1</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>14-14</BEAT>
+				<ADDRESS>SB55 AT 405 </ADDRESS>
+				<LOC>SB55 AT 405</LOC>
+				<CITY>Costa Mesa</CITY>
+				<AREA>14-Santa Maria</AREA>
+				<FIRE>Costa Mesa</FIRE>
+				<LAW>Costa Mesa</LAW>
+				<EMS>Costa Mesa</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>14-14</Beat>
+				<TruncLoc>SB55 AT 405</TruncLoc>
+				<FullLoc>SB55 AT 405</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="187_N_405_ML">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>8.4</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="187_N_405_HV">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>8.4</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>	
+			
+			<LOCATION_INFO ID="187_S_55_ML">
+				<Route>55</Route>
+				<Direction>SB</Direction>
+				<Postmile>6.5</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+		</CAD_DATA>	
+		
+		<GENERAL_INFO> 			
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a stalled DOT truck on SB 55 overpass at 405. The truck is 
+			  hit by a vehicle, the vehicle is vaulted over the railing, and a 6 
+			  vehicle collision occurs below in the NB 405 lanes. The #2 and 3 lanes 
+			  are blocked on SB 55 and the #1, 2, and 3 lanes are blocked on NB 405. 
+			  The driver of the truck is uninjured, although there are 4 fatals, 2 
+			  major injured, and 4 minor injured in the collision below. MAIT is 
+			  called to the scene to investigate the collision and a Sig Alert is 
+			  declared. 
+			</TEXT>
+		</GENERAL_INFO>	
+		
+		<TELEPHONE>	
+			<INSTRUCTOR Role="DOT driver">Places a call to CHP Dispatch to notify of stalled DOT vehicle.</INSTRUCTOR>
+		</TELEPHONE>				
+		
+		<MAINTENANCE_RADIO>Dispatch, this is xxx. I'm on south 55 at the 405.  
+		 		My truck is out of service here, stuck in the lane.  I need CHP assistance ASAP!" 
+		</MAINTENANCE_RADIO>	
+		
+	</SCRIPT_EVENT>	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:15</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>	
+				<DETAIL>STALLED DOT SB SR-55 AT I-405</DETAIL>	
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+		
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<UNIT UnitNum="14-14" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "25" Path = "187/18701.mp3" />	
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		        
+		
+		<CHP_RADIO RadioFile="18701.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-14 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia 11-25 stalled DOT truck southbound 55 overpass at 405.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14 10-4. Enroute from 55 at Dyer Rd.</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia copies enroute from 55 at Dyer Rd.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be verifying incident 187 on CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator viewing cameras in incident area.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:45</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>CELLULAR 911 RPT DOT HT, 2ND VEH OVER THE SIDE, UNVERIFIED</DETAIL>
+				<AUDIO Length = "26" Path = "187/18702.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18702.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-14 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia. Cellular 911 caller reports stalled vehicle on the 55/405 overpass was hit and a vehicle was pushed over the side.  Can you verify?</LINE>				
+				<LINE Role="Field">Santa Lucia, negative, I'm one minute away.</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia 10-4. One minute away.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:01:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:01:15</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:01:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DOT HIT BY VEH, VEH OVER SIDE.</DETAIL>
+				<DETAIL>2ND VEH LANDED NB 405 BELOW, LG COLLISION OCCUR. REQ 2 1141 CODE 2 UNITS ASSIST</DETAIL>
+				<UNIT UnitNum="14-14" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "42" Path = "187/18703.mp3" />
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>					
+				
+				<PARAMICS LocationID="187_N_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+				</PARAMICS>					
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>			
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18703.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14 10-97 11-83 11-25.  It appears the DOT truck was hit by a vehicle and over the side landed in the northbound 405 lanes below.  A major collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia 10-4 10-97 11-83 11-25.  DOT truck was hit by vehicle and the vehicle over the side landed in the northbound 405 lanes below.  A large collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="new"> 
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AHEAD</CMS_LINE>
+				<CMS_LINE>AT 405 OVERPASS</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be responding to incident 187</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should be monitoring ATMS operator</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:01:45</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:02:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 14-9 ENRT ASSIST 1183 1125</DETAIL>
+				<UNIT UnitNum="14-17" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="14-9" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "40" Path = "187/18704.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18704.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-17, 14-9 Santa Lucia</LINE>
+				<LINE Role="Field_1">Santa Lucia 14-17 go ahead.</LINE>	
+				<LINE Role="Field_2">Santa Lucia 14-9 go ahead.</LINE>
+				<LINE Role="Dispatch">	14-17, 14-9 assist 14-14 11-83 11-25 northbound 405 at the 55 interchange.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 14-17 copies.  Enroute from 405 just south of Macarthur Boulevard.</LINE>
+				<LINE Role="Field_2">14-9 10-4, enroute from 55 at Edinger Avenue.</LINE>
+				<LINE Role="Dispatch">Santa Lucia copies 14-17 enroute from 405 just south of Macarthur and 14-9 enroute from 55 at Edinger.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:02:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:02:45</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DOT DRIVER UNINJURED, #2,3 LNS BLCKD SB 55.</DETAIL>
+				<DETAIL>14-14 MVNG TO 405 ASSESS DMG</DETAIL>
+				<AUDIO Length = "29" Path = "187/18705.mp3" />
+			</CAD_INCIDENT_EVENT>
+			
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18705.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">	Santa Lucia, the driver of the DOT truck is uninjured but the #2 and #3 lanes are now blocked on southbound 55.  I'm moving down to the 405 lanes to assess the damage.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa-Lucia 10-4. Driver of the DOT truck is uninjured.  The #2 and #3 lanes are now blocked on southbound 55. Moving down to the 405 lanes to assess the damage.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="update"> 
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AHEAD</CMS_LINE>
+				<CMS_LINE>AT 405 OVERPASS</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should be updating the incident board.</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:08:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY TV channel 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">I was told that a car flew off an 
+										 overpass causing a large pile-up on the freeway below.
+			</INSTRUCTOR>
+			<STUDENT>Incident should be confirmed</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">I want to confirm the location so we 
+										 can send a helicopter to check it out.
+			</INSTRUCTOR>
+			<STUDENT>55/405 interchange</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:08:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO004</MASTER_INC_NUM>
+			<P>2</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>9-9</BEAT>
+				<ADDRESS>NB5 JNO Lake Forest Dr</ADDRESS>
+				<LOC>NB5 JNO Lake Forest Dr</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>9-Templeton</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>9-9</Beat>
+				<TruncLoc>NB5 JNO Lake Forest Dr</TruncLoc>
+				<FullLoc>NB5 JNO Lake Forest Dr</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="188_N_5_ML">
+				<Route>5</Route>
+				<Direction>NB</Direction>
+				<Postmile>20</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>	
+			
+			<CAD_INCIDENT_EVENT>			
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>
+					<Lane_number>5</Lane_number>
+				</PARAMICS>					
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+		
+		<GENERAL_INFO>
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a two vehicle collision between a tomato truck and a car. The 
+	  	  truck spills tomatoes across lanes #3,4,5 right lanes plus 
+	  	  shoulder of NB 5 just north of Lake Forest Drive. There is one 11-44 
+	  	  and 2 major injured. Ambulance, fire, paramedics, additional units, 
+	  	  Maintenance/coroner, and TMT are requested on this incident.
+			</TEXT>
+		</GENERAL_INFO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:10:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-9 ENRT FRM I405 @ IRVINE CTR</DETAIL>
+				<UNIT UnitNum="9-9" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "25" Path = "188/18801.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18801.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 11-79 northbound 5 just north of Lake Forest Drive.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied enroute from 405 at Irvine Center.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Enroute from 405 at Irvine Center.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be monitoring the CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator should try to confirm the incident with a CCTV camera.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should verify location and respond to incident 188</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:11:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">Hello, this is Dakota Crew at 
+											KCOW radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">I just heard over the scanner that 
+											you have a major accident on I405 at 55.
+			</INSTRUCTOR>
+			<STUDENT>Should confirm incident.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #1">Can you give me a run down on what 
+										 	happened?
+			</INSTRUCTOR>
+			<STUDENT>A collision occurred on NB 55 at 405.  A vehicle went over rail 
+					     onto NB 405 causing a 6 car collision.
+			</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:12:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-14 1097, MULTIPLE 1144 NB 405 AT 55 OVERPASS, 6 VEH TC</DETAIL>
+				<DETAIL>BLOCKING 3 INSIDE LNS NB 405. DRVR AND PSSNGR IN VEH 1144, 2 OTHER FATALS, MULT INJR, REQ CRNR AND SIGALERT</DETAIL>
+				<AUDIO Length = "46" Path = "187/18706.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18706.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-14 10-97. Multiple 1144 northbound 405 at 55 
+					overpass. Six vehicle collision blocking the three inside 
+					lanes. The driver and passenger of the car that went over 
+					the railing are both 11-44. I've got two other fatals and 
+					multiple injured down here. Request coroner and issue Sig 
+					Alert.
+				</LINE>
+				
+				<LINE Role="Dispatch">	14-14 Santa Lucia 10-4 10-97 11-80 11-25 northbound 405 
+						at 55 overpass. Multiple 1144. Six vehicle collision blocking the three 
+						inside lanes. The driver and passenger of the car that 
+						went over the railing are 11-44, 2 other 11-44.  
+						Multiple injuries, request coroner and send Sig Alert.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>					
+		
+		<CMS_EVALUATION cmsID="87" type="new"> 
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 LEFT LNS BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="new"> 
+			<LOCATION>NB 405 @ ICD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 LEFT LNS BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page sig alert information</EXPECTED_ACTION>	
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:12:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 CRNR</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should insert info for enroute coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:13:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 1097, PARAMEDICS 1097. 1184 SB 55 FOR DOT 1125</DETAIL>
+				<UNIT UnitNum="14-17" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "46" Path = "187/18707.mp3" />	
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18707.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-17 10-97. 1144 northbound 405 at 55. 	
+			Paramedics are 10-97. We've gotta secure the scene southbound 55 for the DOT 
+			hazard. Has Caltrans been notified that their truck has been 
+			involved in a collision?</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4 10-97 11-44 northbound 405 
+						at 55. Paramedics 10-97. Will be doing 11-84 on southbound 55 for 
+						DOT collision. Caltrans will be notified.			
+				</LINE>	
+				<LINE Role="Field">Santa Lucia 14-17 10-4</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:14:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9, FD, PARAMEDICS 1097.  TC SEMI W/TOMATOES AND VEH ON NB-5 #3,4,5 LNS</DETAIL>
+				<DETAIL>TRCK ON FIRE, REQ CT CLNUP, UNITS 1184</DETAIL>
+				<UNIT UnitNum="9-9" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "39" Path = "188/18802.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18802.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9</LINE>
+				<LINE Role="Dispatch">9-9 go ahead Santa Lucia</LINE>
+				<LINE Role="Field">Santa Lucia 9-9 10-97 11-79. Fire department and 
+					parmedics 10-97.  Collision between semi truck carrying 
+					tomatoes and vehicle in 2 right lanes.  Truck on fire and 
+					tomatoes spilled over three right lanes. Request Caltrans to 
+					clean up the tomatoes and units for 11-84.</LINE>
+				<LINE Role="Dispatch">Santa Lucia 10-4, 9-9 10-97 11-79. Fire and 
+						paramedics 10-97. Collision involves tomato truck and 
+						car in two right lanes. Truck on fire and tomatoes over 
+						three right lanes.  Request Caltrans.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<CMS_EVALUATION cmsID="31" type="new"> 
+			<LOCATION>??</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>UR TIRES R RND</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should have ensured that a maintenance team was dispatched</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:14:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ MAIT, REQ 14-S UNIT, REQ TMT</DETAIL>
+				<UNIT UnitNum="14-S3" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "34" Path = "187/18708.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18708.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia, request MAIT, they'll have to investigate this 
+					one.  Also, request 14-S unit and TMT.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia copied request MAIT, 14-S unit, and TMT.</LINE>				
+				<LINE Role="Dispatch">	14-S3 unit copy.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-S3, 10-4 enroute from 73 at Bear Street.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia copies enroute from 73 at Bear Street.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be alert and advising radio on TMT.</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should notify the TMT leader of incident 187</EXPECTED_ACTION>
+		</RADIO_EVALUATION>	
+		
+		<TMT_RADIO>TMT leader espond to student action.  Dispatch appropriate units???</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:15:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">I called earlier about the accident 
+											on I405. Have any more details come 
+											in on that incident?
+			</INSTRUCTOR>
+			<STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #2">Do you have an alternate route I can recommend?
+			</INSTRUCTOR>
+			<STUDENT>Yes (TBD)</STUDENT>	
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:16:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<MAINTENANCE_RADIO>If Maintenance unit was sent out, radio the supervisor 
+			with a 10-97.  Say that you're going to await MAIT investigation and 
+			transport other Maintenance worker.			
+		</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:17:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-9 1097, ASSIST 1184</DETAIL>
+				<UNIT UnitNum="14-9" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "22" Path = "187/18709.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18709.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-9.</LINE>				
+				<LINE Role="Dispatch">14-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-9 10-97. Will assist 14-14 with 11-84.</LINE>				
+				<LINE Role="Dispatch">14-9 Santa Lucia 10-4 10-97 northbound 405 at 55. 
+						Will assist 14-14 with 11-84.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:18:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TRAFFIC BACKING SB 55 REQ TMT MEDIUM DUTY 1185</DETAIL>
+				<AUDIO Length = "24" Path = "187/18710.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18710.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>			
+				<LINE Role="Field">Santa Lucia 14-17. Traffic is backing up on southbound 55. 
+					Request TMT and medium duty 11-85 for the DOT truck.	</LINE>			
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. Traffic backing up on southbound 
+						55.  Requesting TMT and medium duty 11-85.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:19:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>		
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>4 1144'S, 2 1180'S, 4 1181'S</DETAIL>
+				<AUDIO Length = "20" Path = "187/18711.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18711.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>		
+				<LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14. 4 11-44's, 2 11-80's, and 4 11-81's.</LINE>		
+				<LINE Role="Dispatch">14-14 Santa Lucia copies 4 11-44's,2 11-80's, and 4 11-81's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">Have any more details come in on the pileup at 55/405?</INSTRUCTOR>
+			<STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured, ??? mile backup</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">Do you have an alternate route I can recommend?</INSTRUCTOR>
+			<STUDENT>(pause for answer: Yes)</STUDENT>
+			<STUDENT>3 car collision, vehicles blocking #2,3,4 lanes.  Moderate injuries.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="95" type="new"> 
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:20:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-15,9-19 ENRT FOR 1184</DETAIL>
+				<UNIT UnitNum="9-15" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="9-19" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "38" Path = "188/18803.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18803.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-15, 9-19 Santa Lucia</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-15 go ahead.</LINE>				
+				<LINE Role="Field_2">Santa Lucia go ahead to 9-19.</LINE>				
+				<LINE Role="Dispatch">9-15 and 9-19 Santa Lucia 11-84 for 11-79 
+						northbound 5 just north of Lake Forest Drive.</LINE>				
+				<LINE Role="Field_1">	Santa Lucia 9-15 10-4. Enroute from 55 at 4th Street.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 9-19 copied enroute from 405 at Culver.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-15 enroute from 55 at 4th and 9-19 
+		  				enroute from 405 at Culver.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #3">Hello, this is Bill Bradley at KCTR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">I heard here was a large collision on the 5.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">What details do you have on that?</INSTRUCTOR>
+			<STUDENT>Semi and 2 cars, tomatoes over three right lanes.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #3">Were there any injured?</INSTRUCTOR>
+			<STUDENT>Don't know yet.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:21:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 SABLAN TOWING</DETAIL>
+				<TOW Company="SABLAN TOWING" ConfNum="(949)555-2468" PubNum="(949)555-8899" Beat=""/>
+				<AUDIO Length = "18" Path = "187/18712.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18712.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	14-17 Santa Lucia information.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-17 go ahead.</LINE>				
+				<LINE Role="Dispatch">	14-17 Santa Lucia 10-39 Sablan's Towing.</LINE>				
+				<LINE Role="Field">	14-17 copied 10-39 Sablan's Towing.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:22:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-S3 1097 NB 405 @ 55</DETAIL>
+				<DETAIL>MAIT ETA 15</DETAIL>
+				<UNIT UnitNum="14-S3" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "26" Path = "187/18713.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>			
+
+		<CHP_RADIO RadioFile="18713.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 10-97 northbound 405 at 55.  Do you 
+					have an ETA for MAIT?</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 10-97 northbound 405 
+						at 55. MAIT ETA 15 minutes.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 copies MAIT ETA 15.</LINE>
+			</DIALOG>		
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:24:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1141 1097, TRCK STLL FIRE, 2 1180 IN VEH, UNK IN TRCK</DETAIL>
+				<AUDIO Length = "32" Path = "188/18804.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18804.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. 11-41 10-97. Truck still engulfed in 
+					flames.  Two 11-80's in the vehicle. Unknown passengers in 
+					the truck. Request TMT, traffic backing up quickly.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-41 10-97. Truck still engulfed.  
+						Two 11-80's in vehicle and unknown passengers in truck.  
+						Request TMT, traffic backing up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #4">How many vehicles were involved in the 
+								 			collision on northbound 5?
+			</INSTRUCTOR>
+			<STUDENT>1 semi, two cars.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">How many lanes were blocked?</INSTRUCTOR>
+			<STUDENT>Three right lanes blocked.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">Do you have an alternate route established?</INSTRUCTOR>
+			<STUDENT>What's it to you!?</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be assisting radio operator</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should dispatch TMT</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:25:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQUEST 1185 BIG RIG AND 1185 ROT, ISSUE SIG ALERT</DETAIL>
+				<AUDIO Length = "23" Path = "188/18805.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>			
+		
+
+		<CHP_RADIO RadioFile="18805.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. Roll 11-85 big rig and a rotational 
+					11-85.  Issue a Sig Alert, this could take a while.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copied roll 11-85 big rig and 11-85 
+						rotational. Issue a Sig Alert until further notice.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">What details do you have on the 
+											collision Northbound 5 at Lake Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Semi vs. two cars, tomatoes over lanes 3,4,5, two major 
+						 injured, unknown passenger in truc.</STUDENT>
+		</TELEPHONE>		
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be ensuring a Sig Alert is issued</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+		<MAINTENANCE_RADIO>
+			If Maintenance has not been requested by this time, 
+			have someone call as CHP Dispatch and make a request for them.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:27:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR 1097, INJURED TRANSPORTED</DETAIL>
+				<AUDIO Length = "17" Path = "187/18714.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18714.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>
+				<LINE Role="Dispatch">14-S3 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia, coroner 10-97. The injured have been transported.</LINE>
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 coroner 10-97. Injured transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:30:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-15 1097, ADVS PD TO DIRECT TRAFFIC OFF AT LAKE FOREST </DETAIL>
+				<UNIT UnitNum="9-15" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "26" Path = "188/18806.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18806.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-15.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-15 10-97 11-80. Advise local PD that 
+					we are going to direct traffic off at Lake Forest off ramp and 
+					are closing the Lake Forest on ramp.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-15 10-97 11-80. Advise PD 
+						we're directing traffic off Lake Forest offramp and closing 
+						Lake Forest onramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<STUDENT>Student places call to Police Department</STUDENT>
+			<STUDENT>Student correctly notifies PD of incident location and details</STUDENT>
+		</TELEPHONE>
+
+		<TMT_RADIO>
+			If no sign truck/s have been requested yet, a phone call needs to be 
+			made from CHP Dispatch requesting them.			
+		</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:30:30</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is there an alternate route 
+											established for the northbound 5 
+											lanes due to the collision at Lake Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Lake Forest East to Muirlands or Lake Forest West to Irvine Ctr.  
+				Re-enter I5 at numerous locations</STUDENT>
+		</TELEPHONE>		  
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:31:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 COLLEGE OAK BIG RIG, CYCLE TOW FOR ROT</DETAIL>
+				<TOW Company="College Oak" ConfNum="(949)555-2990" PubNum="(949)555-5758" Beat=""/>
+				<TOW Company="Cycle" ConfNum="(949)555-2281" PubNum="(949)555-7162" Beat=""/>
+				<AUDIO Length = "20" Path = "188/18807.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18807.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia information</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-39 College Oak for big rig 11-85 and 
+						Cycle Tow for 11-85 rotational.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied 10-39 College Oak and Cycle Tow.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>	  
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:32:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-19 1097 ASSISTNG 1184</DETAIL>
+				<UNIT UnitNum="9-19" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "20" Path = "188/18808.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18808.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-19</LINE>
+				<LINE Role="Dispatch">9-19 go ahead to Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-19 10-97 11-80. Assisting with 11-84.</LINE>				
+				<LINE Role="Dispatch">9-19 Santa Lucia copied 10-97 11-80. Assisting with 11-84.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:35:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT 1097 STARTING INVESTIGATION SB SR55</DETAIL>
+				<AUDIO Length = "22" Path = "187/18715.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="187/18715.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3, MAIT is 10-97. They're starting their 
+					investigation on the 55 overpass.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 MAIT 10-97. Starting 
+						investigation on 55 overpass.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 MAIT</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:36:00</TIME_INDEX> 
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="CHP Dispatch">Hello, CHP Dispatch.  Do you have traffic control enroute for NB 405 at 55</INSTRUCTOR>
+			<STUDENT>Do you mean sign truck crews or cones on the road?</STUDENT>
+			<INSTRUCTOR Role="CHP Dispatch">Cones</INSTRUCTOR>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should interact with the dispatch operator regarding cone crews</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:37:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MED DUTY 1185 1097, AWAIT FINISH MAIT BEFORE TOW VEH</DETAIL>
+				<AUDIO Length = "25" Path = "187/18716.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18716.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, medium duty 11-85 10-97. Will await the finish of 
+					MAIT investigation before towing vehicle.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4 medium rig 11-85 10-97. Will await 
+						the finish of MAIT investigation before towing vehicle.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:38:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 PD, SENDING 2 UNITS ASST 1184</DETAIL>
+				<AUDIO Length = "17" Path = "188/18809.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18809.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia information.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-39 police department. Sending two 
+						units to assist with 11-84.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">"Hello, this is Terry Webb at KTSV TV 11."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">My CAD is down, do you have any 
+										 incidents going on right now?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of all current incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">Give me the details on those.</INSTRUCTOR> 
+			<STUDENT>Notify reporter of all current incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:40:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR CONFIRMED FOUR FATAL, PREP TO TRANSPORT</DETAIL>
+				<AUDIO Length = "19" Path = "187/18717.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18717.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. The coroner has confirmed four fatals and 
+					is preparing them to be transported.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied coroner confirmed four fatals 
+						and preparing for transport</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:42:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1180S TRANSPORTED</DETAIL>
+				<AUDIO Length = "14" Path = "188/18810.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18810.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. 11-80's transported.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia copied 11-80's transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:43:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9 FIRE OUT</DETAIL>
+				<AUDIO Length = "14" Path = "188/18811.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18811.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9. The fire is out.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Fire is out.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should note that the fire has been put out</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>should be active and responding to situation</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:44:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>LAKE FOREST ONRAMP CLOSED, DIRECTING TRAFFIC OFF LAKE FOREST OFFRAMP</DETAIL>
+				<AUDIO Length = "23" Path = "188/18812.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18812.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-15.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-15. Lake Forest onramp closed. Directing 405 traffic 
+					off Lake Forest offramp.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia 10-4. Lake Forest onramp closed.  
+					Directing 405 traffic off at Lake Forest offramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">Do you have an alternate established 
+											for the norhtbound 5 lanes near Lake 
+											Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Same as before..</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #7">When are the lanes supposed to be open?	</INSTRUCTOR>
+			<STUDENT>No specific time, approx. 1 hour.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:47:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT FINISHED W/ INVESTIGATION SB SR-55 AT I-405, PREP DOT TRCK FOR TOW</DETAIL>
+				<AUDIO Length = "24" Path = "187/18718.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18718.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, MAIT is finished with their investigation on 
+					the 55 overpass.  Preparing DOT truck for tow.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. MAIT is finished with their 
+						investigation on the 55 overpass. Preparing DOT truck 
+						for tow.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:48:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1 1144 IN TRCK, REQ CRNR</DETAIL>
+				<AUDIO Length = "18" Path = "188/18813.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18813.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. There is one 11-44 in the truck. Request coroner.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copied one 11-44 in truck. Request coroner.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for coroner request</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+		<TMT_RADIO>Sign truck/s are 97 at the end of the current queue.</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:49:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incidents.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">What details do you have on those?</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:50:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9 1039 CRNR, ETA 15</DETAIL>
+				<AUDIO Length = "16" Path = "188/18814.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18814.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	9-9 Santa Lucia</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-39 coroner, ETA is 15 minutes.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9 10-4.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-39 CORONER</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+		
+		<MAINTENANCE_RADIO>
+			Radio traffic between maintenance workers on site and maintenance dispatcher. 
+			Dispatched crews are 10-97 and beginning the cleanup.
+		</MAINTENANCE_RADIO>
+
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:51:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT 1097, STRTNG CLNUP OF TOMATOES</DETAIL>
+				<AUDIO Length = "18" Path = "188/18815.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18815.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9. Caltrans is 10-97. Starting cleanup of tomatoes.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Caltrans 10-97. Starting cleanup of tomatoes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">I'm away from my CAD. What's going on 
+										 with the accident on northbound 5 
+										 involving the tomato truck spill?
+			</INSTRUCTOR>
+			<STUDENT>Fire out on truck, 11-44, will start cleanup.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">Was anybody killed in the collision.</INSTRUCTOR>
+			<STUDENT>One 11-44</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:52:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TMT_RADIO>Radio traffic between TMT crew and TMT leader regarding current queue status</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:53:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 ROT 1097</DETAIL>
+				<AUDIO Length = "15" Path = "188/18816.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18816.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. 11-85 rotation 10-97.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia copied 11-85 rotation 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">What details do you have on the northbound 5 collision?</INSTRUCTOR>
+			<STUDENT>(pause for answer)</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">Is there an alternate route established?</INSTRUCTOR> 
+			<STUDENT>(pause for answer)</STUDENT>			
+		</TELEPHONE>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:54:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT STARTING INVESTIGATION NB 405 TO TAKE 30 MIN</DETAIL>
+				<AUDIO Length = "23" Path = "187/18719.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18719.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-S3. MAIT is starting investigation on 
+					northbound 405. The investigation should take 30 minutes.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia copied MAIT starting investigation on 
+						northbound 405. The investigation should take 30 minutes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:55:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CLNUP NRLY FNSHD DOT RDY TO BE TWD, SB SR-55 LNS OPN IN 5</DETAIL>
+				<AUDIO Length = "25" Path = "187/18720.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18720.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, nearly finished with cleanup and the DOT truck 
+					is ready to be towed. Southbound 55 lanes open in 5 minutes.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. Nearly finished with cleanup and 
+						DOT truck is ready to be towed. Southbound 55 lanes open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:56:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>WTNSSES, JOHN/BETTY JONES SAW TOMATO TRUCK LOSE CONTROL, FLIP OVER, VEH HIT, TRCK IMM CAUGHT FIRE</DETAIL>
+				<WITNESS Name="John/Betty Jones" Address="101 Lowland Dr." PhoneNum="(949)555-8375"/>
+				<AUDIO Length = "27" Path = "188/18817.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18817.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Witnesses John and Betty Jones saw the 
+					tomato truck lose control, flip over, and the vehicle hit 
+					it. The truck then caught fire.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Witnesses John and Betty Jones saw 
+						tomato truck lose control, flip over, and vehicle hit 
+						it. Truck then immediately caught fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, is George there?</INSTRUCTOR>
+			<STUDENT>No, wrong number.</STUDENT>
+			<INSTRUCTOR Role="Public">Sorry, good bye.</INSTRUCTOR> 
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:59:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>BIG RIG 1185 1097</DETAIL>
+				<AUDIO Length = "16" Path = "188/18818.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18818.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9, big rig 11-85 10-97.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copies, big rig 11-85 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #10">"Hello, this is Bill Rasmussen at KTRC radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #10">"Do you have any updated info on the 
+											northbound 5 collision involving the 
+											tomato truck?"
+			</INSTRUCTOR>
+			<STUDENT>Pause for answer.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #10">When is it expected to be cleared.</INSTRUCTOR>
+			<STUDENT>Cleaning up now, no definite answer, approx. 30 minutes.</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should call CHP to inquire for incident duration.  (Approx 30 minutes)</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:02:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 1097 DOT TRCK TWD, SB SR-55 OPN</DETAIL>
+				<AUDIO Length = "21" Path = "187/18721.mp3" />
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18721.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 10-98, the DOT truck has been towed and the 
+					southbound 55 lanes are open.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 14-17 10-98. DOT truck towed and 
+						southbound 55 lanes open.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="remove">
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+		<MAINTENANCE_RADIO>
+			Maintenance workers are 10-98.  Truck has been towed and 
+			taking maintenance worker, whose truck got hit, to the shop.
+		</MAINTENANCE_RADIO>		
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:03:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT PARTIAL CMPLT, PICS TKN, NEED MSRMNTS, INTERVIEWS</DETAIL>
+				<AUDIO Length = "25" Path = "187/18722.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18722.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT has partially completed its 
+					investigation. Pictures have been taken, but still need to 
+					take measurements and conduct interviews.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. MAIT has partially completed its 
+		  				investigation.  Pictures have been taken, but still need 
+		  				to take measurements and conduct interviews.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:05:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT #3 LN ALMOST CLEARED OF TOMATOES</DETAIL>
+				<AUDIO Length = "17" Path = "188/18819.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18819.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans has the #3 lane almost cleared of the tomatoes.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans has #3 almost cleared.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #11">"Hello, this is Chris Rasmuessan at KWIT radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #11">"Do you have an ETA for the opening of the lanes on Eastbound 91?"
+			</INSTRUCTOR>
+			<STUDENT>No to full opening, approx. 30 minutes, #3 lane nearly cleared.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:07:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR 1097</DETAIL>
+				<AUDIO Length = "14" Path = "188/18820.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="31520.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9, coroner 10-97.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copies coroner 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:08:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">"Hello, this Dakota Crew at KTAK radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">"Do you have any new incidents 
+											within the last 20 minutes?"
+			</INSTRUCTOR>
+			<STUDENT>No.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #1">Give me the details on that.</INSTRUCTOR>
+		</TELEPHONE>		
+		
+		<MAINTENANCE_RADIO>
+			Maintenance crew notifies dispatch that lane #3 is clear.  The #4,5
+			lanes should be clear in another 20-30 minutes.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:08:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ 6 ROT 1185</DETAIL>
+				<AUDIO Length = "17" Path = "187/18723.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18723.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. Request 6 rotational 11-85's.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied requesting 6 rotational 11-85's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:09:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TOWED, #3 LN CLEARED, OPENING</DETAIL>
+				<AUDIO Length = "18" Path = "188/18821.mp3" />
+				
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>4</Lane_number>
+					<Lane_number>5</Lane_number>
+				</PARAMICS>	
+				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18821.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Vehicle towed. #3 lane cleared of 
+					tomatoes and opening lane now.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Vehicle towed, #3 lane cleared 
+						and opening lane now.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:10:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT NEARLY COMPLETE, FINISHING INTERVIEWS, TOW ETA 10</DETAIL>
+				<AUDIO Length = "29" Path = "187/18724.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18724.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT has nearly completed their 
+					investigation, they are finishing up the interviews. ETA 
+					tows?</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia. MAIT has nearly completed their 
+						investigation, they are finishing up the interviews. 
+						Tow ETA 10 minutes.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 10-4 ETA 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TMT_RADIO>Have SB 55 TMT units go 10-98.</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:12:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1144 CNFRMD, #3 LN OPN, FULL OPNNG 20 MIN</DETAIL>
+				<AUDIO Length = "21" Path = "188/18822.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18822.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Coroner has confirmed 11-44. #3 lane is 
+					open. Full opening in 20 minutes.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-44 confirmed. #3 lane open, 
+						full opening in 20.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for confirmed 1144</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:13:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">"Hello, this is Cameron Stevens at KCLY TV 2."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">"My CAD is down. Were there any 
+										 confirmed fatalities at the collision 
+										 northbound 5?"
+			</INSTRUCTOR>
+			<STUDENT>1 dead.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">"When are the lanes supposed to be open?"</INSTRUCTOR>
+			<STUDENT>#3 lane open, full opening in 20.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:15:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT NRLY FNSHD CLNUP, TRCK BEING PRPRD FOR 1185</DETAIL>
+				<AUDIO Length = "18" Path = "188/18823.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18823.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans is nearly finished with cleanup. 	
+					Truck being prepared for 11-85.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Caltrans nearly finished. Truck 
+						being prepared for 11-85.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:16:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">"Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">When is the roadway supposed to be cleared on the 5?
+			</INSTRUCTOR>
+			<STUDENT>#3 lane open, full opening in approx. 15.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:16:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT FINISHED INVESTIGATION 1098, START CLEANUP WHEN 1185S ARRIVE</DETAIL>
+				<AUDIO Length = "23" Path = "187/18725.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18725.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT is finished with their investigation 
+					and 10-98. Will start cleanup when the 11-85's arrive.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied MAIT finished with 
+						investigation and 10-98. Start cleanup when 11-85's 
+						arrive.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:18:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<MAINTENANCE_RADIO>Confirm completion of tomato cleanup.  Going 10-98</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:19:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 1097 PARTIAL OPENING IN 15</DETAIL>
+				<AUDIO Length = "21" Path = "187/18726.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18726.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 11-85's 10-97. Partial opening in 15 minutes.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 11-85's 10-97. Partial opening in 15 minutes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:20:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT 98 TOMATOES, LNS OPN IN 10</DETAIL>
+				<AUDIO Length = "17" Path = "188/18824.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18824.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans done cleaning up the tomatoes. 
+					Lanes open in 10.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans 98 with 
+						tomatoes, lanes open in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:21:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #3">"Hello, this is Bill Bradley at KCTR radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">"What kind of backup is there on 
+											northbound 5 due to the tomato truck spill and collision?"
+			</INSTRUCTOR>
+			<STUDENT>Current queue from ATMS.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #3">Are the lanes open soon?</INSTRUCTOR>
+			<STUDENT>10 minutes.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:23:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO005</MASTER_INC_NUM>
+			<P>3</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1031 - Crime in progress</TYPE_CODE>
+				<TYPE>1031</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>28-24</BEAT>
+				<ADDRESS>NB/SB 405 at Jeffrey</ADDRESS>
+				<LOC>NB/SB 405 at Jeffrey</LOC>
+				<CITY>San Luis Obispo</CITY>
+				<AREA>28-San Luis Obispo</AREA>
+				<FIRE>San Luis Obispo</FIRE>
+				<LAW>San Luis Obispo</LAW>
+				<EMS>San Luis Obispo</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1031</Type>
+				<Beat>28-24</Beat>
+				<TruncLoc>NB/SB 405 at Jeffrey</TruncLoc>
+				<FullLoc>NB/SB 405 at Jeffrey</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="189_N_405_ML">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>3.04</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="189_N_405_HV">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>3.04</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>
+
+			<LOCATION_INFO ID="189_S_405_ML">
+				<Route>405</Route>
+				<Direction>SB</Direction>
+				<Postmile>5.55</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="189_S_405_HV">
+				<Route>405</Route>
+				<Direction>SB</Direction>
+				<Postmile>5.55</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>
+			
+
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>CELLULAR 911 RPT SUICIDE BMBR AT I-405 @ JEFFREY, UNVERIFIED</DETAIL>
+				<DETAIL>1039 IRV PD, PD ENRT, 28-24 ENRT FROM I-405 @ IRVINE CNTR.</DETAIL>
+				<UNIT UnitNum="28-24" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "23" Path = "189/18901.mp3" />
+			</CAD_INCIDENT_EVENT>		
+			
+		</CAD_DATA>	
+
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a suicide attempt and a bomb threat. A man with a bomb 
+		  strapped to him is threatening to blow up the interchange at I-405 and
+		  Jeffrey Road. The freeway interchange is shut down completely, causing 
+		  major backup in both directions on I-405. The man is eventually 
+		  apprehended after attempting to explode the bomb. The PD, additional 
+		  units, sign trucks, negotiator, and the bomb squad are sent to the 
+		  scene to assist.
+			</TEXT>
+		</GENERAL_INFO>
+
+		<CHP_RADIO RadioFile="18901.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">28-24 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24 go ahead.</LINE>				
+				<LINE Role="Dispatch">	28-24 Santa Lucia suicide attempt 405 on the Jeffrey 
+						overpass. The police department has been notified 
+						and is enroute.</LINE>				
+				<LINE Role="Field">	Santa Lucia 28-24 10-4. Enroute from 405 at Irvine Center.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator should be viewing CCTV cameras in vicinity of incident</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:24:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TRCK TWD, FD SPRYNG LNS, LNS OPN IN 5</DETAIL>
+				<AUDIO Length = "21" Path = "188/18825.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18825.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Truck towed. Fire department spraying lanes 
+					clean. Lanes open in 5.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Truck towed. Fire department 
+						spraying lane clean, lanes open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:25:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR> 
+			<INSTRUCTOR Role="Radio Reporter #4">Are the lanes open yet on 
+											northbound 5 just north of Lake 
+											Forest Drive.
+			</INSTRUCTOR>
+			<STUDENT>#3 open, all lanes open in 5.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">Are there any other new incidents 
+											going on right now?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of new incidents.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:25:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-24 1097, PD 1097</DETAIL>
+				<UNIT UnitNum="28-24" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "18" Path = "189/18902.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18902.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-24.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24 10-97 405 at Jeffrey. 
+				                   Irvine PD is 10-97.
+				</LINE>			
+				<LINE Role="Dispatch">10-4, Copy you  are 97 with Irvine PD.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:29:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-19 ENRT FROM I-5 AT SND CYN, 28-13 ENRT FROM I-5 AT 133</DETAIL>
+				<DETAIL>SHUT DWN NB I-405 AT SND CYN OFFR</DETAIL>
+				<UNIT UnitNum="28-19" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="28-13" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "44" Path = "189/18903.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18903.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">28-19 Santa Lucia.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 28-19 go ahead.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia 10-23.</LINE>					
+				<LINE Role="Dispatch">(pause)</LINE>				
+				<LINE Role="Dispatch">28-13 Santa Lucia.</LINE>				
+				<LINE Role="Field_2">Santa Luica 28-13 go ahead.</LINE>				
+				<LINE Role="Dispatch">28-19 and 28-13 Santa Lucia, proceed to northbound 405 
+						to shut down the northbound lanes at the Sand Canyon off 
+						ramp. A man has threatened to blow up the 405 at 
+						Jeffrey interchange.</LINE>
+				
+				<LINE Role="Field_1">Santa Lucia 28-19 10-4. Enroute from I-5 at Sand Canyon.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 28-13 copied, enroute from I-5 at 133.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:30:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>OPN #2,3 LNS, FULL OPN IN 5</DETAIL>
+				<AUDIO Length = "20" Path = "187/18727.mp3" />				
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+				</PARAMICS>						
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18727.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. We have opened the #2 and #3 lanes. Full 
+					opening in 5 minutes.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. #2 and #3 lanes open, full opening in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="87" type="update">
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="update">
+			<LOCATION>NB 405 @ ICD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="95" type="update">
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:31:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>ALL LNS CLR, 9-15 OPENING LAKE FOREST ONRAMP</DETAIL>
+				<DETAIL>9-9,9-15,9-19 1098</DETAIL>
+				<UNIT UnitNum="9-9" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="9-15" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="9-19" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "25" Path = "188/18827.mp3" />
+				
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18827.mp3">
+			<DIALOG> 
+				<LINE Role="Field">Santa Lucia 9-9</LINE>
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. All lanes are clear.  9-15 is opening Lake Forest Onramp.  All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. All lanes open.  9-15 opening Lake Forest Onramp.
+						9-9. 9-15, 9-19 are 1098.</LINE>	
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should cancel Sig Alert</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be handling situation well</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:31:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-11 ENRT FROM I405 AT BRISTOL, 28-07 ENRT FROM SR55 AT DYER</DETAIL>
+				<DETAIL>28-11 28-07 TO SHT DWN SB I405 AT CULVER OFFR</DETAIL>
+				<UNIT UnitNum="28-11" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="28-07" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "45" Path = "189/18904.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18904.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	28-11 Santa Lucia.</LINE>
+				<LINE Role="Field_1">	Santa Lucia 28-11 go ahead.</LINE>
+				<LINE Role="Dispatch">	28-11 Santa Lucia 10-23.</LINE>
+				<LINE Role="Dispatch">	28-07 Santa Lucia.</LINE>
+				<LINE Role="Field_2">	Santa Lucia 28-07 go ahead.</LINE>
+				<LINE Role="Dispatch">	28-11 and 28-07 Santa Lucia, proceed to southbound I405 
+							to shut down the southbound lanes at the Culver Dr off 
+							ramp. A man has threatened to blow up the 405 at 
+							Jeffrey interchange.</LINE>
+				<LINE Role="Field_1">	Santa Lucia, 28-11 10-4 enroute from 405 at Bristol Sreet.</LINE>
+				<LINE Role="Field_2">	Santa Lucia, 28-07 10-4. Enroute from 55 at Dyer.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 11.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">I just heard about a suicide attempt on I405.
+			</INSTRUCTOR>
+			<STUDENT>Confirm report.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Where exactly is it located, I would 
+											 like to send a camera out there?"
+			</INSTRUCTOR>
+			<STUDENT>I405 at Jeffrey Dr.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Are you closing down any of the lanes?"</INSTRUCTOR>
+			<STUDENT>Closing down the whole interchange.</STUDENT>
+		</TELEPHONE>
+
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident. Should note interchange closed 
+							 when all lanes have been closed. HAR's #3 and #4 might 
+							 also note interchange closed.
+			</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:32:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PD CLOSING JEFFREY AND UNIV DR, SENDING NEGOTIATOR, REQ SIGALERT</DETAIL>
+				<AUDIO Length = "30" Path = "189/18905.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18905.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-24.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24. The police department is taking care of 
+					the Jeffrey Road and University Drive closures. They have 
+					sent for a negotiator to talk the man down. Issue a Sig 
+					Alert on this one, we'll be here a while.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia 10-4. PD closing Jeffrey Road and 
+						University Drive and sending negotiator to talk man 
+						down. 	Requesting Sig Alert until further notice.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">I was told that both the northbound 
+											and southbound I405 lanes are going 
+											to be closed due to a suicide 
+											attempt. What details do you have on 
+											that?
+			</INSTRUCTOR>
+			<STUDENT>Gives details of closure.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #5">Is a detour being set up?</INSTRUCTOR>
+			<STUDENT>Don't know as of yet.</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should ensure HQ Comm is notified</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should notify District Duty Officer</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:35:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TWD, LNS OPN, 14-S, 14-9, 14-14 1098</DETAIL>
+				<UNIT UnitNum="14-14" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="14-17" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="14-9" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="14-S3" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "23" Path = "187/18728.mp3" />
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>							
+				
+				<PARAMICS LocationID="187_N_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18728.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. Vehicles have been towed and lanes open. 
+					All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. Vehicles towed and lanes open.  
+						14-S3,14-9, and 14-14 are 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV TV channel 11.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">Are the lanes clear NB 405 at 55?
+			</INSTRUCTOR>
+			<STUDENT>Lanes were just cleared.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">How many were injured in that accident?
+			</INSTRUCTOR>
+			<STUDENT>There were 3 dead and 7 injured.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="87" type="remove">
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="remove">
+			<LOCATION>NB 405 @ ICD</LOCATION>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="95" type="remove">
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be alert to the situation</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:36:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TMT_RADIO>TMT units go 10-98.  Traffic is back to normal</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:36:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-13 1097, 10-23 28-19 B4 CLOSING NB LNS, 1039 DOT FOR SIGN TRUCKS</DETAIL>
+				<UNIT UnitNum="28-13" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "33" Path = "189/18906.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18906.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-13.</LINE>				
+				<LINE Role="Dispatch">28-13 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-13 10-97 northbound 405 at Sand Canyon.  Will 
+					10-23 28-19 and then proceed to close down northbound lanes. 
+					Do we have any sign trucks enroute yet to assist with the 
+					closure?</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-13 10-97 northbound 405 at Sand 
+						Canyon. 10-23 28-19 before closing northbound lanes. Checking on TMT.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>
+			</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+		<MAINTENANCE_RADIO>Get TMT rolling.</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:37:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-11 1097, CLSNG DWN SB LNS AT CULVER DR OFFR</DETAIL>
+				<UNIT UnitNum="28-11" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "21" Path = "189/18907.mp3" />
+				
+				<PARAMICS LocationID="189_S_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>	
+
+				<PARAMICS LocationID="189_S_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>		
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18907.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-11.</LINE>				
+				<LINE Role="Dispatch">28-11 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-11 10-97 405 at Culver offramp.  
+					Proceeding to close down the southbound lanes.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-11 10-97 405 at Culver offramp. 
+					Closing southbound lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="CHP Dispatch">Hello, this is CHP Dispatch.</INSTRUCTOR>
+			<STUDENT>Have sign trucks been sent to the bomb threat at the 
+						 I405 and Jeffrey Road overpass?</STUDENT>
+			<STUDENT>Responds correctly to question.</STUDENT>
+			<STUDENT>Notifies maintenace station to dispatch sign trucks.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="89" type="new"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="72" type="new"> 
+			<LOCATION>SB 55 @ Warner</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>S-405 CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:38:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-13, 28-19 SHUTTING DWN NB 405 LNS AT SAND CYN ST OFFR</DETAIL>
+				<UNIT UnitNum="28-19" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "30" Path = "189/18908.mp3" />
+				
+				<PARAMICS LocationID="189_N_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>	
+					<Lane_number>5</Lane_number>				
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_N_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>				
+				</PARAMICS>	
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18908.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-19 10-97 northbound 405 at Sand Canyon.  
+					28-13 and I are proceeding to shut down the northbound 405 lanes 
+					at the Sand Canyon offramp.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-19 10-97 northbound 405 at Sand 
+						Canyon. 28-13, 28-19 shutting down northbound 405 lanes at 
+						Sand Canyon off ramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ TV.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">I heard over the scanner that there is 
+										 a bomb threat on the 5.
+			</INSTRUCTOR>
+			<STUDENT>Correct location is I405.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">I would like to send a helicopter out 
+										 there, what are the details on the 
+										 threat?
+			</INSTRUCTOR>
+		</TELEPHONE>	
+		
+		<CMS_EVALUATION cmsID="88" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT SAND CYN AVE</CMS_LINE> 
+				<CMS_LINE>USE HWY-133</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="new"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>N-405 CLOSED AT SAND CYN AVE</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:39:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KNOW TV 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">I heard about a suicide on the 405, 
+										 what details do you have on that?
+			</INSTRUCTOR>
+			<STUDENT>Located I405 and Jeffrey overpass, man has bomb 
+						 strapped to himself, closing down I405 in both directions.
+			</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:40:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-07 1097 ASSTNG 28-11 CLSNG SB LNS AT CULVER OFFR</DETAIL>
+				<UNIT UnitNum="28-07" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "23" Path = "189/18909.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18909.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07 10-97 southbound 405 at Culver Dr. 
+					Assisting 28-11 with the closure.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-07 10-97 southbound 405 at Culver 
+						Drive. Assisting 28-11 with closure.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<TMT_RADIO>If no sign trucks have been requested yet, another 
+						 phone call needs to be made from CHP Dispatch 
+						 requesting them.
+		</TMT_RADIO>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:41:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-S4 1097 I5 JEFFREY AVE ASSIST</DETAIL>
+				<UNIT UnitNum="28-S4" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "19" Path = "189/18910.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18910.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4 10-97 I-405 at Jeffrey overpass.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-S4 10-97 I-405 at Jeffrey Road.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is the surrounding residential area 
+											around the bomb threat being evacuated?
+			</INSTRUCTOR>
+			<STUDENT>They don't know, although the correct answer will be no.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:43:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PD STTNG DETOURS, SB TRFFC OFF AT CULVER AVE, NB TRFFC OFF AT SAND CYN</DETAIL>
+				<AUDIO Length = "22" Path = "189/18911.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18911.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">	28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">	Santa Lucia 28-S4. Irvine PD is setting up 
+					detours through the city for the northbound and southbound 
+					405 traffic.
+				</LINE>				
+				<LINE Role="Dispatch">	28-S4 Santa Lucia 10-4. Police department setting up 
+						detours through the city for all traffic.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, I just saw on TV that there is bomb 
+								   on the I405 near University Drive.
+			</INSTRUCTOR>
+			<STUDENT>Confirm report.</STUDENT>
+			<INSTRUCTOR Role="Public">"I live nearby, Is that area evacuated?</INSTRUCTOR>
+			<STUDENT>No, not to the best of my knowledge.	</STUDENT>
+		</TELEPHONE>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should have posted a Sig Alert by this time</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:44:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NEGOTIATOR 1097</DETAIL>
+				<AUDIO Length = "20" Path = "189/18912.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18912.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. Negotiator is 10-97 and attempting to 
+					talk the man down.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia 28-S4 10-4. Negotiator is 10-97 and 
+						attempting to talk man down.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>	
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:45:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<TMT_RADIO>Have NB 405 TMT units go 10-98.</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:45:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NB LNS SHUT DOWN</DETAIL>
+				<AUDIO Length = "16" Path = "189/18913.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18913.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-19. The northbound lanes are shut down.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia 10-4. Northbound lanes are shut down.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:46:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP WON'T ALLOW NEGOTIATOR NEAR HIM</DETAIL>
+				<AUDIO Length = "22" Path = "189/18914.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18914.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. This is going to take a while. The man 
+					won't let the negotiator get close to him.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiations will take a while, 
+						man won't let the negotiator get close to him.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:47:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-07 SB LNS SHUT DOWN</DETAIL>
+				<AUDIO Length = "19" Path = "189/18915.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18915.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07. The southbound lanes have been shut down. 
+					Traffic is building up quickly.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes shut down.  
+						Traffic building up quickly.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:50:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP IS CALMING DOWN.  BOMB SQD 1097</DETAIL>
+				<AUDIO Length = "18" Path = "189/18916.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18916.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 28-S4. The man is calming down. The bomb squad is 10-97.</LINE>
+				<LINE Role="Dispatch">	28-S4 Santa Lucia 10-4. Man calming down. Bomb squad 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 Bomb Squad</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+
+		<TMT_RADIO>>Call saying the sign trucks are 10-97.  Queue update.</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:51:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO006</MASTER_INC_NUM>
+			<P>5</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>9-22</BEAT>
+				<ADDRESS>NB5 JNO Main Street</ADDRESS>
+				<LOC>NB5 JNO Main Street</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>9-Templeton</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>9-22</Beat>
+				<TruncLoc>NB5 JNO Main St</TruncLoc>
+				<FullLoc>NB5 JNO Main St</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="190_N_5_ML">
+				<Route>5</Route>
+				<Direction>NB</Direction>
+				<Postmile>33.2</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<CAD_INCIDENT_EVENT>
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>
+			
+		</CAD_DATA>		
+		
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT>Incident Description - This is a collision involving a tanker truck 
+		  and a car that block the #3 and 4 lanes on NB I-5 just north of 
+		  Main Street. There are 2 minor injured and 1 major injured. 
+		  Liquid is leaking out of the tanker truck which is identified as milk. 
+		  The leak is plugged and the fire department sprays the milk down the 
+		  drain. The fire department, ambulance, additional units, TMT, a big 
+		  rig tow, and a rotational tow are sent to the scene.</TEXT>
+		</GENERAL_INFO>
+
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:53:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-22 ENRT FROM 57 @ CHAPMAN</DETAIL>
+				<UNIT UnitNum="9-22" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "24" Path = "190/19001.mp3" />
+				
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19001.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-22 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 11-79 northbound 5 just north of Main Street.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 copies, enroute from 57 at Chapman Ave.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Enroute from 57 at Chapman Ave.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Should shold be verifying incident 190 on the CAD.</EXPECTED_ACTION>
+		</CAD_EVALUATION>	
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Should try to confirm the incident with a CCTV cameras.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:54:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Mayor">"Hello, this is Mayor Krom of Irvine."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Mayor">I just heard that a bomb went off on I405. Was 
+								 anyone injured or killed?
+			</INSTRUCTOR>
+			<STUDENT>Not true - no bomb was not detonated.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:56:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>		
+
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:58:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-22 1097 2 VEH TC, VEH VS TANKER TRK, BLKNG #3,4</DETAIL>
+				<DETAIL>UNID LIQUID LEAKING FROM TNKR, NEED TO CLOSE NB LANES, REQ UNITS</DETAIL>
+				<UNIT UnitNum="9-22" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "37" Path = "190/19002.mp3" />		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19002.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 1097 JNO Main St. 2 vehicle collision 
+					between tanker truck and vehicle blocking #3, 4 lanes.  
+					Unidentified liquid leaking out of the tanker. Request 
+					additional units, we're going to have to shut down the 
+					northbound lanes until we identify the susbstance.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied. 9-22 10-97.  2 vehicle 
+						collision, tanker truck and vehicle, blocking #3, 4. 
+						Unidentified liquid leaking out of tanker. Request 
+						units to shut down NB lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="93" type="new"> 
+			<LOCATION>NB-5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+
+		<MAINTENANCE_RADIO>TMT Earliest possible request for sign trucks. Send trucks if requested.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:59:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-23, 9-26 ENRT TO ASSIST 9-22</DETAIL>
+				<UNIT UnitNum="9-23" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="9-26" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "41" Path = "190/19003.mp3" />		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19003.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-23, 9-26 Santa Lucia.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-23 go ahead.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 9-26 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-23 and 9-26 Santa Lucia, 1179 northbound 5 
+						just north of Main St blocking #3,4 .  22 request assistance closing freeway.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-23 10-4. Enroute from 22 just south of 
+						Euclid Avenue.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 10-4. 9-26 enroute from 57 at 91.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 9-23, 9-26 enroute.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:00:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>1141, FD 1097, TRCK DRVR 1180 UNCONCIOUS, 2 1181S, LIQUID LEAKING INTO #2 LN. #2,3,4 BLKD AT THIS TIME</DETAIL>
+				<AUDIO Length = "35" Path = "190/19004.mp3" />		
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>					
+				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19004.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. 1141 is 1097. The 
+					driver of the truck is 1180 and unconscious. There are 2 
+					1181s in the other vehicle. The liquid is leaking out into 
+					the #2 lane. #2,3,4 lanes blocked at this time.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copies. 1141 1097. 1 
+						1180 and 2 1181's.  Liquid leaking into #2 lane.  #2,3,4 lanes are blocked.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">I just caught on the scanner that 
+											there was some type of spill on 57.
+			</INSTRUCTOR>
+			<STUDENT>Confirm incident.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #7">What kind of details do you have 
+											on the collision?
+			</INSTRUCTOR>
+			<STUDENT>Truck vs car, #3 and 4 lanes blocked, liquid spill in lanes.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:01:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NEGOTIATOR MAKING PROGRESS, SUSP MAY SURRENDER</DETAIL>
+				<AUDIO Length = "21" Path = "189/18919.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18919.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The negotiator has made some 
+					progress. Looks like the man is about to give himself up.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiator has made progress and 
+						looks like the man is about to give himself up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:01:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DONT HAVE TO SHUT THE FWY, LIQUID ID'D AS MILK.  #1 LN WILL REMAIN OPEN.</DETAIL>
+				<DETAIL>ATTEMPTING TO CONTROL THE LEAK. REQ BIG RIG AND ROT 1185</DETAIL>
+				<AUDIO Length = "27" Path = "190/19005.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19005.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-22. We don't have to shut down all the lanes, 
+					the liquid is milk. Attempting to control the leak.  Request big 
+					rig 11-85 and 11-85 rotational.</LINE>
+				<LINE Role="Dispatch">9-22 Santa Lucia copied don't have to close all lanes, 
+						liquid is milk. Attempting to control the leak. Requesting big 
+						rig and rotational 11-85's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">I just heard the northbound lanes 
+											on 57 are being closed.
+			</INSTRUCTOR>
+			<STUDENT>Confirmation.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">Why are they closing the lanes.
+			</INSTRUCTOR>
+			<STUDENT>Liquid spill, collision.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">How long are they expected to be 
+											closed.
+			</INSTRUCTOR>
+			<STUDENT>Until cleanup - no definitive answer.</STUDENT>
+		</TELEPHONE>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:02:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">"Hello, this is Fred Roppel at KNOW TV 
+										 Channel 3."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">"Has a bomb been found yet at the 405 
+										 and Jeffrey interchange?"
+			</INSTRUCTOR>
+			<STUDENT>No bomb has been found.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"When will they be done with their search?"
+			</INSTRUCTOR>
+			<STUDENT>Unknown, but about 10 minutes.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Are there any other incidents going on 
+										 right now?"
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"What are their details?"</INSTRUCTOR>
+			<STUDENT>Notify reporter of incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:03:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">How many lanes are blocked by the 
+											collision on 57 at Katella?
+			</INSTRUCTOR>
+			<STUDENT>#3 and 4 lanes blocked, milk in #2 lane.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">How many Injured are there?</INSTRUCTOR>
+			<STUDENT>3 injured.</STUDENT>
+		</TELEPHONE>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:04:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-23 1097, REQ TMT, TRAFFIC BACKING</DETAIL>
+				<UNIT UnitNum="9-23" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "21" Path = "190/19006.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19006.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-23.</LINE>				
+				<LINE Role="Dispatch">9-23 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		
+		<TMT_RADIO>
+			Time of request by CHP officers in the field for sign 
+						 trucks. Send sign trucks to scene when requested.
+						 ***CONTROL ROOM ACTION*** - Call TMC, ask for TMT
+		</TMT_RADIO>
+		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:05:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+
+		<TMT_RADIO>Queue Update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:06:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAN TRIED TO DETONATE THE DEVICE, BOMB DIDNT ACTIVATE, PD APPRHNDNG</DETAIL>
+				<AUDIO Length = "23" Path = "189/18921.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>			
+		
+		<CHP_RADIO RadioFile="18921.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The man just tried to blow himself up, 
+					but the bomb didn't go off! The police department is 
+					apprehending him now.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man attempted to blow up the 
+						interchange and is being apprehended by the PD.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:08:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP IN CUSTODY, BOMB SQD INSPECTING BOMB</DETAIL>
+				<AUDIO Length = "20" Path = "189/18922.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18922.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The man is in custody, and the bomb squad 
+					is attempting to diffuse the bomb.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man in custody, and bomb squad 
+						diffusing the bomb.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:09:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TMT_RADIO>Queue update</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:11:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PREPARING TO TRANSPORT VICTIMS, #1 LN OPN</DETAIL>
+				<AUDIO Length = "15" Path = "190/19007.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19007.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The victims are being prepared for 
+					transport.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Victims being prepared for 
+						transport.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:11:30</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #10">Hello, this is Jim Sanso at KTAK 
+											 radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #10">I just heard about a large 
+											 collision and spill on the 55.
+			</INSTRUCTOR>
+			<STUDENT>Correct location is on northbound 57.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #10">Give me the details on that.
+			</INSTRUCTOR>
+			<STUDENT>Gives details regarding incident.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:12:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should have requested sign truck(s)</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:13:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-26 1097 VICTIMS TRANSPORTED</DETAIL>
+				<UNIT UnitNum="9-26" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "15" Path = "190/19008.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19008.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-26.</LINE>				
+				<LINE Role="Dispatch">9-26 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia I'm 1097.  The victims have been transported.</LINE>				
+				<LINE Role="Dispatch">	Santa Lucia copies 9-26 10-97. Victims transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #11">Hello, this is Bill Rasmussen at KTRC radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #11">What details do you have on the collision on 57.
+			</INSTRUCTOR>
+			<STUDENT>Tanker vs. car, milk spill, 3 lanes blocked, 3 injured.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #11">Is there an alternate route 
+											established, that I could tell my listeners?
+			</INSTRUCTOR>
+			<STUDENT>Alternate route??</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:14:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CODE A, BOMB DEFUSED, LNS BEING OPENED</DETAIL>
+				<AUDIO Length = "19" Path = "189/18923.mp3" />
+				
+				<PARAMICS LocationID="189_N_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_N_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+				
+				<PARAMICS LocationID="189_S_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_S_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18923.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The bomb has been diffused. We're opening 
+					the lanes now.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. The bomb has been diffused and 
+						lanes are being opened.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should update TMT units</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:14:30</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #12">"Hello, this is Fred Masterson at KTRC radio."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #12">"My CAD is down and I was wondering 
+											 if you had any new incidents?"
+			</INSTRUCTOR>
+			<STUDENT>Yes, tanker vs. car, spill.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #12">"What do you have on that?"
+			</INSTRUCTOR>
+			<STUDENT>Gives details.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:15:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>HOLE IN TANKER PLUGGED, FD WASHING DOWN RDWY</DETAIL>
+				<AUDIO Length = "20" Path = "190/19009.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19009.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The hole in the tanker has been plugged. 
+					Not too much spilled on the roadway here.  The fire department is going 
+					to wash it down.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Hole plugged. Fire department 
+						spraying down roadway.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:16:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SB LNS OPN 28-11 28-07 1098</DETAIL>
+				<UNIT UnitNum="28-11" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="28-07" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "21" Path = "189/18924.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18924.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07. Southbound lanes are open. 28-11 and I are 10-98.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes open. 28-11, 28-07 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<CMS_EVALUATION cmsID="72" type="remove"> 
+			<LOCATION>SB 55 @ Warner</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="86" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="89" type="update"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:16:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #13">Hello, this is Chris Rasmuessan at KWIT radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #13">What's going on with the tanker 
+											spill on 5 north of Main St?
+			</INSTRUCTOR>
+			<STUDENT>(tanker plugged, injured transported, diluting milk with water, #1 lane only open.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:17:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO007</MASTER_INC_NUM>
+			<P>4</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>17-14</BEAT>
+				<ADDRESS>SB73 JNO Baker St.</ADDRESS>
+				<LOC>SB73 JNO Baker St.</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>17</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>17-14</Beat>
+				<TruncLoc>SB73 JNO Baker St.</TruncLoc>
+				<FullLoc>SB73 JNO Baker St.</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="191_S_73_ML">
+				<Route>73</Route>
+				<Direction>SB</Direction>
+				<Postmile>26.7</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>911 CELLULAR CALL, RV FIRE SB-73 AT BEAR St, UNVERIFIED</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT> This is an RV fire on the shoulder southbound 73 just north of 
+		   Bear/Baker Street. There are two injured victims who were pulled from 
+		   the RV by passers-by. The #3 is closed to fight the fire. 
+		   The fire department, paramedics, an extra unit, sign truck/s, and 
+		   ambulance are sent to the scene.
+			</TEXT>
+		</GENERAL_INFO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:17:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NB LNS OPN 28-13 28-19 1098</DETAIL>
+				<UNIT UnitNum="28-13" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="28-19" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "22" Path = "189/18925.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18925.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>
+				<LINE Role="Dispatch">28-19 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 28-19. Northbound lanes are open. 28-13 and I are 10-98.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia copies northbound lanes open. 28-13, 28-19 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="88" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="update"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>N-405 AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:18:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-24, 28-S4 1098 PD OPNNG OVRPASS</DETAIL>
+				<UNIT UnitNum="28-24" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="28-S4" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "24" Path = "189/18926.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18926.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. 28-24 and I are 10-98. The police 
+					department is opening the overpass.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. 28-S4, 28-24 10-98. Police 
+						department opening overpass.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:19:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>17-14 ENRT FROM 405 AT EUCLID</DETAIL>
+				<UNIT UnitNum="17-14" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "24" Path = "191/19101.mp3" />
+				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19101.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-14 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia, RV fire southbound 73 just north of Baker Street. </LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-4. Enroute from 405 @ Euclid.</LINE>				
+				<LINE Role="Dispatch">10-4 Santa Lucia copies, 17-14 enroute from 405 @ Euclid.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be verifying incident 191 on the CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Attempt to verify incident on ATMS</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:20:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 ROT 1097</DETAIL>
+				<TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/>
+				<AUDIO Length = "16" Path = "190/19010.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19010.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The 11-85 rotation 10-97.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copies 11-85 rotation 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:21:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>BIG RIG 1185 1097, ONCE FD IS DONE, WILL START CLEANUP</DETAIL>
+				<TOW Company="Imperial" ConfNum="(949)555-1128" PubNum="(949)555-1520" Beat=""/>
+				<AUDIO Length = "22" Path = "190/19011.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19011.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-22 big rig 11-85 10-97. Once the 
+				  fire department is done, we will start clearing vehicles.</LINE>				
+				<LINE Role="Dispatch">	9-22 Santa Lucia 10-4. Big rig 11-85 10-97. Start 
+						cleanup when fire department done.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">Hello, this is Dakota Crew at KCOW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">Do you have an alternate route I 
+										    could tell my listeners about for collision on I-5?
+			</INSTRUCTOR>
+			<STUDENT>Should have one established.</STUDENT>
+		</TELEPHONE>		
+
+		<TMT_RADIO>
+			Sign trucks should be 1097.
+		</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:22:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">Do you have any update info on the 
+											collision on 57.
+			</INSTRUCTOR>
+			<STUDENT>Clearing the milk, about to move vehicles, injured transported, etc.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:23:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY Channel 11.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">Is the bomb squad done with their 
+										 search yet at the 405 and Jeffrey 
+										 interchange?
+			</INSTRUCTOR>
+			<STUDENT>Yes</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">When will the lanes be open?</INSTRUCTOR>
+			<STUDENT>They were already opened about 10 minutes ago.</STUDENT>
+		</TELEPHONE>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should issue a Sig Alert</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+		<MAINTENANCE_RADIO>TMT The traffic is near normal. I'm (we're) 1098.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:23:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD DONE, OPENING #2, STARTING CLEANUP</DETAIL>
+				<AUDIO Length = "19" Path = "190/19012.mp3" />
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>		
+			
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19012.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. Fire department is done.
+					Opening the #2 lane and starting cleanup.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Fire department is done, opening 
+						#2 lane, and starting cleanup.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:24:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV ON FIRE ON RS, 2 1181S, PARAMEDICS 1097, REQ UNIT TO ASSIST</DETAIL>
+				<UNIT UnitNum="17-14" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "42" Path = "191/19102.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19102.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-97 RV fire southbound 73 just north of
+					Baker Street.  RV on the right hand shoulder. Citizens 
+					pulled 2 11-81's from vehicle, paramedics 10-97.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 17-14 10-97 RV fire southbound 73 
+						just north of Baker Street. RV on right hand shoulder. 2 
+						11-81's pulled from RV, paramedics 10-97.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-4. Send a unit to assist.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copies.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT S-73</CMS_LINE> 
+				<CMS_LINE>AT BAKER ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:25:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-16 ENRT FROM S-405 @ EUCLID TO ASSIST 17-14</DETAIL>
+				<UNIT UnitNum="17-16" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "20" Path = "191/19103.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		
+		<CHP_RADIO RadioFile="19103.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-16 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-16 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia, 17-14 requesting assistance RV fire 
+						southbound 73 just north of Baker Street.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-1610-4. Enroute from S-405 @ Euclid.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 3.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">I just heard about a RV fire over the scanner.</INSTRUCTOR>
+			<STUDENT>Confirm RV fire.</STUDENT>								 
+			<INSTRUCTOR Role="TV Reporter #2">Where was that located, I'd like to 
+										 send a camera out there?</INSTRUCTOR>
+			<STUDENT>Southbound 73 just North of Baker Street.</STUDENT>												 
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:26:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD 1097, CLOSING RT LN, REQ TMT, TRAFFIC ADVISORY</DETAIL>
+				<AUDIO Length = "24" Path = "191/19104.mp3" />
+				
+				<PARAMICS LocationID="191_S_73_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>		
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19104.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14, fire department 10-97.   Closing the right lane 
+					for the fire engines. Request sign truck, traffic advisory.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copies fire departement 10-97. Closing 
+						the right lane. Request sign truck, traffic advisory.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT S-73</CMS_LINE> 
+				<CMS_LINE>AT BAKER ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should issue traffic advisory</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should send TMT units</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+		<TMT_RADIO>
+		Time of request by CHP officers in the field for sign trucks. Send sign 
+		trucks to scene when requested.
+		</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:27:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>#2 LN OPN, FULL CLNUP IN 20</DETAIL>
+				<AUDIO Length = "18" Path = "190/19013.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19013.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The #2 lane is open. Full cleanup in 20 minutes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied #2 open, full cleanup in 20.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				 
+		
+		<TMT_RADIO>Queue update. Possibly reposition.</TMT_RADIO>	
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:28:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">I heard that there was an RV fire on 
+										  southbound 73.
+			</INSTRUCTOR>
+			<STUDENT>Confirm RV fire</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">What details do you have on it, are 
+										  any lanes blocked?
+			</INSTRUCTOR>
+			<STUDENT>RV fire on shoulder, two injured pulled from vehicle, 
+						 fire on shoulder, no lanes blocked.
+			</STUDENT>
+		</TELEPHONE>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:28:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">Our computers are down, what 
+										  incidents do you have going on?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">Give me all the details on those.</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incident details.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:29:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-14 1097</DETAIL>
+				<UNIT UnitNum="17-16" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "24" Path = "191/19105.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19105.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-16</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-16 10-97 RV fire southbound 73 just north of
+					Baker Street.</LINE>
+				<LINE Role="Dispatch">10-4 Santa Lucia copied 17-16, 10-97 RV fire 
+						southbound 73 just north of Baker Street.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:32:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH READY TO BE TOWED, TRCK AND TNKR BEING UPRIGHTED</DETAIL>
+				<AUDIO Length = "19" Path = "190/19014.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19014.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The car is ready to be towed. The truck 
+					and tanker are being uprighted.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Car ready for tow, truck and 
+						tanker being uprighted.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:33:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VICTIMS TRANSPORTED, PASSERS BY RESCUED VICTIMS</DETAIL>
+				<AUDIO Length = "24" Path = "191/19106.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19106.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The two victims transported. Passers-by 
+					saw the RV on fire and assisted in pulling the two victims 
+					out of the vehicle before it was completely engulfed.</LINE>
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. Victims transported. Passers-by 
+						pulled victims out of RV.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:34:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #4">Have any of the lanes been open on 5 
+										 north of Main St.</INSTRUCTOR>
+			<STUDENT>#2 lane open.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">When is there a full opening?</INSTRUCTOR>
+			<STUDENT>Around 15 to 20 minutes.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:34:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">How long is it going to take to clear 
+										  up the RV fire on southbound 73?
+			</INSTRUCTOR>
+			<STUDENT>No estimated time as of yet.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:35:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FIRE IS OUT, FD INVESTIGATING CAUSE OF FIRE</DETAIL>
+				<AUDIO Length = "19" Path = "191/19107.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19107.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The fire is out, and the fire department 
+					is investigating the cause of the fire.</LINE>
+				<LINE Role="Dispatch">	17-14 Santa Lucia copied, fire out and fire department 
+						investigating cause of fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:37:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TOWED, TNKR UPRGHT, FULL OPENING IN 10</DETAIL>
+				<AUDIO Length = "20" Path = "190/19015.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19015.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The car has been towed. The tanker truck 
+					is upright. Full opening in 10 minutes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied car towed. Tanker truck upright. 
+						Full opening in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:38:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is there an estimated time for lane 
+										 opening for the collision on I-5?
+			</INSTRUCTOR>
+			<STUDENT>10 minutes.</STUDENT>
+		</TELEPHONE>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:39:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ FLAT BED 1185, FD 98 IN 15</DETAIL>
+				<AUDIO Length = "22" Path = "191/19108.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19108.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 request flat bed 11-85 for the RV. Fire 
+					department done within 15 minutes.</LINE>
+				<LINE Role="Dispatch">	17-14 Santa Lucia 10-4. Request flat bed 11-85, fire 
+						 department 98 in 15.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:40:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CMS_EVALUATION cmsID="86" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="89" type="remove"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="88" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="remove"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+		</CMS_EVALUATION>			
+
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:41:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 1185 ENRT, ETA 10</DETAIL>
+				<AUDIO Length = "18" Path = "191/19109.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19109.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-14 Santa Lucia information.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia. 11-85 enroute, ETA 10.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 copied 1 1-85 enroute with ETA of 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">I was just told about a RV fire on 
+										  73 , what details do you have on that?
+			</INSTRUCTOR>
+			<STUDENT>Gives incident details.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:42:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TANKER READY FOR TOW, FINISHING CLEANUP</DETAIL>
+				<AUDIO Length = "18" Path = "190/19016.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19016.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The tanker truck is ready to be towed. 
+					Finishing cleanup.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck ready to be towed, 
+						finishing cleanup.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:43:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:46:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TANKER TOWED, RDWY CLR, OPENING LANES</DETAIL>
+				<AUDIO Length = "20" Path = "190/19017.mp3" />
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CLEARED</Status>				
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19017.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The tanker truck has been towed, roadway 
+					is clear. We're opening all lanes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck towed, roadway 
+						clear. Opening lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>					
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE>
+				<CMS_LINE>N-5 AT MAIN ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:46:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notifies reporter of current incidents.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:48:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 1097, INVESTIGATION NEARLY COMPLETE</DETAIL>
+				<TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/>
+				<AUDIO Length = "21" Path = "191/19111.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19111.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 11-85 10-97. Fire department is nearly 
+					completed with their investigation.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. 11-85 10-97, investigation 
+						nearly completed.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:49:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>LNS OPN, 9-22, 9-23, 9-26 10-98</DETAIL>
+				<UNIT UnitNum="9-22" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="9-23" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="9-26" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "21" Path = "190/19018.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19018.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The lanes are open, all units 10-98.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied lanes open, 9-22, 9-23, 9-26 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:51:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD INVESTIGATION COMPLETE, SPRAYING RS, FIRE CAUSED BY KITCHEN FIRE</DETAIL>
+				<AUDIO Length = "20" Path = "191/19112.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19112.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The fire department investigation 
+					complete.  Fire caused by a kitchen fire.</LINE>
+				<LINE Role="Dispatch">17-14 Santa Lucia copied fire department is 98.
+				  Fire caused by kitchen fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">What is the traffic like on 73 around the RV fire?</INSTRUCTOR>
+			<STUDENT>Notifies reporter with current queue from ATMS.  One lane is closed.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">When will the incident be cleared?</INSTRUCTOR>
+			<STUDENT>Inknown, a good answer around 15 minutes.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:53:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>		
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:53:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should have been cleared</EXPECTED_ACTION>
+		</ATMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:54:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV READY FOR 1185, LN OPN IN 10</DETAIL>
+				<AUDIO Length = "21" Path = "191/19113.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		<CHP_RADIO RadioFile="19113.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. RV ready for 11-85. The lane will be open in 10.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. RV ready for 11-85, lane open in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, is Helen there?</INSTRUCTOR>
+			<STUDENT>Wrong number.</STUDENT>
+			<INSTRUCTOR Role="Public">Sorry. </INSTRUCTOR>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:55:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>		
+		
+		<TMT_RADIO>Queue update 10-98</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:58:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV TOWED, LANES OPEN IN 5</DETAIL>
+				<AUDIO Length = "17" Path = "191/19114.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19114.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. RV towed, lane open in 5.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copied, RV towed, lane open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:59:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #10">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #10">Has the RV been cleaned up yet at the fire on 73?</INSTRUCTOR>
+			<STUDENT>The RV was just towed, the lane will be open in 5 minutes.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #10">Do you have any other incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notifies reporter of current incidents.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:00:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>		
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:01:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-14, 17-16 1098. LN OPN</DETAIL>
+				<UNIT UnitNum="17-14" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="17-16" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "19" Path = "191/19115.mp3" />
+				
+				<PARAMICS LocationID="191_S_73_ML">
+					<Status>CLEARED</Status>			
+				</PARAMICS>					
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19115.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-16.</LINE>
+				<LINE Role="Dispatch">17-16 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 17-16. #1 Lane is open. All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia 10-4. #1 lane open.  
+						17-14, 17-16 are 1098.</LINE>	
+			</DIALOG>			
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="86" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:00:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>		
+		
+		<CMS_EVALUATION cmsID="93" type="remove"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="remove"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+		</CMS_EVALUATION>		
+		
+	</SCRIPT_EVENT>
+	
+</TMC_SCRIPT>
+
Index: trunk/webapps/EInotebook/notebook_standalone.js
===================================================================
--- trunk/webapps/EInotebook/notebook_standalone.js	(revision 359)
+++ trunk/webapps/EInotebook/notebook_standalone.js	(revision 359)
@@ -0,0 +1,194 @@
+/*
+function loadXMLDoc()
+{
+  if (window.XMLHttpRequest)
+  {
+    xmlhttp = new XMLHttpRequest();
+  }
+  else
+  {
+    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
+  }
+
+  xmlhttp.onreadystatechange=function()
+  {
+    if (xmlhttp.readyState==4 && xmlhttp.status==200)
+    {
+      document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
+    }
+  }
+  
+  xmlhttp.open("GET", "ajax_info.txt", true);
+  xmlhttp.send("");
+}
+*/
+
+/**
+ * Sets the selected tab to the summary tab and loads the summary page.
+ */
+
+function setupNotebook()
+{
+   changeTab('summaryTab');
+   showContent('summaryPageContent')
+   loadSummary();
+   setCookie("time", "0");
+   setCookie("scriptScrollY", 0);
+   setCookie("summaryScrollY", 0);
+}
+
+/**
+ * Runs the script.
+ */
+function run()
+{
+	run.initialDelay = 1000;
+	
+	setTimeout("run.run()", run.initialDelay);
+	
+	run.run = function()
+	{
+//	    document.getElementById("simulationStatus").innerHTML = "RUNNING";                 
+		setTime();
+		updateStatus();
+	};
+}
+
+/**
+ * Displays fading text alerts in the status box (left-top corner).
+ */
+function updateStatus()
+{
+	// IF last event if it has not been set before THEN
+    if (typeof updateStatus.lastEvent == 'undefined')
+    {
+    	updateStatus.lastEvent = null;
+    }
+   
+    var latestEvent = events.getLastExecutedEvent(readCookie("time"));
+    
+    
+    // IF a new event executed THEN
+    if (updateStatus.lastEvent != latestEvent)
+    {
+		// IF the new event has evaluations THEN
+    	if (latestEvent.evaluations.evaluations.length == 0)
+    	{
+//    		document.getElementById('updateStatus').innerHTML = "New Event";
+    	}
+    	else
+    	{
+//    		document.getElementById('updateStatus').innerHTML = "New Evaluation";
+    	}
+    	
+		// fades the text
+		updateStatus.fade = function fade()
+		{
+			// IF the fade color is not black yet THEN
+    		if (fade.hex < 255)
+    		{
+    			fade.hex += 5;
+//    			document.getElementById('updateStatus').style.color = 
+    				"rgb(" + fade.hex + ", " + fade.hex + ", " + fade.hex + ")";  
+    			setTimeout("updateStatus.fade()", 100);	
+    		}
+    		else
+    		{
+//    			document.getElementById('updateStatus').style.color = "white";
+    		}
+
+		};
+        
+		updateStatus.fade.hex = 0;
+		updateStatus.fade();
+    	updateStatus.lastEvent = latestEvent;
+    }
+    
+    setTimeout("updateStatus();", 1000);
+}
+
+/**
+ * Sets 'simulationTime' to the current simulation time in seconds.
+ * This method runs itself every second to keep the time current.
+ * Sets the cookie 'time' to the value of 'simulationTime'.
+ * @return
+ */
+function setTime()
+{
+	// increment time by one second (or initialize it if it has not been set before)
+	setTime.time = (typeof setTime.time == 'undefined') ? 0 : ++setTime.time;
+
+    setCookie("time", "" + setTime.time);
+   
+	// display the latest simulation time
+	document.getElementById("simulationTime").innerHTML = 
+		Time.formatTime(setTime.time);
+	
+    setTimeout("setTime()", 1000);
+}
+
+/**
+ * Selects a new tab to be viewed. 
+ * @param id The id for the tab to be selected
+ */
+function changeTab(id)
+{
+    /* Set all tabs to not being active */
+    document.getElementById("summaryTab").className = "notActive";
+    document.getElementById("scriptTab").className = "notActive";
+    document.getElementById("CADTab").className = "notActive";
+    document.getElementById("mapsTab").className = "notActive";
+
+    /* Set the selected tab to being active */
+    document.getElementById(id).className = "activeTab";
+}
+
+/**
+ * Loads the script tab page;
+ */
+function loadScript()
+{
+}
+
+/**
+ * Loads the summary tab page;
+ */
+function loadSummary()
+{	   
+}
+
+/**
+ * @param id The id of the frame element.
+ * @return The document of the frame element.
+ */
+function getDocumentFromFrame(id)
+{
+    var frame=document.getElementById(id);
+    var doc=(frame.contentWindow || frame.contentDocument);
+    
+    if (doc.document)doc=doc.document;
+    
+    return doc;
+}
+
+/**
+ * Hides a tab page
+ * @param d The div of the page to hide.
+ */
+function hideContent(d) 
+{
+    document.getElementById(d).style.display = "none";
+}
+
+/**
+ * Switches the tab page.
+ * @param d The div of the page to show.
+ */
+function showContent(d) 
+{
+    hideContent('summaryPageContent');
+    hideContent('scriptPageContent');
+    hideContent('cadPageContent');
+    hideContent('mapsPageContent');    
+    document.getElementById(d).style.display = "block"; 
+}
Index: trunk/webapps/EInotebook/script/script.html
===================================================================
--- trunk/webapps/EInotebook/script/script.html	(revision 359)
+++ trunk/webapps/EInotebook/script/script.html	(revision 359)
@@ -0,0 +1,33 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
+  "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <link href="script.css" rel="stylesheet" type="text/css">
+    <script type="text/javascript" src="../scripts/Time.js"></script> 
+    <script type="text/javascript" src="script.js"></script> 
+    <script type="text/javascript" src="../scripts/cookies.js"></script>
+    <title>Script</title>
+  </head>
+  <body>
+    Filter:
+    <select id='domain'>
+      <option value=''>All</option>
+      <option value='chpradio'>CHP RADIO</option>
+      <option value='chpcad'>CHP CAD</option>
+      <option value='telephone'>TELEPHONE CONVERSATION</option>
+    </select>
+<!--
+    <button onclick="collapse();">Collapse</button>
+    <button onclick="expand();">Expand</button>
+-->
+   
+    <button class="jumpToCurrentEvent" 
+            onclick="jumpToLastExecutedEvent()">Jump to Current Event</button>
+     
+
+
+    <iframe id='view' src='scripts.html' frameborder='0' scrolling='yes'
+            width='100%'></iframe>
+  </body>
+</html>
Index: trunk/webapps/EInotebook/script/scripts.html
===================================================================
--- trunk/webapps/EInotebook/script/scripts.html	(revision 359)
+++ trunk/webapps/EInotebook/script/scripts.html	(revision 359)
@@ -0,0 +1,13 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <link href="scripts.css" rel="stylesheet" type="text/css">
+    <script type="text/javascript" src="scripts.js"></script> 
+    <script type="text/javascript" src="../scripts/cookies.js"></script> 
+  <title>Insert title here</title>
+</head>
+  <body onscroll="setCookie('scriptScrollY', window.pageYOffset);">
+
+  </body>
+</html>
Index: trunk/webapps/EInotebook/script/script.css
===================================================================
--- trunk/webapps/EInotebook/script/script.css	(revision 359)
+++ trunk/webapps/EInotebook/script/script.css	(revision 359)
@@ -0,0 +1,33 @@
+@CHARSET "UTF-8";
+
+body {
+	font-family: Verdana, sans-serif;	
+}
+
+/*=============================== Button Panel ======================*/
+
+button.expandButton {
+	width:100px;
+}
+
+button.collapseButton {
+	width:100px;
+}
+
+input.timeText {
+	padding-left:0px; 
+	padding-right:0px; 
+	margin-left:0px; 
+	margin-right:0px;  
+	width:1.5em;
+}
+
+td.buttonPanel {
+	padding:1px;
+}
+
+table.buttonTable
+{
+	margin:0px;
+	padding:0px;
+}
Index: trunk/webapps/EInotebook/script/scripts.css
===================================================================
--- trunk/webapps/EInotebook/script/scripts.css	(revision 359)
+++ trunk/webapps/EInotebook/script/scripts.css	(revision 359)
@@ -0,0 +1,186 @@
+@CHARSET "UTF-8";
+
+body {
+	font-family: Verdana, sans-serif;	
+}
+
+/*=========================== Event =======================*/
+
+button.eventExpandButton {
+	width:2em;	
+	text-align:center;
+	font-size:12pt;
+}
+
+table.event {
+	padding:0px; 
+	border:0px solid black;
+	width:100%;
+	border-collapse:collapse;
+	margin-bottom:30px;
+}
+
+table.eventHeader {
+	width:100%;
+}
+
+td.eventHeader {
+	margin-bottom:0px; 
+	border:2px solid gray;	
+}
+
+td.eventData {
+	padding-left:2em;
+}
+
+tr.eventHeader {
+	font-size:medium; 
+	font-weight:bold;
+}
+
+td.eventTitle {
+	text-align:left;
+	width:40%
+}
+
+td.eventExpandOption {
+	text-align:left;
+	width:10%
+}
+
+td.eventNumber {
+	text-align:left;
+	width:20%
+}
+
+td.eventTime {
+	text-align:left;
+	width:30%
+}
+
+/*=============================== Evaluation ======================*/
+
+table.evaluation {
+	border:0px solid black;
+	margin-bottom:0px;
+	width:100%;
+}
+
+table.evaluationInner2
+{
+	width:100%;
+}
+
+th.evaluationType {
+	text-align:left;
+	font-size:11pt;
+}
+
+td.evaluationLabel {
+	padding-left:2em;
+	font-style:italic;
+	font-size:11pt;
+	vertical-align:top;
+}
+
+td.evaluationCriteria {
+	text-align:left;
+	font-size:11pt;
+}
+
+td.evaluationResponse {
+	padding-left:1em;
+	width:100%;
+	
+}
+
+input.evaluationResponseText {
+	width:100%;	
+}
+
+table.evaluationScale {
+	
+}
+
+td.evaluationScale {
+	font-size:12px;
+}
+
+td.evaluationRadioButtonSmallScale {
+	padding-right:1em; 
+	padding-left:1em;
+	text-align:center;
+}
+	
+/*=============================== Evaluations ======================*/
+
+button.evaluationsExpandButton {
+	width:27px;	
+	text-align:center;
+	font-size:10pt;
+}
+
+table.evaluationsInner {
+	border:0px solid black;
+	width:100%;	
+}
+
+table.evaluationsOuter {
+	border:0px solid black;
+	width:100%;	
+}
+
+td.evaluationsExpandOption {
+	font-size:12pt;
+}
+
+td.evaluations {
+	padding-left:2em;
+}
+
+/*=============================== Properties ======================*/
+
+button.propertiesExpandButton {
+	width:2em;	
+	text-align:center;
+	font-size:10pt;
+}
+
+td.propertiesExpandOption {
+	font-size:12pt;
+}
+
+td.properties {
+	padding-left:2em;
+}
+
+/*=============================== Property ======================*/
+
+table.property {
+	border:0px solid black;
+	margin-bottom:-5px;
+}
+
+th.propertyType {
+	font-size:11pt;
+	text-align:left;
+}
+
+td.propertyContent {
+	padding-left:2em;
+	font-style:italic;
+	font-size:11pt;
+}
+
+td.propertyLabel {
+	font-size:11pt;
+	padding-left:2em; 
+	padding-right:1em;
+	font-style:italic;
+	vertical-align:top;
+}
+
+td.propertyValue {
+	padding-left:1em;
+	font-size:11pt;
+}
Index: trunk/webapps/EInotebook/script/script.js
===================================================================
--- trunk/webapps/EInotebook/script/script.js	(revision 359)
+++ trunk/webapps/EInotebook/script/script.js	(revision 359)
@@ -0,0 +1,206 @@
+/**
+ * Holds references to the events and incidents.
+ */
+function Script()
+{
+	Script.events = null;
+	Script.incidents = null;
+}
+
+/**
+ * Scrolls to the last event executed based on time.
+ */
+function jumpToLastExecutedEvent()
+{	
+	var lastEvent = Script.events.getLastExecutedEvent(readCookie("time"));
+	
+	// IF a current event exists THEN
+	if (lastEvent != null)
+	{
+		lastEvent.focus();
+	}
+	else
+	{
+		alert("No events have been executed yet.");
+	}
+}
+
+/**
+ * Finds the Event that was last executed by based on time and highlights it.
+ * Removes highlighting from old events.
+ * @return
+ */
+function highlightLatestEvent() 
+{
+	var currentEvent = Script.events.getLastExecutedEvent(readCookie("time"));
+
+	// IF the old event is has not been set THEN
+	if (typeof highlightLatestEvent.oldEvent == 'undefined')
+	{
+		highlightLatestEvent.oldEvent = new Object();
+		highlightLatestEvent.oldEvent.id = Event.invalidID;
+	}
+	
+	// IF a current event exists THEN
+	if (currentEvent != null)
+	{
+		// IF there is a new current event THEN
+		if (highlightLatestEvent.oldEvent.id != currentEvent.id)
+		{
+			currentEvent.highlight();
+			
+			// IF there was previously a current event THEN
+			if (highlightLatestEvent.oldEvent.id != Event.invalidID)
+			{
+				highlightLatestEvent.oldEvent.unhighlight();
+			}
+			
+			highlightLatestEvent.oldEvent = currentEvent;			
+		}
+	}
+
+    // Set timer to do this again in one second
+	setTimeout("highlightLatestEvent()", 1000);
+}
+
+/**
+ * Loads the the script tab for the given document.
+ * @pre script.html must be completely loaded
+ * @param aDocument
+ */
+function loadScript(theEvents, theIncidents)
+{
+	Script.incidents = theIncidents;
+	Script.events = theEvents;
+	Script.events.win = document.getElementById("view").contentWindow;
+	Script.events.doc = getDocumentFromFrame('view');
+
+	var html = "";
+	
+	// FOR each Event
+	for (var i = 0; i < Script.events.length; i++)
+	{
+		// add the Event's html
+		html += Script.events[i].html();
+        //console.log(Script.events[i].html());
+	}
+	
+	// display events in iframe
+	getDocumentFromFrame('view').body.innerHTML = html;	
+	
+	// resize iframe to appropriate height
+	resizeIframe();
+	window.onresize = resizeIframe;
+    // This line is causing an error
+	//window.frames['view'].setEvents(Script.events);
+	
+	Script.events.win.scrollTo(0, readCookie('scriptScrollY'));
+	
+	highlightLatestEvent();
+
+}
+
+/**
+ * @param id The id of the frame element.
+ * @return The document of the frame element.
+ */
+function getDocumentFromFrame(id)
+{
+    var frame=document.getElementById(id);
+    var doc=(frame.contentWindow || frame.contentDocument);
+    
+    if (doc.document)doc=doc.document;
+    
+    return doc;
+}
+
+/**
+ * Finds the height of an element relative to the BODY tag.
+ * @param elem The element to find the height of.
+ * @return The y-coordinate of the given element relative to the BODY tag.
+ */
+function pageY(elem) 
+{
+    return elem.offsetParent ? (elem.offsetTop + pageY(elem.offsetParent)) : elem.offsetTop;
+}
+
+/**
+ * Resizes the view for the events so that the view's height is at the bottom of its
+ * container.
+ */
+function resizeIframe() 
+{
+    var height = document.documentElement.clientHeight;
+    height -= pageY(document.getElementById('view'));
+    height = (height < 0) ? 0 : height - 10;
+    document.getElementById('view').style.height = height + 'px';
+}
+
+/**
+ * Highlights the text of an input text element after a small delay.
+ * This method was made because using the code "onFocus='this.focus()'" did not work.
+ * @pre textField must have an 'id' attribute
+ * @param textField An input text element.
+ */
+function highlightTextField(textField)
+{
+	setTimeout("document.getElementById('" + textField.id + "').select();", 100);
+}
+
+/**
+ * Formats a two digit textbox. If the text box contains only one digit, then a zero
+ * is appended to the front.
+ * @param textField An input text element.
+ */
+function formatTimeTextfield(textField)
+{
+	// IF the text field contains 1 digits THEN
+	if (textField.value.length == 1)
+	{
+		textField.value = "0".concat(textField.value);
+	}
+}
+
+/**
+ * Scrolls to the event latest executed event if the current simulation time was given
+ * by text fields 'timeTextSeconds', 'timeTextMinutes', 'timeTextHours'.
+ */
+function jumpToTime()
+{
+	var seconds = parseInt(document.getElementById('timeTextSeconds').value, 10);
+	var minutes = parseInt(document.getElementById('timeTextMinutes').value, 10);
+	var hours = parseInt(document.getElementById('timeTextHours').value, 10);
+
+	var lastEvent = Script.events.getLastExecutedEvent(new Time(hours, minutes, seconds).getSeconds());
+
+	// IF an event was executed THEN
+	if (lastEvent != null)
+	{
+		lastEvent.focus();
+	}
+}
+
+/**
+ * Collapses the elements based on the value of the dropdownbox with id 'domain'.
+ */
+function collapse()
+{
+	var selection = document.getElementById('domain');
+	var selectedIndex = selection.selectedIndex;
+	var selectedValue = selection.options[selectedIndex].value;
+	
+	eval("Script.events.collapseAll" + selectedValue + "();");
+}
+
+/**
+ * Expands the elements based on the value of the dropdownbox with id 'domain'.
+ */
+function expand()
+{
+	var selection = document.getElementById('domain');
+	var selectedIndex = selection.selectedIndex;
+	var selectedValue = selection.options[selectedIndex].value;
+	
+	eval("Script.events.expandAll" + selectedValue + "();");
+}
+
Index: trunk/webapps/EInotebook/script/scripts.js
===================================================================
--- trunk/webapps/EInotebook/script/scripts.js	(revision 359)
+++ trunk/webapps/EInotebook/script/scripts.js	(revision 359)
@@ -0,0 +1,12 @@
+/************* WARNING: THIS IS A GLOBAL VARIABLE. ********************/
+// Reference to the 'events' array in Events.js
+var events;
+
+/**
+ * Sets the events.
+ * @param theEvents Reference to the 'events' array in Events.js.
+ */
+function setEvents(theEvents)
+{
+	events = theEvents;
+}
Index: trunk/webapps/EInotebook/ipadapp.css
===================================================================
--- trunk/webapps/EInotebook/ipadapp.css	(revision 359)
+++ trunk/webapps/EInotebook/ipadapp.css	(revision 359)
@@ -0,0 +1,8 @@
+/* Turns off callouts, tap highlighting, text size adjusting, and copy
+ * & paste selections */
+* {
+  -webkit-touch-callout: none;
+  -webkit-tap-highlight-color: rgba(0,0,0,0);
+  -webkit-text-size-adjust: none;
+  -webkit-user-select: none;
+}
Index: trunk/webapps/EInotebook/notebook.css
===================================================================
--- trunk/webapps/EInotebook/notebook.css	(revision 361)
+++ trunk/webapps/EInotebook/notebook.css	(revision 361)
@@ -0,0 +1,173 @@
+/*************************
+ *    Simulation Page    *
+ *************************/
+html {
+	padding:0px;	
+}
+body
+{
+    margin:0px;
+   font-family: Verdana, sans-serif;
+   background-color:#FFFFFF;
+   border:0px solid black;
+}
+
+table.notebook 
+{
+	width:100%;
+	height:100%;
+	padding:0px;
+	margin:0px;
+}
+
+/*************************
+ *   Simulation Header   *
+ *************************/
+table.header
+{
+	width:100%; 
+	padding:0px;
+	margin:0px;
+	height: 10px;
+	font-size: 2em;
+}
+
+/*************************
+ *    Update Status Box     *
+ *************************/
+td.updateStatusBox
+{
+	width: 30%;
+}
+
+td.updateStatus
+{
+   font-weight: bold;
+   color: white;
+	font-size: 1.2em;
+}
+
+/*************************
+ *      Status Box       *
+ *************************/
+td.statusBox
+{
+	width: 40%;
+	align: center;
+}
+
+td.statusText
+{
+	font-weight: bold;
+	text-align: center;
+	font-size: 1.2em;
+}
+
+td.simulationStatus
+{
+   font-weight: bold;
+   text-align: center;
+   font-size: 1.2em;
+}
+
+/*************************
+ *       Time Box        *
+ *************************/
+.simulationTime
+{
+   text-align: right;
+   font-weight: bold;
+   font-size: xx-large; /*1.2em; */
+   color: purple;
+    /* width: 30%;   */
+    /* float:right; */
+}
+
+/*************************
+ *       Tab Menu        *
+ *************************/
+
+td.tabMenu
+{
+    padding-bottom:0px;
+    border-bottom: 1px solid #66CC66;
+}
+
+div.tabMenuWrapper {
+	display:block; 
+	width:70%; /*750px; */
+	margin-left:auto;
+	margin-right:auto;
+}
+
+ul.tabMenu 
+{ 
+   float:left;
+   text-align: center;
+   margin: 1em 0 0em 0;
+   font-weight: bold;
+   font-size:11pt;
+   list-style-type: none;
+   padding: 0px 0px 0px 0px; 
+   cursor: pointer;
+}
+
+ul.tabMenu li 
+{
+   float:left;
+   line-height: 200%;
+   padding: 3px 5px; 
+   margin-right: 5px;
+   margin-left: 5px;
+   text-decoration: none;
+   border: 1px solid #66CC66;
+   border-bottom: none;
+   font-size: 1.07em; 
+}
+
+ul.tabMenu li.notActive
+{
+   background-color: #CCFFCC;
+   color: #666666;
+}
+
+ul.tabMenu a:hover 
+{
+   background: #FFFFFF; /* set desired hover color */
+}
+
+/* SELECTED TAB */
+li.activeTab
+{ 
+   border-bottom: 1px solid #FFFFFF;
+   background-color: #FFFFFF;
+}
+ 
+/* SELECTED TAB LINK */
+li.activeTab
+{
+   background-color: #FFFFFF;
+   color: #000000;
+   position: relative;
+   top: 1px;
+   padding-top: 4px;
+}
+
+ 
+/*************************
+ *       Tab Page        *
+ *************************/
+ 
+td.tabPageContent
+{
+   border: 1px solid #66CC66; 
+   border-top: 0px; 
+   height:90%;
+   padding:0px;
+   margin:0px;
+}
+
+#summaryPageContent
+{
+   background-color: lightyellow;
+}
Index: trunk/webapps/EInotebook/documentation/Overview
===================================================================
--- trunk/webapps/EInotebook/documentation/Overview	(revision 359)
+++ trunk/webapps/EInotebook/documentation/Overview	(revision 359)
@@ -0,0 +1,78 @@
+Cookies.js
+  * Provides support for reading, creating, changing, and deleting cookies.
+
+Evaluation.js
+  * Provides a class that represents a single evaluation.
+  * Provides functionality for generating the HTML for itself.
+  * Provides functionality for remembering user input.
+
+Evaluations.js
+  * Provides a class that represents the collection of evaluations belonging to a single
+    event.
+  * Provides functionality for generating the HTML for itself.
+  * Provides functionality for expanding/collapsing its evaluations.
+
+Event.js
+  * Provides a class that represents an event containing a properties and evaluations.
+  * Provides functionality for generating the HTML for itself.
+  * Provides functionality for expanding/collapsing its evaluations. 
+
+Events.js
+  * Provides a class that is a collection of events.
+  * Provides functionality for adding and retreiving events.
+  * Provides functionality for collapsing/expanding events, properties and evalautions.
+  * Provides functionality for retreiving properties and evaluations.
+  * No two events can have the same time.
+  * Stores the document and window references for the window which the events and their
+    components are displayed on.
+    * These references are used in Event, Evaluations, Evaluation, Properties, and Property
+      to get html elements by ID in order to perform features that expanding/collapsing an
+      event.
+    * These references should be set before the 'html' method of Event, Evaluations,
+      Evaluation, Properties, or Property has been called.
+
+PopulateEvents.js
+  * This script inputs the data for the events.
+  
+PopulateIncidents.js
+  * This script inputs the data for the incidents.
+
+Property.js
+  * Provides a class that represents an occurrence in an event. For example, a message to 
+    Paramics.
+  * Provides functionality for generating the HTML for itself.
+  
+Properties.js
+  * Provides a class that represents a collection the properties belongs to a single event.
+  * Provides functionality for generating the HTML for itself.
+  * Provides functionality for expanding/collapsing its properties.
+
+Script.html
+  * Provides html content for the buttons for manipulating and navigating the events.
+  * Provides the frame in which the events are displayed.
+
+Script.js
+  * Provides functionality for highlighting the current event and displaying the events
+  * Provides functionality for sizing the frame that displays the events.
+  * Provides functionality for jumping to the current event and highlighting the current 
+    event.
+    
+Scripts.html
+  * Provides the html container that events are displayed in.
+
+Scripts.js
+  * Holds a reference for the events. 
+    * When the event html is displayed on Scripts.html, the 'events' reference is used in
+      html element's javascript attributes.
+
+Summary.html
+  * Provides the html document base for displaying the incidents overview.
+  
+Summary.js
+  * Provides functionality for displaying the html of the incidents overview on summary.html.
+ 
+Time.js
+  * Provides a class that stores and formats time.
+
+
+  
Index: trunk/webapps/EInotebook/documentation/History
===================================================================
--- trunk/webapps/EInotebook/documentation/History	(revision 359)
+++ trunk/webapps/EInotebook/documentation/History	(revision 359)
@@ -0,0 +1,13 @@
+This prototype was apparently created by Matt Cechini.
+
+John Dalbey found it in the git repository in a barely working state in Mar 2019.
+Perhaps HTML and browser standards had changed since it was originally
+created but a lot of major functionality was broken.
+
+Importantly, the LoadEvents.js module was created to read the actual
+Incidents Script (XML) and parse it into the internal classes used by the application.
+
+A page for CAD Terminal was replaced by Current Event.  
+Confusing map buttons were replaced by radio buttons.
+
+
Index: trunk/webapps/EInotebook/index.html
===================================================================
--- trunk/webapps/EInotebook/index.html	(revision 364)
+++ trunk/webapps/EInotebook/index.html	(revision 364)
@@ -0,0 +1,122 @@
+<html>
+  <head>
+    <title>Electronic Instructor Notebook v0.3</title>
+    <meta name="apple-mobile-web-app-capable" content="yes">
+    <meta name="viewport" content="width=device-width; initial-scale=1.0; user-scalable=0;">
+    <link rel="apple-touch-icon" href="icon.png">
+    <link rel="apple-touch-startup-image" href="startup.png">
+    <link rel="stylesheet" type="text/css" href="notebook.css"> 
+    <link rel="stylesheet" type="text/css" href="ipadapp.css">
+    <script type="text/javascript" src="../js/common.js"></script> 
+    <script type="text/javascript" src="scripts/cookies.js"></script>
+    <script type="text/javascript" src="scripts/Events.js"></script>
+    <script type="text/javascript" src="scripts/Evaluation.js"></script>
+    <script type="text/javascript" src="scripts/Event.js"></script>
+    <script type="text/javascript" src="scripts/Property.js"></script>
+    <script type="text/javascript" src="scripts/Properties.js"></script>
+    <script type="text/javascript" src="scripts/Evaluations.js"></script>
+    <script type="text/javascript" src="scripts/Time.js"></script>
+    <script type="text/javascript" src="scripts/Incident.js"></script>
+    <script type="text/javascript" src="scripts/Incidents.js"></script>
+    <script type="text/javascript" src="scripts/LoadEvents.js"></script> 
+    <!--script type="text/javascript" src="scripts/PopulateIncidents.js"></script-->
+    <!--script type="text/javascript" src="scripts/PopulateEvents.js"></script-->
+    <script type="text/javascript" src="summary/summary.js"></script> 
+    <script type="text/javascript" src="notebook.js"></script> 
+  </head>
+  <body onLoad="setupNotebook(); run();">
+    
+    <table class="notebook">
+     <!-- The header which contains the number of evaluations, simulation status, 
+               and time 
+      <tr style="height: 20px">
+        <td>
+          <table class="header">     
+            <tr>
+            
+              <td class="updateStatusBox">
+                <table>
+                  <tr>
+                    <td class="updateStatus" id="updateStatus">New Event</td>
+                  </tr>
+                </table>
+              </td>
+        
+              <td class="statusBox">
+                <center><table>
+                  <tr>
+                    <td class="simulationStatus" id="simulationStatus">NOT STARTED</td>
+                  </tr>
+                </table></center>
+              </td> 
+
+              <td class="simulationTime" id="simulationTime">
+                0:00:00
+              </td>
+
+            </tr>
+          </table>
+        </td>
+      </tr>
+-->
+      <tr style="height: 120px">
+        <td colspan='3' class="tabMenu">
+        
+        <div class='tabMenuWrapper'>
+        
+          <!-- The menu for selecting which tabbed page to view -->
+          <ul class="tabMenu">
+            <li class="activeTab" id="summaryTab"  
+            	onClick="changeTab(this.id); showContent('summaryPageContent')">
+              Incident Summary
+            </li>
+            <li class="notActive" id="scriptTab" 
+            	onClick="changeTab(this.id); showContent('scriptPageContent')">
+              Simulation Script
+            </li>
+            <li class="notActive" id="CADTab" 
+            	onClick="changeTab(this.id); showContent('cadPageContent')">
+              Current Event
+            </li>
+            <li class="notActive" id="mapsTab" 
+            	onClick="changeTab(this.id); showContent('mapsPageContent')">
+             Maps
+            </li>
+          </ul><br>
+              <div class="simulationTime" id="simulationTime">0:00:00</div>
+        </div> 
+        </td>
+      </tr>
+      
+      <!-- The tabbed page currently displayed  -->
+      <tr>
+            <td class='tabPageContent' id='summaryPageContent' style="display:inline">
+            <iframe id='summaryTabPage' src='summary/summary.html' frameborder='0' scrolling='yes'
+		    height='100%' width='100%'
+		    onLoad='incidents.doc = getDocumentFromFrame(&quot;summaryTabPage&quot;);
+		    window.frames[0].loadSummary(incidents);'></iframe>
+		  </td>
+          <td class='tabPageContent' id='scriptPageContent' style="display:none;">
+            <iframe id='tabPage' src='script/script.html' frameborder='0' 
+            scrolling='yes' height='100%' width='100%'
+            onLoad='window.frames[1].loadScript(events, incidents);'
+            >
+		    </iframe>
+		  </td>
+		  <td class='tabPageContent' id='cadPageContent' style="display:none;">
+		    <iframe src='cad/index.html' frameborder='0' 
+             scrolling='yes' height='100%' width='100%' 
+            onLoad='window.frames[2].loadScript(events, incidents);'>
+		    </iframe>
+		  </td>
+          <td class='tabPageContent' id='mapsPageContent' style="display:none;">
+            <iframe src='maps/index.html' frameborder='0' 
+                             scrolling='no' height='100%' width='100%' >
+		    </iframe>
+          </td>
+	    </td>
+      </tr>
+    </table>
+    
+  </body>
+</html>
Index: trunk/webapps/EInotebook/.settings/.jsdtscope
===================================================================
--- trunk/webapps/EInotebook/.settings/.jsdtscope	(revision 359)
+++ trunk/webapps/EInotebook/.settings/.jsdtscope	(revision 359)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path=""/>
+	<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
+</classpath>
Index: trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.name
===================================================================
--- trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.name	(revision 359)
+++ trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.name	(revision 359)
@@ -0,0 +1,1 @@
+Window
Index: trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.container
===================================================================
--- trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.container	(revision 359)
+++ trunk/webapps/EInotebook/.settings/org.eclipse.wst.jsdt.ui.superType.container	(revision 359)
@@ -0,0 +1,1 @@
+org.eclipse.wst.jsdt.launching.baseBrowserLibrary
Index: trunk/webapps/EInotebook/incident_script.xml
===================================================================
--- trunk/webapps/EInotebook/incident_script.xml	(revision 367)
+++ trunk/webapps/EInotebook/incident_script.xml	(revision 367)
@@ -0,0 +1,4848 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE TMC_SCRIPT SYSTEM "script.dtd">
+
+<TMC_SCRIPT title="Full Simulation">
+
+	<SCRIPT_DATA>
+		<NEW_UNIT UnitNum = "14-14">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 at Dyer Rd</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011234</BADGE_NUM>
+			<OFFICER>John Carrie</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>9796</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-14</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-17">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 MacArthur Boulevard</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011304</BADGE_NUM>
+			<OFFICER>James Hill</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>15053</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-17</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-9">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 Edinger Avenue</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>012454</BADGE_NUM>
+			<OFFICER>Bobby Hey</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>6394</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-9</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-9">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I405 IRVINE CTR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>011596</BADGE_NUM>
+			<OFFICER>Harry Jackson</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>10606</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-9</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "14-S3">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>73 Bear Street</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>011250</BADGE_NUM>
+			<OFFICER>James Tuchman</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>19005</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>14-S3</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-15">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>55 4th street</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>013282</BADGE_NUM>
+			<OFFICER>Sam Spellicy</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>23786</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-15</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-19">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 Culver</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>012495</BADGE_NUM>
+			<OFFICER>Michael Bay</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>15760</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-19</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-24">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-405 IRVINE CNTR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>011194</BADGE_NUM>
+			<OFFICER>Greg Johnson</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>16987</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-24</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-19">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-5 / Sand Canyon</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013181</BADGE_NUM>
+			<OFFICER>Andre Muller</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>18685</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-19</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-13">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I-5 / 133</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>015283</BADGE_NUM>
+			<OFFICER>Craig O'Neil</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>14069</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-13</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-11">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>SR55 AT DYER</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>012555</BADGE_NUM>
+			<OFFICER>Alex Carlton</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>15860</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-11</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-07">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>I405 / CULVER OFFR</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013606</BADGE_NUM>
+			<OFFICER>Gary Schmidt</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>14999</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-7</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "28-S4">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC></CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>28-San Luis Obispo</AREA>
+			<BADGE_NUM>013565</BADGE_NUM>
+			<OFFICER>Daniel Pierce</OFFICER>
+			<OFFICE>San Luis Obispo Area</OFFICE>
+			<TIMER>10606</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>28-S4</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-22">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>57 / Chapman</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>012345</BADGE_NUM>
+			<OFFICER>Victor Percival</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>24203</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-22</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-23">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>22 / Euclid Avenue</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton</AREA>
+			<BADGE_NUM>011860</BADGE_NUM>
+			<OFFICER>Michael Rocker</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>20184</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-23</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "9-26">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>57 / 91</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>9-Templeton Area</AREA>
+			<BADGE_NUM>011480</BADGE_NUM>
+			<OFFICER>Patrick King</OFFICER>
+			<OFFICE>Templeton Area</OFFICE>
+			<TIMER>14023</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>9-26</ALIAS>
+		</NEW_UNIT>
+		<!-- 17 isn't a valid CHP office? -->
+		<NEW_UNIT UnitNum = "17-14">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>405 / Euclid</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>017935</BADGE_NUM>
+			<OFFICER>William Bond</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>29877</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>17-14</ALIAS>
+		</NEW_UNIT>
+		<NEW_UNIT UnitNum = "17-16">
+			<STATUS>10-8</STATUS>
+			<CURR_LOC>S-405 / Euclid</CURR_LOC>
+			<DESTINATION></DESTINATION>
+			<AREA>14-Santa Maria</AREA>
+			<BADGE_NUM>015839</BADGE_NUM>
+			<OFFICER>Matthew McCarmick</OFFICER>
+			<OFFICE>Santa Maria Area</OFFICE>
+			<TIMER>23998</TIMER>
+			<AGY>CHP</AGY>
+			<ALIAS>17-16</ALIAS>
+		</NEW_UNIT>
+	</SCRIPT_DATA>
+
+<!--
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:00</TIME_INDEX>
+		<INCIDENT LogNum="100">Media Log</INCIDENT>		
+		
+		<CAD_DATA>
+			<HEADER_INFO>
+				<Type>Media</Type>
+				<Beat>
+				</Beat>
+				<TruncLoc>
+				</TruncLoc>
+				<FullLoc>
+				</FullLoc>
+			</HEADER_INFO>			
+			
+			<CAD_INCIDENT_EVENT>	
+			</CAD_INCIDENT_EVENT>		
+			
+		</CAD_DATA>				
+		
+	</SCRIPT_EVENT>	
+-->
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:00:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO003</MASTER_INC_NUM>
+			<P>1</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>14-14</BEAT>
+				<ADDRESS>SB55 AT 405 </ADDRESS>
+				<LOC>SB55 AT 405</LOC>
+				<CITY>Costa Mesa</CITY>
+				<AREA>14-Santa Maria</AREA>
+				<FIRE>Costa Mesa</FIRE>
+				<LAW>Costa Mesa</LAW>
+				<EMS>Costa Mesa</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>14-14</Beat>
+				<TruncLoc>SB55 AT 405</TruncLoc>
+				<FullLoc>SB55 AT 405</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="187_N_405_ML">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>8.4</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="187_N_405_HV">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>8.4</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>	
+			
+			<LOCATION_INFO ID="187_S_55_ML">
+				<Route>55</Route>
+				<Direction>SB</Direction>
+				<Postmile>6.5</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+		</CAD_DATA>	
+		
+		<GENERAL_INFO> 			
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a stalled DOT truck on SB 55 overpass at 405. The truck is 
+			  hit by a vehicle, the vehicle is vaulted over the railing, and a 6 
+			  vehicle collision occurs below in the NB 405 lanes. The #2 and 3 lanes 
+			  are blocked on SB 55 and the #1, 2, and 3 lanes are blocked on NB 405. 
+			  The driver of the truck is uninjured, although there are 4 fatals, 2 
+			  major injured, and 4 minor injured in the collision below. MAIT is 
+			  called to the scene to investigate the collision and a Sig Alert is 
+			  declared. 
+			</TEXT>
+		</GENERAL_INFO>	
+		
+		<TELEPHONE>	
+			<INSTRUCTOR Role="DOT Driver">Places a call to CHP Dispatch to notify of stalled DOT vehicle.</INSTRUCTOR>
+		</TELEPHONE>				
+		
+		<MAINTENANCE_RADIO>Dispatch, this is xxx. I'm on south 55 at the 405.  
+		 		My truck is out of service here, stuck in the lane.  I need CHP assistance ASAP!" 
+		</MAINTENANCE_RADIO>	
+		
+	</SCRIPT_EVENT>	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:01:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>	
+				<DETAIL>STALLED DOT SB SR-55 AT I-405</DETAIL>	
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:02:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+		
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<UNIT UnitNum="14-14" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "25" Path = "187/18701.mp3" />	
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		        
+		
+		<CHP_RADIO RadioFile="18701.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-14 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia 11-25 stalled DOT truck southbound 55 overpass at 405.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14 10-4. Enroute from 55 at Dyer Rd.</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia copies enroute from 55 at Dyer Rd.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be verifying incident 187 on CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator viewing cameras in incident area.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:03:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>CELLULAR 911 RPT DOT HT, 2ND VEH OVER THE SIDE, UNVERIFIED</DETAIL>
+				<AUDIO Length = "26" Path = "187/18702.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18702.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-14 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia. Cellular 911 caller reports stalled vehicle on the 55/405 overpass was hit and a vehicle was pushed over the side.  Can you verify?</LINE>				
+				<LINE Role="Field">Santa Lucia, negative, I'm one minute away.</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia 10-4. One minute away.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:03:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:04:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:05:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DOT HIT BY VEH, VEH OVER SIDE.</DETAIL>
+				<DETAIL>2ND VEH LANDED NB 405 BELOW, LG COLLISION OCCUR. REQ 2 1141 CODE 2 UNITS ASSIST</DETAIL>
+				<UNIT UnitNum="14-14" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "42" Path = "187/18703.mp3" />
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>					
+				
+				<PARAMICS LocationID="187_N_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+				</PARAMICS>					
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>			
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18703.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14 10-97 11-83 11-25.  It appears the DOT truck was hit by a vehicle and over the side landed in the northbound 405 lanes below.  A major collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia 10-4 10-97 11-83 11-25.  DOT truck was hit by vehicle and the vehicle over the side landed in the northbound 405 lanes below.  A large collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="new"> 
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AHEAD</CMS_LINE>
+				<CMS_LINE>AT 405 OVERPASS</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be responding to incident 187</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should be monitoring ATMS operator</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:05:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:06:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 14-9 ENRT ASSIST 1183 1125</DETAIL>
+				<UNIT UnitNum="14-17" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="14-9" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "40" Path = "187/18704.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18704.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">14-17, 14-9 Santa Lucia</LINE>
+				<LINE Role="Field_1">Santa Lucia 14-17 go ahead.</LINE>	
+				<LINE Role="Field_2">Santa Lucia 14-9 go ahead.</LINE>
+				<LINE Role="Dispatch">	14-17, 14-9 assist 14-14 11-83 11-25 northbound 405 at the 55 interchange.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 14-17 copies.  Enroute from 405 just south of Macarthur Boulevard.</LINE>
+				<LINE Role="Field_2">14-9 10-4, enroute from 55 at Edinger Avenue.</LINE>
+				<LINE Role="Dispatch">Santa Lucia copies 14-17 enroute from 405 just south of Macarthur and 14-9 enroute from 55 at Edinger.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:06:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>		
+				<DETAIL>DUPLICATE CALL</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:07:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DOT DRIVER UNINJURED, #2,3 LNS BLCKD SB 55.</DETAIL>
+				<DETAIL>14-14 MVNG TO 405 ASSESS DMG</DETAIL>
+				<AUDIO Length = "29" Path = "187/18705.mp3" />
+			</CAD_INCIDENT_EVENT>
+			
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18705.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">	Santa Lucia, the driver of the DOT truck is uninjured but the #2 and #3 lanes are now blocked on southbound 55.  I'm moving down to the 405 lanes to assess the damage.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa-Lucia 10-4. Driver of the DOT truck is uninjured.  The #2 and #3 lanes are now blocked on southbound 55. Moving down to the 405 lanes to assess the damage.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="update"> 
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AHEAD</CMS_LINE>
+				<CMS_LINE>AT 405 OVERPASS</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should be updating the incident board.</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:08:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY TV channel 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">I was told that a car flew off an 
+										 overpass causing a large pile-up on the freeway below.
+			</INSTRUCTOR>
+			<STUDENT>Incident should be confirmed</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">I want to confirm the location so we 
+										 can send a helicopter to check it out.
+			</INSTRUCTOR>
+			<STUDENT>55/405 interchange</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:08:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO004</MASTER_INC_NUM>
+			<P>2</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>9-9</BEAT>
+				<ADDRESS>NB5 JNO Lake Forest Dr</ADDRESS>
+				<LOC>NB5 JNO Lake Forest Dr</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>9-Templeton</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>9-9</Beat>
+				<TruncLoc>NB5 JNO Lake Forest Dr</TruncLoc>
+				<FullLoc>NB5 JNO Lake Forest Dr</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="188_N_5_ML">
+				<Route>5</Route>
+				<Direction>NB</Direction>
+				<Postmile>20</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>	
+			
+			<CAD_INCIDENT_EVENT>			
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>
+					<Lane_number>5</Lane_number>
+				</PARAMICS>					
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+		
+		<GENERAL_INFO>
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a two vehicle collision between a tomato truck and a car. The 
+	  	  truck spills tomatoes across lanes #3,4,5 right lanes plus 
+	  	  shoulder of NB 5 just north of Lake Forest Drive. There is one 11-44 
+	  	  and 2 major injured. Ambulance, fire, paramedics, additional units, 
+	  	  Maintenance/coroner, and TMT are requested on this incident.
+			</TEXT>
+		</GENERAL_INFO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:10:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-9 ENRT FRM I405 @ IRVINE CTR</DETAIL>
+				<UNIT UnitNum="9-9" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "25" Path = "188/18801.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18801.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 11-79 northbound 5 just north of Lake Forest Drive.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied enroute from 405 at Irvine Center.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Enroute from 405 at Irvine Center.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be monitoring the CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator should try to confirm the incident with a CCTV camera.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should verify location and respond to incident 188</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:11:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">Hello, this is Dakota Crew at 
+											KCOW radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">I just heard over the scanner that 
+											you have a major accident on I405 at 55.
+			</INSTRUCTOR>
+			<STUDENT>Should confirm incident.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #1">Can you give me a run down on what 
+										 	happened?
+			</INSTRUCTOR>
+			<STUDENT>A collision occurred on NB 55 at 405.  A vehicle went over rail 
+					     onto NB 405 causing a 6 car collision.
+			</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:12:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-14 1097, MULTIPLE 1144 NB 405 AT 55 OVERPASS, 6 VEH TC</DETAIL>
+				<DETAIL>BLOCKING 3 INSIDE LNS NB 405. DRVR AND PSSNGR IN VEH 1144, 2 OTHER FATALS, MULT INJR, REQ CRNR AND SIGALERT</DETAIL>
+				<AUDIO Length = "46" Path = "187/18706.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18706.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-14 10-97. Multiple 1144 northbound 405 at 55 
+					overpass. Six vehicle collision blocking the three inside 
+					lanes. The driver and passenger of the car that went over 
+					the railing are both 11-44. I've got two other fatals and 
+					multiple injured down here. Request coroner and issue Sig 
+					Alert.
+				</LINE>
+				
+				<LINE Role="Dispatch">	14-14 Santa Lucia 10-4 10-97 11-80 11-25 northbound 405 
+						at 55 overpass. Multiple 1144. Six vehicle collision blocking the three 
+						inside lanes. The driver and passenger of the car that 
+						went over the railing are 11-44, 2 other 11-44.  
+						Multiple injuries, request coroner and send Sig Alert.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>					
+		
+		<CMS_EVALUATION cmsID="87" type="new"> 
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 LEFT LNS BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="new"> 
+			<LOCATION>NB 405 @ ICD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 LEFT LNS BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page sig alert information</EXPECTED_ACTION>	
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:12:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 CRNR</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should insert info for enroute coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:13:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 1097, PARAMEDICS 1097. 1184 SB 55 FOR DOT 1125</DETAIL>
+				<UNIT UnitNum="14-17" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "46" Path = "187/18707.mp3" />	
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18707.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-17 10-97. 1144 northbound 405 at 55. 	
+			Paramedics are 10-97. We've gotta secure the scene southbound 55 for the DOT 
+			hazard. Has Caltrans been notified that their truck has been 
+			involved in a collision?</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4 10-97 11-44 northbound 405 
+						at 55. Paramedics 10-97. Will be doing 11-84 on southbound 55 for 
+						DOT collision. Caltrans will be notified.			
+				</LINE>	
+				<LINE Role="Field">Santa Lucia 14-17 10-4</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:14:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9, FD, PARAMEDICS 1097.  TC SEMI W/TOMATOES AND VEH ON NB-5 #3,4,5 LNS</DETAIL>
+				<DETAIL>TRCK ON FIRE, REQ CT CLNUP, UNITS 1184</DETAIL>
+				<UNIT UnitNum="9-9" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "39" Path = "188/18802.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18802.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9</LINE>
+				<LINE Role="Dispatch">9-9 go ahead Santa Lucia</LINE>
+				<LINE Role="Field">Santa Lucia 9-9 10-97 11-79. Fire department and 
+					parmedics 10-97.  Collision between semi truck carrying 
+					tomatoes and vehicle in 2 right lanes.  Truck on fire and 
+					tomatoes spilled over three right lanes. Request Caltrans to 
+					clean up the tomatoes and units for 11-84.</LINE>
+				<LINE Role="Dispatch">Santa Lucia 10-4, 9-9 10-97 11-79. Fire and 
+						paramedics 10-97. Collision involves tomato truck and 
+						car in two right lanes. Truck on fire and tomatoes over 
+						three right lanes.  Request Caltrans.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<CMS_EVALUATION cmsID="31" type="new"> 
+			<LOCATION>??</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>UR TIRES R RND</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should have ensured that a maintenance team was dispatched</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:14:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ MAIT, REQ 14-S UNIT, REQ TMT</DETAIL>
+				<UNIT UnitNum="14-S3" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "34" Path = "187/18708.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18708.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 14-14</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia, request MAIT, they'll have to investigate this 
+					one.  Also, request 14-S unit and TMT.</LINE>				
+				<LINE Role="Dispatch">	14-14 Santa Lucia copied request MAIT, 14-S unit, and TMT.</LINE>				
+				<LINE Role="Dispatch">	14-S3 unit copy.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-S3, 10-4 enroute from 73 at Bear Street.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia copies enroute from 73 at Bear Street.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be alert and advising radio on TMT.</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should notify the TMT leader of incident 187</EXPECTED_ACTION>
+		</RADIO_EVALUATION>	
+		
+		<TMT_RADIO>TMT leader espond to student action.  Dispatch appropriate units???</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:15:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">I called earlier about the accident 
+											on I405. Have any more details come 
+											in on that incident?
+			</INSTRUCTOR>
+			<STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #2">Do you have an alternate route I can recommend?
+			</INSTRUCTOR>
+			<STUDENT>Yes (TBD)</STUDENT>	
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:16:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<MAINTENANCE_RADIO>If Maintenance unit was sent out, radio the supervisor 
+			with a 10-97.  Say that you're going to await MAIT investigation and 
+			transport other Maintenance worker.			
+		</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:17:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-9 1097, ASSIST 1184</DETAIL>
+				<UNIT UnitNum="14-9" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "22" Path = "187/18709.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18709.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-9.</LINE>				
+				<LINE Role="Dispatch">14-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-9 10-97. Will assist 14-14 with 11-84.</LINE>				
+				<LINE Role="Dispatch">14-9 Santa Lucia 10-4 10-97 northbound 405 at 55. 
+						Will assist 14-14 with 11-84.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:18:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TRAFFIC BACKING SB 55 REQ TMT MEDIUM DUTY 1185</DETAIL>
+				<AUDIO Length = "24" Path = "187/18710.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18710.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>			
+				<LINE Role="Field">Santa Lucia 14-17. Traffic is backing up on southbound 55. 
+					Request TMT and medium duty 11-85 for the DOT truck.	</LINE>			
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. Traffic backing up on southbound 
+						55.  Requesting TMT and medium duty 11-85.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:19:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>		
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>4 1144'S, 2 1180'S, 4 1181'S</DETAIL>
+				<AUDIO Length = "20" Path = "187/18711.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18711.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-14</LINE>		
+				<LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 14-14. 4 11-44's, 2 11-80's, and 4 11-81's.</LINE>		
+				<LINE Role="Dispatch">14-14 Santa Lucia copies 4 11-44's,2 11-80's, and 4 11-81's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">Have any more details come in on the pileup at 55/405?</INSTRUCTOR>
+			<STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured, ??? mile backup</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">Do you have an alternate route I can recommend?</INSTRUCTOR>
+			<STUDENT>(pause for answer: Yes)</STUDENT>
+			<STUDENT>3 car collision, vehicles blocking #2,3,4 lanes.  Moderate injuries.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="95" type="new"> 
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:20:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-15,9-19 ENRT FOR 1184</DETAIL>
+				<UNIT UnitNum="9-15" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="9-19" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "38" Path = "188/18803.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18803.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-15, 9-19 Santa Lucia</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-15 go ahead.</LINE>				
+				<LINE Role="Field_2">Santa Lucia go ahead to 9-19.</LINE>				
+				<LINE Role="Dispatch">9-15 and 9-19 Santa Lucia 11-84 for 11-79 
+						northbound 5 just north of Lake Forest Drive.</LINE>				
+				<LINE Role="Field_1">	Santa Lucia 9-15 10-4. Enroute from 55 at 4th Street.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 9-19 copied enroute from 405 at Culver.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-15 enroute from 55 at 4th and 9-19 
+		  				enroute from 405 at Culver.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #3">Hello, this is Bill Bradley at KCTR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">I heard here was a large collision on the 5.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">What details do you have on that?</INSTRUCTOR>
+			<STUDENT>Semi and 2 cars, tomatoes over three right lanes.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #3">Were there any injured?</INSTRUCTOR>
+			<STUDENT>Don't know yet.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:21:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 SABLAN TOWING</DETAIL>
+				<TOW Company="SABLAN TOWING" ConfNum="(949)555-2468" PubNum="(949)555-8899" Beat=""/>
+				<AUDIO Length = "18" Path = "187/18712.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18712.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	14-17 Santa Lucia information.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-17 go ahead.</LINE>				
+				<LINE Role="Dispatch">	14-17 Santa Lucia 10-39 Sablan's Towing.</LINE>				
+				<LINE Role="Field">	14-17 copied 10-39 Sablan's Towing.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:22:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-S3 1097 NB 405 @ 55</DETAIL>
+				<DETAIL>MAIT ETA 15</DETAIL>
+				<UNIT UnitNum="14-S3" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "26" Path = "187/18713.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>			
+
+		<CHP_RADIO RadioFile="18713.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 10-97 northbound 405 at 55.  Do you 
+					have an ETA for MAIT?</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 10-97 northbound 405 
+						at 55. MAIT ETA 15 minutes.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 copies MAIT ETA 15.</LINE>
+			</DIALOG>		
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:24:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1141 1097, TRCK STLL FIRE, 2 1180 IN VEH, UNK IN TRCK</DETAIL>
+				<AUDIO Length = "32" Path = "188/18804.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18804.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. 11-41 10-97. Truck still engulfed in 
+					flames.  Two 11-80's in the vehicle. Unknown passengers in 
+					the truck. Request TMT, traffic backing up quickly.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-41 10-97. Truck still engulfed.  
+						Two 11-80's in vehicle and unknown passengers in truck.  
+						Request TMT, traffic backing up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #4">How many vehicles were involved in the 
+								 			collision on northbound 5?
+			</INSTRUCTOR>
+			<STUDENT>1 semi, two cars.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">How many lanes were blocked?</INSTRUCTOR>
+			<STUDENT>Three right lanes blocked.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">Do you have an alternate route established?</INSTRUCTOR>
+			<STUDENT>What's it to you!?</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be assisting radio operator</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should dispatch TMT</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:25:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQUEST 1185 BIG RIG AND 1185 ROT, ISSUE SIG ALERT</DETAIL>
+				<AUDIO Length = "23" Path = "188/18805.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>			
+		
+
+		<CHP_RADIO RadioFile="18805.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. Roll 11-85 big rig and a rotational 
+					11-85.  Issue a Sig Alert, this could take a while.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copied roll 11-85 big rig and 11-85 
+						rotational. Issue a Sig Alert until further notice.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">What details do you have on the 
+											collision Northbound 5 at Lake Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Semi vs. two cars, tomatoes over lanes 3,4,5, two major 
+						 injured, unknown passenger in truc.</STUDENT>
+		</TELEPHONE>		
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be ensuring a Sig Alert is issued</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+		<MAINTENANCE_RADIO>
+			If Maintenance has not been requested by this time, 
+			have someone call as CHP Dispatch and make a request for them.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:27:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR 1097, INJURED TRANSPORTED</DETAIL>
+				<AUDIO Length = "17" Path = "187/18714.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18714.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>
+				<LINE Role="Dispatch">14-S3 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia, coroner 10-97. The injured have been transported.</LINE>
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 coroner 10-97. Injured transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:30:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-15 1097, ADVS PD TO DIRECT TRAFFIC OFF AT LAKE FOREST </DETAIL>
+				<UNIT UnitNum="9-15" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "26" Path = "188/18806.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18806.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-15.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-15 10-97 11-80. Advise local PD that 
+					we are going to direct traffic off at Lake Forest off ramp and 
+					are closing the Lake Forest on ramp.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-15 10-97 11-80. Advise PD 
+						we're directing traffic off Lake Forest offramp and closing 
+						Lake Forest onramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<STUDENT>Student places call to Police Department</STUDENT>
+			<STUDENT>Student correctly notifies PD of incident location and details</STUDENT>
+		</TELEPHONE>
+
+		<TMT_RADIO>
+			If no sign truck/s have been requested yet, a phone call needs to be 
+			made from CHP Dispatch requesting them.			
+		</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:30:30</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is there an alternate route 
+											established for the northbound 5 
+											lanes due to the collision at Lake Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Lake Forest East to Muirlands or Lake Forest West to Irvine Ctr.  
+				Re-enter I5 at numerous locations</STUDENT>
+		</TELEPHONE>		  
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:31:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 COLLEGE OAK BIG RIG, CYCLE TOW FOR ROT</DETAIL>
+				<TOW Company="College Oak" ConfNum="(949)555-2990" PubNum="(949)555-5758" Beat=""/>
+				<TOW Company="Cycle" ConfNum="(949)555-2281" PubNum="(949)555-7162" Beat=""/>
+				<AUDIO Length = "20" Path = "188/18807.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18807.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia information</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-39 College Oak for big rig 11-85 and 
+						Cycle Tow for 11-85 rotational.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied 10-39 College Oak and Cycle Tow.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>	  
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:32:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-19 1097 ASSISTNG 1184</DETAIL>
+				<UNIT UnitNum="9-19" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "20" Path = "188/18808.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18808.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-19</LINE>
+				<LINE Role="Dispatch">9-19 go ahead to Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-19 10-97 11-80. Assisting with 11-84.</LINE>				
+				<LINE Role="Dispatch">9-19 Santa Lucia copied 10-97 11-80. Assisting with 11-84.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:35:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>	
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT 1097 STARTING INVESTIGATION SB SR55</DETAIL>
+				<AUDIO Length = "22" Path = "187/18715.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="187/18715.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3, MAIT is 10-97. They're starting their 
+					investigation on the 55 overpass.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 MAIT 10-97. Starting 
+						investigation on 55 overpass.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 MAIT</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:36:00</TIME_INDEX> 
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="CHP Dispatch">Hello, CHP Dispatch.  Do you have traffic control enroute for NB 405 at 55</INSTRUCTOR>
+			<STUDENT>Do you mean sign truck crews or cones on the road?</STUDENT>
+			<INSTRUCTOR Role="CHP Dispatch">Cones</INSTRUCTOR>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should interact with the dispatch operator regarding cone crews</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:37:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MED DUTY 1185 1097, AWAIT FINISH MAIT BEFORE TOW VEH</DETAIL>
+				<AUDIO Length = "25" Path = "187/18716.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18716.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, medium duty 11-85 10-97. Will await the finish of 
+					MAIT investigation before towing vehicle.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4 medium rig 11-85 10-97. Will await 
+						the finish of MAIT investigation before towing vehicle.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:38:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 PD, SENDING 2 UNITS ASST 1184</DETAIL>
+				<AUDIO Length = "17" Path = "188/18809.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18809.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-9 Santa Lucia information.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-39 police department. Sending two 
+						units to assist with 11-84.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9 copied</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">"Hello, this is Terry Webb at KTSV TV 11."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">My CAD is down, do you have any 
+										 incidents going on right now?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of all current incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">Give me the details on those.</INSTRUCTOR> 
+			<STUDENT>Notify reporter of all current incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:40:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR CONFIRMED FOUR FATAL, PREP TO TRANSPORT</DETAIL>
+				<AUDIO Length = "19" Path = "187/18717.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18717.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. The coroner has confirmed four fatals and 
+					is preparing them to be transported.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied coroner confirmed four fatals 
+						and preparing for transport</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:42:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1180S TRANSPORTED</DETAIL>
+				<AUDIO Length = "14" Path = "188/18810.mp3" />
+			</CAD_INCIDENT_EVENT>
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18810.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. 11-80's transported.</LINE>
+				<LINE Role="Dispatch">9-9 Santa Lucia copied 11-80's transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:43:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9 FIRE OUT</DETAIL>
+				<AUDIO Length = "14" Path = "188/18811.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18811.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9. The fire is out.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Fire is out.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should note that the fire has been put out</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>should be active and responding to situation</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:44:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>LAKE FOREST ONRAMP CLOSED, DIRECTING TRAFFIC OFF LAKE FOREST OFFRAMP</DETAIL>
+				<AUDIO Length = "23" Path = "188/18812.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18812.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-15.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-15. Lake Forest onramp closed. Directing 405 traffic 
+					off Lake Forest offramp.</LINE>				
+				<LINE Role="Dispatch">9-15 Santa Lucia 10-4. Lake Forest onramp closed.  
+					Directing 405 traffic off at Lake Forest offramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">Do you have an alternate established 
+											for the norhtbound 5 lanes near Lake 
+											Forest Drive?
+			</INSTRUCTOR>
+			<STUDENT>Same as before..</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #7">When are the lanes supposed to be open?	</INSTRUCTOR>
+			<STUDENT>No specific time, approx. 1 hour.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:47:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT FINISHED W/ INVESTIGATION SB SR-55 AT I-405, PREP DOT TRCK FOR TOW</DETAIL>
+				<AUDIO Length = "24" Path = "187/18718.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18718.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, MAIT is finished with their investigation on 
+					the 55 overpass.  Preparing DOT truck for tow.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. MAIT is finished with their 
+						investigation on the 55 overpass. Preparing DOT truck 
+						for tow.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:48:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1 1144 IN TRCK, REQ CRNR</DETAIL>
+				<AUDIO Length = "18" Path = "188/18813.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18813.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. There is one 11-44 in the truck. Request coroner.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copied one 11-44 in truck. Request coroner.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for coroner request</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+		<TMT_RADIO>Sign truck/s are 97 at the end of the current queue.</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:49:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incidents.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">What details do you have on those?</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:50:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-9 1039 CRNR, ETA 15</DETAIL>
+				<AUDIO Length = "16" Path = "188/18814.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18814.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	9-9 Santa Lucia</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9 go ahead.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-39 coroner, ETA is 15 minutes.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9 10-4.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-39 CORONER</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+		
+		<MAINTENANCE_RADIO>
+			Radio traffic between maintenance workers on site and maintenance dispatcher. 
+			Dispatched crews are 10-97 and beginning the cleanup.
+		</MAINTENANCE_RADIO>
+
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:51:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT 1097, STRTNG CLNUP OF TOMATOES</DETAIL>
+				<AUDIO Length = "18" Path = "188/18815.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18815.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-9. Caltrans is 10-97. Starting cleanup of tomatoes.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Caltrans 10-97. Starting cleanup of tomatoes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">I'm away from my CAD. What's going on 
+										 with the accident on northbound 5 
+										 involving the tomato truck spill?
+			</INSTRUCTOR>
+			<STUDENT>Fire out on truck, 11-44, will start cleanup.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">Was anybody killed in the collision.</INSTRUCTOR>
+			<STUDENT>One 11-44</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:52:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TMT_RADIO>Radio traffic between TMT crew and TMT leader regarding current queue status</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:53:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 ROT 1097</DETAIL>
+				<AUDIO Length = "15" Path = "188/18816.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18816.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. 11-85 rotation 10-97.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia copied 11-85 rotation 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">What details do you have on the northbound 5 collision?</INSTRUCTOR>
+			<STUDENT>(pause for answer)</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">Is there an alternate route established?</INSTRUCTOR> 
+			<STUDENT>(pause for answer)</STUDENT>			
+		</TELEPHONE>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:54:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT STARTING INVESTIGATION NB 405 TO TAKE 30 MIN</DETAIL>
+				<AUDIO Length = "23" Path = "187/18719.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18719.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 14-S3. MAIT is starting investigation on 
+					northbound 405. The investigation should take 30 minutes.</LINE>				
+				<LINE Role="Dispatch">	14-S3 Santa Lucia copied MAIT starting investigation on 
+						northbound 405. The investigation should take 30 minutes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:55:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CLNUP NRLY FNSHD DOT RDY TO BE TWD, SB SR-55 LNS OPN IN 5</DETAIL>
+				<AUDIO Length = "25" Path = "187/18720.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18720.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia, nearly finished with cleanup and the DOT truck 
+					is ready to be towed. Southbound 55 lanes open in 5 minutes.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia 10-4. Nearly finished with cleanup and 
+						DOT truck is ready to be towed. Southbound 55 lanes open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:56:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>WTNSSES, JOHN/BETTY JONES SAW TOMATO TRUCK LOSE CONTROL, FLIP OVER, VEH HIT, TRCK IMM CAUGHT FIRE</DETAIL>
+				<WITNESS Name="John/Betty Jones" Address="101 Lowland Dr." PhoneNum="(949)555-8375"/>
+				<AUDIO Length = "27" Path = "188/18817.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18817.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Witnesses John and Betty Jones saw the 
+					tomato truck lose control, flip over, and the vehicle hit 
+					it. The truck then caught fire.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Witnesses John and Betty Jones saw 
+						tomato truck lose control, flip over, and vehicle hit 
+						it. Truck then immediately caught fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, is George there?</INSTRUCTOR>
+			<STUDENT>No, wrong number.</STUDENT>
+			<INSTRUCTOR Role="Public">Sorry, good bye.</INSTRUCTOR> 
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>00:59:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>BIG RIG 1185 1097</DETAIL>
+				<AUDIO Length = "16" Path = "188/18818.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18818.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9, big rig 11-85 10-97.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copies, big rig 11-85 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #10">"Hello, this is Bill Rasmussen at KTRC radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #10">"Do you have any updated info on the 
+											northbound 5 collision involving the 
+											tomato truck?"
+			</INSTRUCTOR>
+			<STUDENT>Pause for answer.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #10">When is it expected to be cleared.</INSTRUCTOR>
+			<STUDENT>Cleaning up now, no definite answer, approx. 30 minutes.</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should call CHP to inquire for incident duration.  (Approx 30 minutes)</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:02:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>14-17 1097 DOT TRCK TWD, SB SR-55 OPN</DETAIL>
+				<AUDIO Length = "21" Path = "187/18721.mp3" />
+				
+				<PARAMICS LocationID="187_S_55_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18721.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-17.</LINE>				
+				<LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 10-98, the DOT truck has been towed and the 
+					southbound 55 lanes are open.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 14-17 10-98. DOT truck towed and 
+						southbound 55 lanes open.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="72" type="remove">
+			<LOCATION>SB 55 @ WARNER AVE</LOCATION>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+		<MAINTENANCE_RADIO>
+			Maintenance workers are 10-98.  Truck has been towed and 
+			taking maintenance worker, whose truck got hit, to the shop.
+		</MAINTENANCE_RADIO>		
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:03:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT PARTIAL CMPLT, PICS TKN, NEED MSRMNTS, INTERVIEWS</DETAIL>
+				<AUDIO Length = "25" Path = "187/18722.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18722.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT has partially completed its 
+					investigation. Pictures have been taken, but still need to 
+					take measurements and conduct interviews.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. MAIT has partially completed its 
+		  				investigation.  Pictures have been taken, but still need 
+		  				to take measurements and conduct interviews.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:05:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT #3 LN ALMOST CLEARED OF TOMATOES</DETAIL>
+				<AUDIO Length = "17" Path = "188/18819.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18819.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans has the #3 lane almost cleared of the tomatoes.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans has #3 almost cleared.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #11">"Hello, this is Chris Rasmuessan at KWIT radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #11">"Do you have an ETA for the opening of the lanes on Eastbound 91?"
+			</INSTRUCTOR>
+			<STUDENT>No to full opening, approx. 30 minutes, #3 lane nearly cleared.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:07:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CRNR 1097</DETAIL>
+				<AUDIO Length = "14" Path = "188/18820.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="31520.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9, coroner 10-97.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia copies coroner 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:08:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">"Hello, this Dakota Crew at KTAK radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">"Do you have any new incidents 
+											within the last 20 minutes?"
+			</INSTRUCTOR>
+			<STUDENT>No.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #1">Give me the details on that.</INSTRUCTOR>
+		</TELEPHONE>		
+		
+		<MAINTENANCE_RADIO>
+			Maintenance crew notifies dispatch that lane #3 is clear.  The #4,5
+			lanes should be clear in another 20-30 minutes.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:08:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ 6 ROT 1185</DETAIL>
+				<AUDIO Length = "17" Path = "187/18723.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18723.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. Request 6 rotational 11-85's.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied requesting 6 rotational 11-85's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:09:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TOWED, #3 LN CLEARED, OPENING</DETAIL>
+				<AUDIO Length = "18" Path = "188/18821.mp3" />
+				
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>4</Lane_number>
+					<Lane_number>5</Lane_number>
+				</PARAMICS>	
+				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18821.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Vehicle towed. #3 lane cleared of 
+					tomatoes and opening lane now.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Vehicle towed, #3 lane cleared 
+						and opening lane now.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:10:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT NEARLY COMPLETE, FINISHING INTERVIEWS, TOW ETA 10</DETAIL>
+				<AUDIO Length = "29" Path = "187/18724.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18724.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT has nearly completed their 
+					investigation, they are finishing up the interviews. ETA 
+					tows?</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia. MAIT has nearly completed their 
+						investigation, they are finishing up the interviews. 
+						Tow ETA 10 minutes.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 10-4 ETA 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TMT_RADIO>Have SB 55 TMT units go 10-98.</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:12:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1144 CNFRMD, #3 LN OPN, FULL OPNNG 20 MIN</DETAIL>
+				<AUDIO Length = "21" Path = "188/18822.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18822.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Coroner has confirmed 11-44. #3 lane is 
+					open. Full opening in 20 minutes.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-44 confirmed. #3 lane open, 
+						full opening in 20.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for confirmed 1144</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:13:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">"Hello, this is Cameron Stevens at KCLY TV 2."</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">"My CAD is down. Were there any 
+										 confirmed fatalities at the collision 
+										 northbound 5?"
+			</INSTRUCTOR>
+			<STUDENT>1 dead.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">"When are the lanes supposed to be open?"</INSTRUCTOR>
+			<STUDENT>#3 lane open, full opening in 20.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:15:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT NRLY FNSHD CLNUP, TRCK BEING PRPRD FOR 1185</DETAIL>
+				<AUDIO Length = "18" Path = "188/18823.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18823.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans is nearly finished with cleanup. 	
+					Truck being prepared for 11-85.</LINE>				
+				<LINE Role="Dispatch">	9-9 Santa Lucia 10-4. Caltrans nearly finished. Truck 
+						being prepared for 11-85.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:16:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">"Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">When is the roadway supposed to be cleared on the 5?
+			</INSTRUCTOR>
+			<STUDENT>#3 lane open, full opening in approx. 15.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:16:30</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAIT FINISHED INVESTIGATION 1098, START CLEANUP WHEN 1185S ARRIVE</DETAIL>
+				<AUDIO Length = "23" Path = "187/18725.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18725.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. MAIT is finished with their investigation 
+					and 10-98. Will start cleanup when the 11-85's arrive.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia copied MAIT finished with 
+						investigation and 10-98. Start cleanup when 11-85's 
+						arrive.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:18:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<MAINTENANCE_RADIO>Confirm completion of tomato cleanup.  Going 10-98</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:19:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>	
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 1097 PARTIAL OPENING IN 15</DETAIL>
+				<AUDIO Length = "21" Path = "187/18726.mp3" />
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18726.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3 11-85's 10-97. Partial opening in 15 minutes.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4 11-85's 10-97. Partial opening in 15 minutes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:20:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CT 98 TOMATOES, LNS OPN IN 10</DETAIL>
+				<AUDIO Length = "17" Path = "188/18824.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18824.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Caltrans done cleaning up the tomatoes. 
+					Lanes open in 10.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans 98 with 
+						tomatoes, lanes open in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:21:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #3">"Hello, this is Bill Bradley at KCTR radio."</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #3">"What kind of backup is there on 
+											northbound 5 due to the tomato truck spill and collision?"
+			</INSTRUCTOR>
+			<STUDENT>Current queue from ATMS.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #3">Are the lanes open soon?</INSTRUCTOR>
+			<STUDENT>10 minutes.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:23:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO005</MASTER_INC_NUM>
+			<P>3</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1031 - Crime in progress</TYPE_CODE>
+				<TYPE>1031</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>28-24</BEAT>
+				<ADDRESS>NB/SB 405 at Jeffrey</ADDRESS>
+				<LOC>NB/SB 405 at Jeffrey</LOC>
+				<CITY>San Luis Obispo</CITY>
+				<AREA>28-San Luis Obispo</AREA>
+				<FIRE>San Luis Obispo</FIRE>
+				<LAW>San Luis Obispo</LAW>
+				<EMS>San Luis Obispo</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1031</Type>
+				<Beat>28-24</Beat>
+				<TruncLoc>NB/SB 405 at Jeffrey</TruncLoc>
+				<FullLoc>NB/SB 405 at Jeffrey</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="189_N_405_ML">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>3.04</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="189_N_405_HV">
+				<Route>405</Route>
+				<Direction>NB</Direction>
+				<Postmile>3.04</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>
+
+			<LOCATION_INFO ID="189_S_405_ML">
+				<Route>405</Route>
+				<Direction>SB</Direction>
+				<Postmile>5.55</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<LOCATION_INFO ID="189_S_405_HV">
+				<Route>405</Route>
+				<Direction>SB</Direction>
+				<Postmile>5.55</Postmile>
+				<Location_type>HV</Location_type>					
+			</LOCATION_INFO>
+			
+
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>CELLULAR 911 RPT SUICIDE BMBR AT I-405 @ JEFFREY, UNVERIFIED</DETAIL>
+				<DETAIL>1039 IRV PD, PD ENRT, 28-24 ENRT FROM I-405 @ IRVINE CNTR.</DETAIL>
+				<UNIT UnitNum="28-24" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "23" Path = "189/18901.mp3" />
+			</CAD_INCIDENT_EVENT>		
+			
+		</CAD_DATA>	
+
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT>This is a suicide attempt and a bomb threat. A man with a bomb 
+		  strapped to him is threatening to blow up the interchange at I-405 and
+		  Jeffrey Road. The freeway interchange is shut down completely, causing 
+		  major backup in both directions on I-405. The man is eventually 
+		  apprehended after attempting to explode the bomb. The PD, additional 
+		  units, sign trucks, negotiator, and the bomb squad are sent to the 
+		  scene to assist.
+			</TEXT>
+		</GENERAL_INFO>
+
+		<CHP_RADIO RadioFile="18901.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">28-24 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24 go ahead.</LINE>				
+				<LINE Role="Dispatch">	28-24 Santa Lucia suicide attempt 405 on the Jeffrey 
+						overpass. The police department has been notified 
+						and is enroute.</LINE>				
+				<LINE Role="Field">	Santa Lucia 28-24 10-4. Enroute from 405 at Irvine Center.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Operator should be viewing CCTV cameras in vicinity of incident</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:24:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TRCK TWD, FD SPRYNG LNS, LNS OPN IN 5</DETAIL>
+				<AUDIO Length = "21" Path = "188/18825.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18825.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-9.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-9. Truck towed. Fire department spraying lanes 
+					clean. Lanes open in 5.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. Truck towed. Fire department 
+						spraying lane clean, lanes open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:25:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR> 
+			<INSTRUCTOR Role="Radio Reporter #4">Are the lanes open yet on 
+											northbound 5 just north of Lake 
+											Forest Drive.
+			</INSTRUCTOR>
+			<STUDENT>#3 open, all lanes open in 5.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">Are there any other new incidents 
+											going on right now?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of new incidents.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:25:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-24 1097, PD 1097</DETAIL>
+				<UNIT UnitNum="28-24" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "18" Path = "189/18902.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18902.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-24.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24 10-97 405 at Jeffrey. 
+				                   Irvine PD is 10-97.
+				</LINE>			
+				<LINE Role="Dispatch">10-4, Copy you  are 97 with Irvine PD.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:29:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-19 ENRT FROM I-5 AT SND CYN, 28-13 ENRT FROM I-5 AT 133</DETAIL>
+				<DETAIL>SHUT DWN NB I-405 AT SND CYN OFFR</DETAIL>
+				<UNIT UnitNum="28-19" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="28-13" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "44" Path = "189/18903.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18903.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">28-19 Santa Lucia.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 28-19 go ahead.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia 10-23.</LINE>					
+				<LINE Role="Dispatch">(pause)</LINE>				
+				<LINE Role="Dispatch">28-13 Santa Lucia.</LINE>				
+				<LINE Role="Field_2">Santa Luica 28-13 go ahead.</LINE>				
+				<LINE Role="Dispatch">28-19 and 28-13 Santa Lucia, proceed to northbound 405 
+						to shut down the northbound lanes at the Sand Canyon off 
+						ramp. A man has threatened to blow up the 405 at 
+						Jeffrey interchange.</LINE>
+				
+				<LINE Role="Field_1">Santa Lucia 28-19 10-4. Enroute from I-5 at Sand Canyon.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 28-13 copied, enroute from I-5 at 133.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:30:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>OPN #2,3 LNS, FULL OPN IN 5</DETAIL>
+				<AUDIO Length = "20" Path = "187/18727.mp3" />				
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+				</PARAMICS>						
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+
+		<CHP_RADIO RadioFile="18727.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. We have opened the #2 and #3 lanes. Full 
+					opening in 5 minutes.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. #2 and #3 lanes open, full opening in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="87" type="update">
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="update">
+			<LOCATION>NB 405 @ ICD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="95" type="update">
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:31:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>ALL LNS CLR, 9-15 OPENING LAKE FOREST ONRAMP</DETAIL>
+				<DETAIL>9-9,9-15,9-19 1098</DETAIL>
+				<UNIT UnitNum="9-9" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="9-15" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="9-19" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "25" Path = "188/18827.mp3" />
+				
+				<PARAMICS LocationID="188_N_5_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18827.mp3">
+			<DIALOG> 
+				<LINE Role="Field">Santa Lucia 9-9</LINE>
+				<LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 9-9. All lanes are clear.  9-15 is opening Lake Forest Onramp.  All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">9-9 Santa Lucia 10-4. All lanes open.  9-15 opening Lake Forest Onramp.
+						9-9. 9-15, 9-19 are 1098.</LINE>	
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should cancel Sig Alert</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be handling situation well</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:31:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-11 ENRT FROM I405 AT BRISTOL, 28-07 ENRT FROM SR55 AT DYER</DETAIL>
+				<DETAIL>28-11 28-07 TO SHT DWN SB I405 AT CULVER OFFR</DETAIL>
+				<UNIT UnitNum="28-11" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="28-07" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "45" Path = "189/18904.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18904.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">	28-11 Santa Lucia.</LINE>
+				<LINE Role="Field_1">	Santa Lucia 28-11 go ahead.</LINE>
+				<LINE Role="Dispatch">	28-11 Santa Lucia 10-23.</LINE>
+				<LINE Role="Dispatch">	28-07 Santa Lucia.</LINE>
+				<LINE Role="Field_2">	Santa Lucia 28-07 go ahead.</LINE>
+				<LINE Role="Dispatch">	28-11 and 28-07 Santa Lucia, proceed to southbound I405 
+							to shut down the southbound lanes at the Culver Dr off 
+							ramp. A man has threatened to blow up the 405 at 
+							Jeffrey interchange.</LINE>
+				<LINE Role="Field_1">	Santa Lucia, 28-11 10-4 enroute from 405 at Bristol Sreet.</LINE>
+				<LINE Role="Field_2">	Santa Lucia, 28-07 10-4. Enroute from 55 at Dyer.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 11.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">I just heard about a suicide attempt on I405.
+			</INSTRUCTOR>
+			<STUDENT>Confirm report.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Where exactly is it located, I would 
+											 like to send a camera out there?"
+			</INSTRUCTOR>
+			<STUDENT>I405 at Jeffrey Dr.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Are you closing down any of the lanes?"</INSTRUCTOR>
+			<STUDENT>Closing down the whole interchange.</STUDENT>
+		</TELEPHONE>
+
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident. Should note interchange closed 
+							 when all lanes have been closed. HAR's #3 and #4 might 
+							 also note interchange closed.
+			</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:32:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PD CLOSING JEFFREY AND UNIV DR, SENDING NEGOTIATOR, REQ SIGALERT</DETAIL>
+				<AUDIO Length = "30" Path = "189/18905.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18905.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-24.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-24. The police department is taking care of 
+					the Jeffrey Road and University Drive closures. They have 
+					sent for a negotiator to talk the man down. Issue a Sig 
+					Alert on this one, we'll be here a while.</LINE>				
+				<LINE Role="Dispatch">28-24 Santa Lucia 10-4. PD closing Jeffrey Road and 
+						University Drive and sending negotiator to talk man 
+						down. 	Requesting Sig Alert until further notice.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">I was told that both the northbound 
+											and southbound I405 lanes are going 
+											to be closed due to a suicide 
+											attempt. What details do you have on 
+											that?
+			</INSTRUCTOR>
+			<STUDENT>Gives details of closure.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #5">Is a detour being set up?</INSTRUCTOR>
+			<STUDENT>Don't know as of yet.</STUDENT>
+		</TELEPHONE>
+		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should ensure HQ Comm is notified</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should notify District Duty Officer</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:35:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TWD, LNS OPN, 14-S, 14-9, 14-14 1098</DETAIL>
+				<UNIT UnitNum="14-14" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="14-17" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="14-9" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="14-S3" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "23" Path = "187/18728.mp3" />
+				
+				<PARAMICS LocationID="187_N_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>							
+				
+				<PARAMICS LocationID="187_N_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>
+		
+		<CHP_RADIO RadioFile="18728.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 14-S3.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 14-S3. Vehicles have been towed and lanes open. 
+					All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">14-S3 Santa Lucia 10-4. Vehicles towed and lanes open.  
+						14-S3,14-9, and 14-14 are 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV TV channel 11.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">Are the lanes clear NB 405 at 55?
+			</INSTRUCTOR>
+			<STUDENT>Lanes were just cleared.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">How many were injured in that accident?
+			</INSTRUCTOR>
+			<STUDENT>There were 3 dead and 7 injured.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="87" type="remove">
+			<LOCATION>NB 405 @ HARVARD</LOCATION>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="88" type="remove">
+			<LOCATION>NB 405 @ ICD</LOCATION>
+		</CMS_EVALUATION>
+		<CMS_EVALUATION cmsID="95" type="remove">
+			<LOCATION>NB 5 @ EL TORO</LOCATION>
+		</CMS_EVALUATION>
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>		
+		<FACILITATOR_EVALUATION>
+			<EXPECTED_ACTION>Should be alert to the situation</EXPECTED_ACTION>
+		</FACILITATOR_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:36:00</TIME_INDEX>
+		<INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>
+
+		<TMT_RADIO>TMT units go 10-98.  Traffic is back to normal</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:36:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-13 1097, 10-23 28-19 B4 CLOSING NB LNS, 1039 DOT FOR SIGN TRUCKS</DETAIL>
+				<UNIT UnitNum="28-13" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "33" Path = "189/18906.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18906.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-13.</LINE>				
+				<LINE Role="Dispatch">28-13 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-13 10-97 northbound 405 at Sand Canyon.  Will 
+					10-23 28-19 and then proceed to close down northbound lanes. 
+					Do we have any sign trucks enroute yet to assist with the 
+					closure?</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-13 10-97 northbound 405 at Sand 
+						Canyon. 10-23 28-19 before closing northbound lanes. Checking on TMT.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>
+			</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+		<MAINTENANCE_RADIO>Get TMT rolling.</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:37:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-11 1097, CLSNG DWN SB LNS AT CULVER DR OFFR</DETAIL>
+				<UNIT UnitNum="28-11" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "21" Path = "189/18907.mp3" />
+				
+				<PARAMICS LocationID="189_S_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>	
+
+				<PARAMICS LocationID="189_S_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>		
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18907.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-11.</LINE>				
+				<LINE Role="Dispatch">28-11 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-11 10-97 405 at Culver offramp.  
+					Proceeding to close down the southbound lanes.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-11 10-97 405 at Culver offramp. 
+					Closing southbound lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="CHP Dispatch">Hello, this is CHP Dispatch.</INSTRUCTOR>
+			<STUDENT>Have sign trucks been sent to the bomb threat at the 
+						 I405 and Jeffrey Road overpass?</STUDENT>
+			<STUDENT>Responds correctly to question.</STUDENT>
+			<STUDENT>Notifies maintenace station to dispatch sign trucks.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="89" type="new"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="72" type="new"> 
+			<LOCATION>SB 55 @ Warner</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>S-405 CLOSED AT CULVER DR</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:38:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-13, 28-19 SHUTTING DWN NB 405 LNS AT SAND CYN ST OFFR</DETAIL>
+				<UNIT UnitNum="28-19" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "30" Path = "189/18908.mp3" />
+				
+				<PARAMICS LocationID="189_N_405_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>	
+					<Lane_number>5</Lane_number>				
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_N_405_HV">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>1</Lane_number>				
+				</PARAMICS>	
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18908.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-19 10-97 northbound 405 at Sand Canyon.  
+					28-13 and I are proceeding to shut down the northbound 405 lanes 
+					at the Sand Canyon offramp.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-19 10-97 northbound 405 at Sand 
+						Canyon. 28-13, 28-19 shutting down northbound 405 lanes at 
+						Sand Canyon off ramp.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ TV.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">I heard over the scanner that there is 
+										 a bomb threat on the 5.
+			</INSTRUCTOR>
+			<STUDENT>Correct location is I405.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">I would like to send a helicopter out 
+										 there, what are the details on the 
+										 threat?
+			</INSTRUCTOR>
+		</TELEPHONE>	
+		
+		<CMS_EVALUATION cmsID="88" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>FWY CLOSED AT SAND CYN AVE</CMS_LINE> 
+				<CMS_LINE>USE HWY-133</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="new"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>N-405 CLOSED AT SAND CYN AVE</CMS_LINE> 
+				<CMS_LINE>USE OTHER ROUTES</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:39:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KNOW TV 2.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">I heard about a suicide on the 405, 
+										 what details do you have on that?
+			</INSTRUCTOR>
+			<STUDENT>Located I405 and Jeffrey overpass, man has bomb 
+						 strapped to himself, closing down I405 in both directions.
+			</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:40:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-07 1097 ASSTNG 28-11 CLSNG SB LNS AT CULVER OFFR</DETAIL>
+				<UNIT UnitNum="28-07" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "23" Path = "189/18909.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18909.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07 10-97 southbound 405 at Culver Dr. 
+					Assisting 28-11 with the closure.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-07 10-97 southbound 405 at Culver 
+						Drive. Assisting 28-11 with closure.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<TMT_RADIO>If no sign trucks have been requested yet, another 
+						 phone call needs to be made from CHP Dispatch 
+						 requesting them.
+		</TMT_RADIO>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:41:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-S4 1097 I5 JEFFREY AVE ASSIST</DETAIL>
+				<UNIT UnitNum="28-S4" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "19" Path = "189/18910.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18910.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4 10-97 I-405 at Jeffrey overpass.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 28-S4 10-97 I-405 at Jeffrey Road.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is the surrounding residential area 
+											around the bomb threat being evacuated?
+			</INSTRUCTOR>
+			<STUDENT>They don't know, although the correct answer will be no.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:43:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PD STTNG DETOURS, SB TRFFC OFF AT CULVER AVE, NB TRFFC OFF AT SAND CYN</DETAIL>
+				<AUDIO Length = "22" Path = "189/18911.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18911.mp3">
+			<DIALOG>
+				<LINE Role="Field">	Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">	28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">	Santa Lucia 28-S4. Irvine PD is setting up 
+					detours through the city for the northbound and southbound 
+					405 traffic.
+				</LINE>				
+				<LINE Role="Dispatch">	28-S4 Santa Lucia 10-4. Police department setting up 
+						detours through the city for all traffic.
+				</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, I just saw on TV that there is bomb 
+								   on the I405 near University Drive.
+			</INSTRUCTOR>
+			<STUDENT>Confirm report.</STUDENT>
+			<INSTRUCTOR Role="Public">"I live nearby, Is that area evacuated?</INSTRUCTOR>
+			<STUDENT>No, not to the best of my knowledge.	</STUDENT>
+		</TELEPHONE>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should have posted a Sig Alert by this time</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:44:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NEGOTIATOR 1097</DETAIL>
+				<AUDIO Length = "20" Path = "189/18912.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18912.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. Negotiator is 10-97 and attempting to 
+					talk the man down.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia 28-S4 10-4. Negotiator is 10-97 and 
+						attempting to talk man down.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>	
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:45:00</TIME_INDEX>
+		<INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>
+		
+		<TMT_RADIO>Have NB 405 TMT units go 10-98.</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:45:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NB LNS SHUT DOWN</DETAIL>
+				<AUDIO Length = "16" Path = "189/18913.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18913.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-19. The northbound lanes are shut down.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia 10-4. Northbound lanes are shut down.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:46:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP WON'T ALLOW NEGOTIATOR NEAR HIM</DETAIL>
+				<AUDIO Length = "22" Path = "189/18914.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="18914.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. This is going to take a while. The man 
+					won't let the negotiator get close to him.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiations will take a while, 
+						man won't let the negotiator get close to him.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:47:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-07 SB LNS SHUT DOWN</DETAIL>
+				<AUDIO Length = "19" Path = "189/18915.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18915.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07. The southbound lanes have been shut down. 
+					Traffic is building up quickly.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes shut down.  
+						Traffic building up quickly.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:50:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP IS CALMING DOWN.  BOMB SQD 1097</DETAIL>
+				<AUDIO Length = "18" Path = "189/18916.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18916.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 28-S4. The man is calming down. The bomb squad is 10-97.</LINE>
+				<LINE Role="Dispatch">	28-S4 Santa Lucia 10-4. Man calming down. Bomb squad 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should enter info for 10-97 Bomb Squad</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+
+		<TMT_RADIO>>Call saying the sign trucks are 10-97.  Queue update.</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:51:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO006</MASTER_INC_NUM>
+			<P>5</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>9-22</BEAT>
+				<ADDRESS>NB5 JNO Main Street</ADDRESS>
+				<LOC>NB5 JNO Main Street</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>9-Templeton</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>9-22</Beat>
+				<TruncLoc>NB5 JNO Main St</TruncLoc>
+				<FullLoc>NB5 JNO Main St</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="190_N_5_ML">
+				<Route>5</Route>
+				<Direction>NB</Direction>
+				<Postmile>33.2</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<CAD_INCIDENT_EVENT>
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>
+			
+		</CAD_DATA>		
+		
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT>Incident Description - This is a collision involving a tanker truck 
+		  and a car that block the #3 and 4 lanes on NB I-5 just north of 
+		  Main Street. There are 2 minor injured and 1 major injured. 
+		  Liquid is leaking out of the tanker truck which is identified as milk. 
+		  The leak is plugged and the fire department sprays the milk down the 
+		  drain. The fire department, ambulance, additional units, TMT, a big 
+		  rig tow, and a rotational tow are sent to the scene.</TEXT>
+		</GENERAL_INFO>
+
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:53:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-22 ENRT FROM 57 @ CHAPMAN</DETAIL>
+				<UNIT UnitNum="9-22" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "24" Path = "190/19001.mp3" />
+				
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19001.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-22 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 11-79 northbound 5 just north of Main Street.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 copies, enroute from 57 at Chapman Ave.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Enroute from 57 at Chapman Ave.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Should shold be verifying incident 190 on the CAD.</EXPECTED_ACTION>
+		</CAD_EVALUATION>	
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Should try to confirm the incident with a CCTV cameras.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:54:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Mayor">"Hello, this is Mayor Krom of Irvine."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Mayor">I just heard that a bomb went off on I405. Was 
+								 anyone injured or killed?
+			</INSTRUCTOR>
+			<STUDENT>Not true - no bomb was not detonated.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:56:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>		
+
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:58:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-22 1097 2 VEH TC, VEH VS TANKER TRK, BLKNG #3,4</DETAIL>
+				<DETAIL>UNID LIQUID LEAKING FROM TNKR, NEED TO CLOSE NB LANES, REQ UNITS</DETAIL>
+				<UNIT UnitNum="9-22" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "37" Path = "190/19002.mp3" />		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19002.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22 1097 JNO Main St. 2 vehicle collision 
+					between tanker truck and vehicle blocking #3, 4 lanes.  
+					Unidentified liquid leaking out of the tanker. Request 
+					additional units, we're going to have to shut down the 
+					northbound lanes until we identify the susbstance.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied. 9-22 10-97.  2 vehicle 
+						collision, tanker truck and vehicle, blocking #3, 4. 
+						Unidentified liquid leaking out of tanker. Request 
+						units to shut down NB lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="93" type="new"> 
+			<LOCATION>NB-5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>2 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+
+		<MAINTENANCE_RADIO>TMT Earliest possible request for sign trucks. Send trucks if requested.
+		</MAINTENANCE_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>01:59:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>9-23, 9-26 ENRT TO ASSIST 9-22</DETAIL>
+				<UNIT UnitNum="9-23" Status="ENRT" Primary="false" Active="true"/>
+				<UNIT UnitNum="9-26" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "41" Path = "190/19003.mp3" />		
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19003.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">9-23, 9-26 Santa Lucia.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-23 go ahead.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 9-26 go ahead.</LINE>				
+				<LINE Role="Dispatch">9-23 and 9-26 Santa Lucia, 1179 northbound 5 
+						just north of Main St blocking #3,4 .  22 request assistance closing freeway.</LINE>				
+				<LINE Role="Field_1">Santa Lucia 9-23 10-4. Enroute from 22 just south of 
+						Euclid Avenue.</LINE>				
+				<LINE Role="Field_2">Santa Lucia 10-4. 9-26 enroute from 57 at 91.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copied 9-23, 9-26 enroute.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:00:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>1141, FD 1097, TRCK DRVR 1180 UNCONCIOUS, 2 1181S, LIQUID LEAKING INTO #2 LN. #2,3,4 BLKD AT THIS TIME</DETAIL>
+				<AUDIO Length = "35" Path = "190/19004.mp3" />		
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>2</Lane_number>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>					
+				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19004.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. 1141 is 1097. The 
+					driver of the truck is 1180 and unconscious. There are 2 
+					1181s in the other vehicle. The liquid is leaking out into 
+					the #2 lane. #2,3,4 lanes blocked at this time.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copies. 1141 1097. 1 
+						1180 and 2 1181's.  Liquid leaking into #2 lane.  #2,3,4 lanes are blocked.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">I just caught on the scanner that 
+											there was some type of spill on 57.
+			</INSTRUCTOR>
+			<STUDENT>Confirm incident.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #7">What kind of details do you have 
+											on the collision?
+			</INSTRUCTOR>
+			<STUDENT>Truck vs car, #3 and 4 lanes blocked, liquid spill in lanes.</STUDENT>
+		</TELEPHONE>
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>3 RT LANES BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:01:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NEGOTIATOR MAKING PROGRESS, SUSP MAY SURRENDER</DETAIL>
+				<AUDIO Length = "21" Path = "189/18919.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="18919.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The negotiator has made some 
+					progress. Looks like the man is about to give himself up.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiator has made progress and 
+						looks like the man is about to give himself up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:01:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>DONT HAVE TO SHUT THE FWY, LIQUID ID'D AS MILK.  #1 LN WILL REMAIN OPEN.</DETAIL>
+				<DETAIL>ATTEMPTING TO CONTROL THE LEAK. REQ BIG RIG AND ROT 1185</DETAIL>
+				<AUDIO Length = "27" Path = "190/19005.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19005.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>
+				<LINE Role="Field">Santa Lucia 9-22. We don't have to shut down all the lanes, 
+					the liquid is milk. Attempting to control the leak.  Request big 
+					rig 11-85 and 11-85 rotational.</LINE>
+				<LINE Role="Dispatch">9-22 Santa Lucia copied don't have to close all lanes, 
+						liquid is milk. Attempting to control the leak. Requesting big 
+						rig and rotational 11-85's.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">I just heard the northbound lanes 
+											on 57 are being closed.
+			</INSTRUCTOR>
+			<STUDENT>Confirmation.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">Why are they closing the lanes.
+			</INSTRUCTOR>
+			<STUDENT>Liquid spill, collision.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #8">How long are they expected to be 
+											closed.
+			</INSTRUCTOR>
+			<STUDENT>Until cleanup - no definitive answer.</STUDENT>
+		</TELEPHONE>
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:02:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">"Hello, this is Fred Roppel at KNOW TV 
+										 Channel 3."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">"Has a bomb been found yet at the 405 
+										 and Jeffrey interchange?"
+			</INSTRUCTOR>
+			<STUDENT>No bomb has been found.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"When will they be done with their search?"
+			</INSTRUCTOR>
+			<STUDENT>Unknown, but about 10 minutes.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"Are there any other incidents going on 
+										 right now?"
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #2">"What are their details?"</INSTRUCTOR>
+			<STUDENT>Notify reporter of incident details.</STUDENT>
+		</TELEPHONE>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:03:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">How many lanes are blocked by the 
+											collision on 57 at Katella?
+			</INSTRUCTOR>
+			<STUDENT>#3 and 4 lanes blocked, milk in #2 lane.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">How many Injured are there?</INSTRUCTOR>
+			<STUDENT>3 injured.</STUDENT>
+		</TELEPHONE>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:04:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-23 1097, REQ TMT, TRAFFIC BACKING</DETAIL>
+				<UNIT UnitNum="9-23" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "21" Path = "190/19006.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19006.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-23.</LINE>				
+				<LINE Role="Dispatch">9-23 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		
+		<TMT_RADIO>
+			Time of request by CHP officers in the field for sign 
+						 trucks. Send sign trucks to scene when requested.
+						 ***CONTROL ROOM ACTION*** - Call TMC, ask for TMT
+		</TMT_RADIO>
+		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:05:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+
+		<TMT_RADIO>Queue Update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:06:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>MAN TRIED TO DETONATE THE DEVICE, BOMB DIDNT ACTIVATE, PD APPRHNDNG</DETAIL>
+				<AUDIO Length = "23" Path = "189/18921.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>			
+		
+		<CHP_RADIO RadioFile="18921.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The man just tried to blow himself up, 
+					but the bomb didn't go off! The police department is 
+					apprehending him now.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man attempted to blow up the 
+						interchange and is being apprehended by the PD.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:08:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SUSP IN CUSTODY, BOMB SQD INSPECTING BOMB</DETAIL>
+				<AUDIO Length = "20" Path = "189/18922.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18922.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The man is in custody, and the bomb squad 
+					is attempting to diffuse the bomb.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man in custody, and bomb squad 
+						diffusing the bomb.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:09:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<TMT_RADIO>Queue update</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:11:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>PREPARING TO TRANSPORT VICTIMS, #1 LN OPN</DETAIL>
+				<AUDIO Length = "15" Path = "190/19007.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19007.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The victims are being prepared for 
+					transport.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Victims being prepared for 
+						transport.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:11:30</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #10">Hello, this is Jim Sanso at KTAK 
+											 radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #10">I just heard about a large 
+											 collision and spill on the 55.
+			</INSTRUCTOR>
+			<STUDENT>Correct location is on northbound 57.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #10">Give me the details on that.
+			</INSTRUCTOR>
+			<STUDENT>Gives details regarding incident.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:12:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should have requested sign truck(s)</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:13:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>9-26 1097 VICTIMS TRANSPORTED</DETAIL>
+				<UNIT UnitNum="9-26" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "15" Path = "190/19008.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19008.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-26.</LINE>				
+				<LINE Role="Dispatch">9-26 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia I'm 1097.  The victims have been transported.</LINE>				
+				<LINE Role="Dispatch">	Santa Lucia copies 9-26 10-97. Victims transported.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #11">Hello, this is Bill Rasmussen at KTRC radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #11">What details do you have on the collision on 57.
+			</INSTRUCTOR>
+			<STUDENT>Tanker vs. car, milk spill, 3 lanes blocked, 3 injured.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #11">Is there an alternate route 
+											established, that I could tell my listeners?
+			</INSTRUCTOR>
+			<STUDENT>Alternate route??</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:14:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>CODE A, BOMB DEFUSED, LNS BEING OPENED</DETAIL>
+				<AUDIO Length = "19" Path = "189/18923.mp3" />
+				
+				<PARAMICS LocationID="189_N_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_N_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+				
+				<PARAMICS LocationID="189_S_405_ML">
+					<Status>CLEARED</Status>
+				</PARAMICS>	
+				
+				<PARAMICS LocationID="189_S_405_HV">
+					<Status>CLEARED</Status>
+				</PARAMICS>		
+				
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18923.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. The bomb has been diffused. We're opening 
+					the lanes now.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. The bomb has been diffused and 
+						lanes are being opened.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should update TMT units</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:14:30</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #12">"Hello, this is Fred Masterson at KTRC radio."
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #12">"My CAD is down and I was wondering 
+											 if you had any new incidents?"
+			</INSTRUCTOR>
+			<STUDENT>Yes, tanker vs. car, spill.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #12">"What do you have on that?"
+			</INSTRUCTOR>
+			<STUDENT>Gives details.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:15:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>HOLE IN TANKER PLUGGED, FD WASHING DOWN RDWY</DETAIL>
+				<AUDIO Length = "20" Path = "190/19009.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19009.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The hole in the tanker has been plugged. 
+					Not too much spilled on the roadway here.  The fire department is going 
+					to wash it down.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Hole plugged. Fire department 
+						spraying down roadway.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:16:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>SB LNS OPN 28-11 28-07 1098</DETAIL>
+				<UNIT UnitNum="28-11" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="28-07" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "21" Path = "189/18924.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18924.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-07.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-07. Southbound lanes are open. 28-11 and I are 10-98.</LINE>				
+				<LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes open. 28-11, 28-07 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>		
+		
+		<CMS_EVALUATION cmsID="72" type="remove"> 
+			<LOCATION>SB 55 @ Warner</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="86" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="89" type="update"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:16:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #13">Hello, this is Chris Rasmuessan at KWIT radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #13">What's going on with the tanker 
+											spill on 5 north of Main St?
+			</INSTRUCTOR>
+			<STUDENT>(tanker plugged, injured transported, diluting milk with water, #1 lane only open.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:17:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<MASTER_INC_NUM>145086SLO007</MASTER_INC_NUM>
+			<P>4</P>
+			<ADDITIONAL_INFO>
+				<TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE>
+				<TYPE>1179</TYPE>
+			</ADDITIONAL_INFO>
+			<LOCATION>
+				<BEAT>17-14</BEAT>
+				<ADDRESS>SB73 JNO Baker St.</ADDRESS>
+				<LOC>SB73 JNO Baker St.</LOC>
+				<CITY>Templeton</CITY>
+				<AREA>17</AREA>
+				<FIRE>Templeton</FIRE>
+				<LAW>Templeton</LAW>
+				<EMS>Templeton</EMS>
+			</LOCATION>
+			<GENERAL>
+				<AGY>CHP</AGY>
+			</GENERAL>
+		
+			<HEADER_INFO>
+				<Type>1179</Type>
+				<Beat>17-14</Beat>
+				<TruncLoc>SB73 JNO Baker St.</TruncLoc>
+				<FullLoc>SB73 JNO Baker St.</FullLoc>
+			</HEADER_INFO>
+			
+			<LOCATION_INFO ID="191_S_73_ML">
+				<Route>73</Route>
+				<Direction>SB</Direction>
+				<Postmile>26.7</Postmile>
+				<Location_type>ML</Location_type>					
+			</LOCATION_INFO>
+			
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>911 CELLULAR CALL, RV FIRE SB-73 AT BEAR St, UNVERIFIED</DETAIL>
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<GENERAL_INFO> 
+			<TITLE>Incident Description</TITLE>
+			<TEXT> This is an RV fire on the shoulder southbound 73 just north of 
+		   Bear/Baker Street. There are two injured victims who were pulled from 
+		   the RV by passers-by. The #3 is closed to fight the fire. 
+		   The fire department, paramedics, an extra unit, sign truck/s, and 
+		   ambulance are sent to the scene.
+			</TEXT>
+		</GENERAL_INFO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:17:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>NB LNS OPN 28-13 28-19 1098</DETAIL>
+				<UNIT UnitNum="28-13" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="28-19" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "22" Path = "189/18925.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="18925.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-19.</LINE>
+				<LINE Role="Dispatch">28-19 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 28-19. Northbound lanes are open. 28-13 and I are 10-98.</LINE>				
+				<LINE Role="Dispatch">28-19 Santa Lucia copies northbound lanes open. 28-13, 28-19 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="88" type="update"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="update"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
+				<CMS_LINE>N-405 AT JEFFREY RD</CMS_LINE>
+				<CMS_LINE>HEAVY TRAFFIC</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:18:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>28-24, 28-S4 1098 PD OPNNG OVRPASS</DETAIL>
+				<UNIT UnitNum="28-24" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="28-S4" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "24" Path = "189/18926.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="18926.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 28-S4.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 28-S4. 28-24 and I are 10-98. The police 
+					department is opening the overpass.</LINE>				
+				<LINE Role="Dispatch">28-S4 Santa Lucia 10-4. 28-S4, 28-24 10-98. Police 
+						department opening overpass.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:19:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>			
+				<DETAIL>17-14 ENRT FROM 405 AT EUCLID</DETAIL>
+				<UNIT UnitNum="17-14" Status="ENRT" Primary="true" Active="true"/>
+				<AUDIO Length = "24" Path = "191/19101.mp3" />
+				
+			</CAD_INCIDENT_EVENT>	
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19101.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-14 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia, RV fire southbound 73 just north of Baker Street. </LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-4. Enroute from 405 @ Euclid.</LINE>				
+				<LINE Role="Dispatch">10-4 Santa Lucia copies, 17-14 enroute from 405 @ Euclid.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+		<CAD_EVALUATION>
+			<EXPECTED_ACTION>Operator should be verifying incident 191 on the CAD</EXPECTED_ACTION>
+		</CAD_EVALUATION>
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>Attempt to verify incident on ATMS</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+		<MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:20:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 ROT 1097</DETAIL>
+				<TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/>
+				<AUDIO Length = "16" Path = "190/19010.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19010.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The 11-85 rotation 10-97.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copies 11-85 rotation 10-97.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:21:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>BIG RIG 1185 1097, ONCE FD IS DONE, WILL START CLEANUP</DETAIL>
+				<TOW Company="Imperial" ConfNum="(949)555-1128" PubNum="(949)555-1520" Beat=""/>
+				<AUDIO Length = "22" Path = "190/19011.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+
+		<CHP_RADIO RadioFile="19011.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">	Santa Lucia 9-22 big rig 11-85 10-97. Once the 
+				  fire department is done, we will start clearing vehicles.</LINE>				
+				<LINE Role="Dispatch">	9-22 Santa Lucia 10-4. Big rig 11-85 10-97. Start 
+						cleanup when fire department done.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #1">Hello, this is Dakota Crew at KCOW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #1">Do you have an alternate route I 
+										    could tell my listeners about for collision on I-5?
+			</INSTRUCTOR>
+			<STUDENT>Should have one established.</STUDENT>
+		</TELEPHONE>		
+
+		<TMT_RADIO>
+			Sign trucks should be 1097.
+		</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:22:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #2">Do you have any update info on the 
+											collision on 57.
+			</INSTRUCTOR>
+			<STUDENT>Clearing the milk, about to move vehicles, injured transported, etc.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:23:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY Channel 11.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #1">Is the bomb squad done with their 
+										 search yet at the 405 and Jeffrey 
+										 interchange?
+			</INSTRUCTOR>
+			<STUDENT>Yes</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #1">When will the lanes be open?</INSTRUCTOR>
+			<STUDENT>They were already opened about 10 minutes ago.</STUDENT>
+		</TELEPHONE>
+
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+			<EXPECTED_ACTION>Should issue a Sig Alert</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+		<MAINTENANCE_RADIO>TMT The traffic is near normal. I'm (we're) 1098.</MAINTENANCE_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:23:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD DONE, OPENING #2, STARTING CLEANUP</DETAIL>
+				<AUDIO Length = "19" Path = "190/19012.mp3" />
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CHANGED</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>
+					<Lane_number>4</Lane_number>				
+				</PARAMICS>			
+			</CAD_INCIDENT_EVENT>		
+			
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19012.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. Fire department is done.
+					Opening the #2 lane and starting cleanup.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Fire department is done, opening 
+						#2 lane, and starting cleanup.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:24:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV ON FIRE ON RS, 2 1181S, PARAMEDICS 1097, REQ UNIT TO ASSIST</DETAIL>
+				<UNIT UnitNum="17-14" Status="1097" Primary="true" Active="true"/>
+				<AUDIO Length = "42" Path = "191/19102.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19102.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-97 RV fire southbound 73 just north of
+					Baker Street.  RV on the right hand shoulder. Citizens 
+					pulled 2 11-81's from vehicle, paramedics 10-97.</LINE>				
+				<LINE Role="Dispatch">Santa Lucia copies 17-14 10-97 RV fire southbound 73 
+						just north of Baker Street. RV on right hand shoulder. 2 
+						11-81's pulled from RV, paramedics 10-97.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 10-4. Send a unit to assist.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copies.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT S-73</CMS_LINE> 
+				<CMS_LINE>AT BAKER ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:25:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-16 ENRT FROM S-405 @ EUCLID TO ASSIST 17-14</DETAIL>
+				<UNIT UnitNum="17-16" Status="ENRT" Primary="false" Active="true"/>
+				<AUDIO Length = "20" Path = "191/19103.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		
+		<CHP_RADIO RadioFile="19103.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-16 Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-16 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia, 17-14 requesting assistance RV fire 
+						southbound 73 just north of Baker Street.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-1610-4. Enroute from S-405 @ Euclid.</LINE>
+			</DIALOG>
+		</CHP_RADIO>	
+		
+
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 3.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #2">I just heard about a RV fire over the scanner.</INSTRUCTOR>
+			<STUDENT>Confirm RV fire.</STUDENT>								 
+			<INSTRUCTOR Role="TV Reporter #2">Where was that located, I'd like to 
+										 send a camera out there?</INSTRUCTOR>
+			<STUDENT>Southbound 73 just North of Baker Street.</STUDENT>												 
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:26:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD 1097, CLOSING RT LN, REQ TMT, TRAFFIC ADVISORY</DETAIL>
+				<AUDIO Length = "24" Path = "191/19104.mp3" />
+				
+				<PARAMICS LocationID="191_S_73_ML">
+					<Status>NEW</Status>
+					<Incident_type>LANE_BREAKDOWN</Incident_type>
+					<Lane_number>3</Lane_number>		
+				</PARAMICS>		
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19104.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14, fire department 10-97.   Closing the right lane 
+					for the fire engines. Request sign truck, traffic advisory.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copies fire departement 10-97. Closing 
+						the right lane. Request sign truck, traffic advisory.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+		<CMS_EVALUATION cmsID="86" type="new"> 
+			<LOCATION>TBD</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT S-73</CMS_LINE> 
+				<CMS_LINE>AT BAKER ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should issue traffic advisory</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+		<RADIO_EVALUATION>
+			<EXPECTED_ACTION>Operator should send TMT units</EXPECTED_ACTION>
+		</RADIO_EVALUATION>
+		
+		<TMT_RADIO>
+		Time of request by CHP officers in the field for sign trucks. Send sign 
+		trucks to scene when requested.
+		</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:27:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>#2 LN OPN, FULL CLNUP IN 20</DETAIL>
+				<AUDIO Length = "18" Path = "190/19013.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19013.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The #2 lane is open. Full cleanup in 20 minutes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied #2 open, full cleanup in 20.</LINE>
+			</DIALOG>
+		</CHP_RADIO>			
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT N-5</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+				<CMS_LINE>RT LANE BLKD</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>				 
+		
+		<TMT_RADIO>Queue update. Possibly reposition.</TMT_RADIO>	
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:28:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #3">I heard that there was an RV fire on 
+										  southbound 73.
+			</INSTRUCTOR>
+			<STUDENT>Confirm RV fire</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #3">What details do you have on it, are 
+										  any lanes blocked?
+			</INSTRUCTOR>
+			<STUDENT>RV fire on shoulder, two injured pulled from vehicle, 
+						 fire on shoulder, no lanes blocked.
+			</STUDENT>
+		</TELEPHONE>	
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:28:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #4">Our computers are down, what 
+										  incidents do you have going on?
+			</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incidents.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #4">Give me all the details on those.</INSTRUCTOR>
+			<STUDENT>Notify reporter of current incident details.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:29:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-14 1097</DETAIL>
+				<UNIT UnitNum="17-16" Status="1097" Primary="false" Active="true"/>
+				<AUDIO Length = "24" Path = "191/19105.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19105.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-16</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-16 10-97 RV fire southbound 73 just north of
+					Baker Street.</LINE>
+				<LINE Role="Dispatch">10-4 Santa Lucia copied 17-16, 10-97 RV fire 
+						southbound 73 just north of Baker Street.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION>
+		</ATMS_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:32:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH READY TO BE TOWED, TRCK AND TNKR BEING UPRIGHTED</DETAIL>
+				<AUDIO Length = "19" Path = "190/19014.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+
+		<CHP_RADIO RadioFile="19014.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The car is ready to be towed. The truck 
+					and tanker are being uprighted.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Car ready for tow, truck and 
+						tanker being uprighted.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:33:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VICTIMS TRANSPORTED, PASSERS BY RESCUED VICTIMS</DETAIL>
+				<AUDIO Length = "24" Path = "191/19106.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19106.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The two victims transported. Passers-by 
+					saw the RV on fire and assisted in pulling the two victims 
+					out of the vehicle before it was completely engulfed.</LINE>
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. Victims transported. Passers-by 
+						pulled victims out of RV.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:34:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #4">Have any of the lanes been open on 5 
+										 north of Main St.</INSTRUCTOR>
+			<STUDENT>#2 lane open.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #4">When is there a full opening?</INSTRUCTOR>
+			<STUDENT>Around 15 to 20 minutes.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:34:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #5">How long is it going to take to clear 
+										  up the RV fire on southbound 73?
+			</INSTRUCTOR>
+			<STUDENT>No estimated time as of yet.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:35:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FIRE IS OUT, FD INVESTIGATING CAUSE OF FIRE</DETAIL>
+				<AUDIO Length = "19" Path = "191/19107.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19107.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The fire is out, and the fire department 
+					is investigating the cause of the fire.</LINE>
+				<LINE Role="Dispatch">	17-14 Santa Lucia copied, fire out and fire department 
+						investigating cause of fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:37:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>VEH TOWED, TNKR UPRGHT, FULL OPENING IN 10</DETAIL>
+				<AUDIO Length = "20" Path = "190/19015.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19015.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The car has been towed. The tanker truck 
+					is upright. Full opening in 10 minutes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied car towed. Tanker truck upright. 
+						Full opening in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:38:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #6">Is there an estimated time for lane 
+										 opening for the collision on I-5?
+			</INSTRUCTOR>
+			<STUDENT>10 minutes.</STUDENT>
+		</TELEPHONE>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:39:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>REQ FLAT BED 1185, FD 98 IN 15</DETAIL>
+				<AUDIO Length = "22" Path = "191/19108.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19108.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 request flat bed 11-85 for the RV. Fire 
+					department done within 15 minutes.</LINE>
+				<LINE Role="Dispatch">	17-14 Santa Lucia 10-4. Request flat bed 11-85, fire 
+						 department 98 in 15.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+	
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:40:00</TIME_INDEX>
+		<INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>
+		
+		<CMS_EVALUATION cmsID="86" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="89" type="remove"> 
+			<LOCATION>SB 405 @ Von Karmen</LOCATION>
+		</CMS_EVALUATION>
+		
+		<CMS_EVALUATION cmsID="88" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>		
+		
+		<CMS_EVALUATION cmsID="95" type="remove"> 
+			<LOCATION>NB 5 @ El Toro</LOCATION>
+		</CMS_EVALUATION>			
+
+	</SCRIPT_EVENT>
+	
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:41:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1039 1185 ENRT, ETA 10</DETAIL>
+				<AUDIO Length = "18" Path = "191/19109.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19109.mp3">
+			<DIALOG>
+				<LINE Role="Dispatch">17-14 Santa Lucia information.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia. 11-85 enroute, ETA 10.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 copied 1 1-85 enroute with ETA of 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio.
+			</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #7">I was just told about a RV fire on 
+										  73 , what details do you have on that?
+			</INSTRUCTOR>
+			<STUDENT>Gives incident details.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:42:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TANKER READY FOR TOW, FINISHING CLEANUP</DETAIL>
+				<AUDIO Length = "18" Path = "190/19016.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19016.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The tanker truck is ready to be towed. 
+					Finishing cleanup.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck ready to be towed, 
+						finishing cleanup.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:43:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:46:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>TANKER TOWED, RDWY CLR, OPENING LANES</DETAIL>
+				<AUDIO Length = "20" Path = "190/19017.mp3" />
+				
+				<PARAMICS LocationID="190_N_5_ML">
+					<Status>CLEARED</Status>				
+				</PARAMICS>				
+			</CAD_INCIDENT_EVENT>					
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19017.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The tanker truck has been towed, roadway 
+					is clear. We're opening all lanes.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck towed, roadway 
+						clear. Opening lanes.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="93" type="update"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE>
+				<CMS_LINE>AT MAIN ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>					
+		<CMS_EVALUATION cmsID="94" type="update"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+			<SAMPLE_MESSAGE>
+				<CMS_LINE>ACCIDENT CLEARED</CMS_LINE>
+				<CMS_LINE>N-5 AT MAIN ST</CMS_LINE>
+			</SAMPLE_MESSAGE>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:46:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notifies reporter of current incidents.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:48:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>1185 1097, INVESTIGATION NEARLY COMPLETE</DETAIL>
+				<TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/>
+				<AUDIO Length = "21" Path = "191/19111.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19111.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14 11-85 10-97. Fire department is nearly 
+					completed with their investigation.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. 11-85 10-97, investigation 
+						nearly completed.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:49:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>LNS OPN, 9-22, 9-23, 9-26 10-98</DETAIL>
+				<UNIT UnitNum="9-22" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="9-23" Status="1098" Primary="false" Active="false"/>
+				<UNIT UnitNum="9-26" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "21" Path = "190/19018.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		
+		<CHP_RADIO RadioFile="19018.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 9-22.</LINE>				
+				<LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 9-22. The lanes are open, all units 10-98.</LINE>				
+				<LINE Role="Dispatch">9-22 Santa Lucia copied lanes open, 9-22, 9-23, 9-26 10-98.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:51:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>FD INVESTIGATION COMPLETE, SPRAYING RS, FIRE CAUSED BY KITCHEN FIRE</DETAIL>
+				<AUDIO Length = "20" Path = "191/19112.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19112.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. The fire department investigation 
+					complete.  Fire caused by a kitchen fire.</LINE>
+				<LINE Role="Dispatch">17-14 Santa Lucia copied fire department is 98.
+				  Fire caused by kitchen fire.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="Radio Reporter #9">What is the traffic like on 73 around the RV fire?</INSTRUCTOR>
+			<STUDENT>Notifies reporter with current queue from ATMS.  One lane is closed.</STUDENT>
+			<INSTRUCTOR Role="Radio Reporter #9">When will the incident be cleared?</INSTRUCTOR>
+			<STUDENT>Inknown, a good answer around 15 minutes.</STUDENT>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:53:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>		
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:53:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>
+		
+		<ATMS_EVALUATION>
+			<EXPECTED_ACTION>HAR should have been cleared</EXPECTED_ACTION>
+		</ATMS_EVALUATION>		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:54:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>	
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV READY FOR 1185, LN OPN IN 10</DETAIL>
+				<AUDIO Length = "21" Path = "191/19113.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>	
+		<CHP_RADIO RadioFile="19113.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. RV ready for 11-85. The lane will be open in 10.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia 10-4. RV ready for 11-85, lane open in 10.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="Public">Hello, is Helen there?</INSTRUCTOR>
+			<STUDENT>Wrong number.</STUDENT>
+			<INSTRUCTOR Role="Public">Sorry. </INSTRUCTOR>
+		</TELEPHONE>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:55:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>		
+		
+		<TMT_RADIO>Queue update 10-98</TMT_RADIO>
+
+	</SCRIPT_EVENT>
+
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:58:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>RV TOWED, LANES OPEN IN 5</DETAIL>
+				<AUDIO Length = "17" Path = "191/19114.mp3" />
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19114.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-14.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>				
+				<LINE Role="Field">Santa Lucia 17-14. RV towed, lane open in 5.</LINE>				
+				<LINE Role="Dispatch">17-14 Santa Lucia copied, RV towed, lane open in 5.</LINE>
+			</DIALOG>
+		</CHP_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>02:59:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+
+		
+		<TELEPHONE>
+			<INSTRUCTOR Role="TV Reporter #10">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR>
+			<INSTRUCTOR Role="TV Reporter #10">Has the RV been cleaned up yet at the fire on 73?</INSTRUCTOR>
+			<STUDENT>The RV was just towed, the lane will be open in 5 minutes.</STUDENT>
+			<INSTRUCTOR Role="TV Reporter #10">Do you have any other incidents going on right now?</INSTRUCTOR>
+			<STUDENT>Notifies reporter of current incidents.</STUDENT>
+		</TELEPHONE>
+		
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:00:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>		
+		
+		<TMT_RADIO>Queue update</TMT_RADIO>
+	</SCRIPT_EVENT>
+
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:01:00</TIME_INDEX>
+		<INCIDENT LogNum="191">RV Fire</INCIDENT>
+		
+		<CAD_DATA>
+			<CAD_INCIDENT_EVENT>
+				<DETAIL>17-14, 17-16 1098. LN OPN</DETAIL>
+				<UNIT UnitNum="17-14" Status="1098" Primary="true" Active="false"/>
+				<UNIT UnitNum="17-16" Status="1098" Primary="false" Active="false"/>
+				<AUDIO Length = "19" Path = "191/19115.mp3" />
+				
+				<PARAMICS LocationID="191_S_73_ML">
+					<Status>CLEARED</Status>			
+				</PARAMICS>					
+			</CAD_INCIDENT_EVENT>		
+		</CAD_DATA>		
+		
+		<CHP_RADIO RadioFile="19115.mp3">
+			<DIALOG>
+				<LINE Role="Field">Santa Lucia 17-16.</LINE>
+				<LINE Role="Dispatch">17-16 go ahead to Santa Lucia.</LINE>
+				<LINE Role="Field">Santa Lucia 17-16. #1 Lane is open. All units are 10-98.</LINE>				
+				<LINE Role="Dispatch">17-16 Santa Lucia 10-4. #1 lane open.  
+						17-14, 17-16 are 1098.</LINE>	
+			</DIALOG>			
+		</CHP_RADIO>
+		
+		<CMS_EVALUATION cmsID="86" type="remove"> 
+			<LOCATION>TBD</LOCATION>
+		</CMS_EVALUATION>			
+		<ACTIVITY_LOG_EVALUATION>
+			<EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION>
+		</ACTIVITY_LOG_EVALUATION>
+
+	</SCRIPT_EVENT>
+	
+	<SCRIPT_EVENT>
+		<TIME_INDEX>03:00:00</TIME_INDEX>
+		<INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>		
+		
+		<CMS_EVALUATION cmsID="93" type="remove"> 
+			<LOCATION>NB 5 S/O Redhill</LOCATION>
+		</CMS_EVALUATION>				
+		
+		<CMS_EVALUATION cmsID="94" type="remove"> 
+			<LOCATION>NB 55 @ Dyer</LOCATION>
+		</CMS_EVALUATION>		
+		
+	</SCRIPT_EVENT>
+	
+</TMC_SCRIPT>
+
Index: trunk/webapps/EInotebook/.project
===================================================================
--- trunk/webapps/EInotebook/.project	(revision 359)
+++ trunk/webapps/EInotebook/.project	(revision 359)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>notebook</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
+	</natures>
+</projectDescription>
Index: trunk/webapps/EInotebook/nbproject/project.properties
===================================================================
--- trunk/webapps/EInotebook/nbproject/project.properties	(revision 359)
+++ trunk/webapps/EInotebook/nbproject/project.properties	(revision 359)
@@ -0,0 +1,3 @@
+file.reference.TMCdocuments-uinotebook=.
+files.encoding=UTF-8
+site.root.folder=${file.reference.TMCdocuments-uinotebook}
Index: trunk/webapps/EInotebook/nbproject/project.xml
===================================================================
--- trunk/webapps/EInotebook/nbproject/project.xml	(revision 359)
+++ trunk/webapps/EInotebook/nbproject/project.xml	(revision 359)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://www.netbeans.org/ns/project/1">
+    <type>org.netbeans.modules.web.clientproject</type>
+    <configuration>
+        <data xmlns="http://www.netbeans.org/ns/clientside-project/1">
+            <name>uinotebook</name>
+        </data>
+    </configuration>
+</project>
Index: trunk/webapps/EInotebook/nbproject/private/private.properties
===================================================================
--- trunk/webapps/EInotebook/nbproject/private/private.properties	(revision 359)
+++ trunk/webapps/EInotebook/nbproject/private/private.properties	(revision 359)
@@ -0,0 +1,1 @@
+browser=Chrome.INTEGRATED
Index: trunk/webapps/EInotebook/nbproject/private/private.xml
===================================================================
--- trunk/webapps/EInotebook/nbproject/private/private.xml	(revision 359)
+++ trunk/webapps/EInotebook/nbproject/private/private.xml	(revision 359)
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
+    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
+</project-private>
Index: trunk/webapps/EInotebook/scripts/Event.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Event.js	(revision 364)
+++ trunk/webapps/EInotebook/scripts/Event.js	(revision 364)
@@ -0,0 +1,234 @@
+/**
+ * Represents an event.
+ * @param time {Time}
+ * @param incident {Incident}
+ * @param properties {Properties}
+ * @param properties {Evaluations}
+ */
+function Event(time, incident, properties, evaluations)
+{
+	//========== private static members ==========//
+	Event.invalidID = -1;
+	
+	//========== private static members ==========//
+	Event.id = (typeof Event.id == 'undefined') ? 0 : ++Event.id;
+	
+	//========== public constants ==========//
+	this.id = Event.id;
+	this.expandOptionID = "eventExpandOption" + this.id;
+	this.dataID = "eventData" + this.id;
+	this.eventHeaderID = "eventHeader" + this.id;
+	
+	//========== public read-only members ==========//
+	this.expanded = true;
+	this.highlighted = false;
+	this.time = time;
+	this.incident = incident;
+	this.evaluations = evaluations;
+	this.properties = properties;
+	
+	//========== public methods ==========//
+	this.html = html;
+	this.expandAction = expandAction;
+	this.highlight = highlight;
+	this.unhighlight = unhighlight;
+	this.focus = focus;
+	
+	//========== private methods ==========//
+	this.expandOptionSymbol = expandOptionSymbol;
+	this.headerHTML = headerHTML;
+	this.expandOptionHTML = expandOptionHTML;
+	this.refresh = refresh;
+	this.dataHTML = dataHTML;
+	this.expandAction = expandAction;
+	this.html = html;
+
+    // Color constants (TODO: assign incident numbers dynamically)
+    var incidentColor = {
+187: "#d8f0f3",        // PowderBlue
+188: "#dfecdf",        // DarkSeaGreen
+189: "#fff5cc",        // CornSilk
+190: "#ffe8e6",        // MistyRose
+191: "#ffffcc",       // Dark Orange
+181: "#d8f0f3" }
+
+	
+	//========== function definitions ===========//
+	/**
+	 * Returns the symbol for the expand/collapse option.
+	 * @return "+" or "-" depending on whether this event is collapsed or expanded.
+	 */
+	function expandOptionSymbol() 
+	{ 
+		return this.expanded ? "&ndash;" : "+"; 
+	}
+	 
+	/**
+	 * @return The rectangle containing the expand/collapse symbol, 
+	 *         incident time, incident number and
+	 *         incident title that this event belongs to.
+	 */
+	function headerHTML()
+	{
+        if (this.incident == undefined)
+        {
+            console.log(this.time.format());
+        }
+		return "<table class='eventHeader'>" +
+				"<tr class='eventHeader'>" +
+				"<td class='eventExpandOption'>" + this.expandOptionHTML() + "</td>" +
+				"<td class='eventTime'>Time: " + this.time.format() + "</td>" +
+				"<td class='eventNumber'>" + this.incident.number + "</td>" +
+				"<td class='eventTitle'>" + this.incident.title + "</td>" + 
+				"</tr>" +
+				"</table>";
+	}
+	
+	/**
+	 * @return The html of the expand/collapse symbol.
+	 */
+	function expandOptionHTML()
+	{
+        return "&nbsp;"
+/*  In 2019 we don't think we want expand option any longer
+		return "<button class='eventExpandButton' id='" + this.expandOptionID + 
+				"' onclick='events.get(" + 
+				this.id + ").expandAction();'>" + this.expandOptionSymbol() 
+				+ "</button>";
+*/
+	}
+
+	/**
+	 * Updates the expand option symbol and the visibility of the event data depending on 
+	 * whether this event is collapsed or expanded.
+	 */
+	function refresh()
+	{
+		events.doc.getElementById(this.dataID).innerHTML = 
+			this.expanded ? this.dataHTML() : "";
+			
+		// IF the event is highlighted THEN
+		if (this.highlighted)
+		{
+			this.highlight();
+		}
+		else
+		{
+			this.unhighlight();
+		}
+			
+		events.doc.getElementById(this.expandOptionID).innerHTML = 
+			this.expandOptionSymbol();
+	}
+	
+	/**
+	 * @return The html for the properties and the evaluations.
+	 */
+	function dataHTML()
+	{
+		return properties.html() + evaluations.html();
+	}
+
+	/**
+	 * Expands or collapses this event depending on whether this event is 
+	 * already expanded or collapsed.
+	 */
+	function expandAction() 
+	{ 
+		this.expanded = !this.expanded; 
+		this.refresh(); 
+	}
+
+	/**
+	 * @return The html representation of this event.
+	 */
+	function html()
+	{
+        //console.log("building html for event: ", this.eventHeaderID, incidentColor[this.incident.number]);
+
+		return "<table class='event'>" +
+			   "<tr>" +
+			   "<td class='eventHeader' style='background-color:" + incidentColor[this.incident.number] + "'" +
+               "id='" + this.eventHeaderID + "'>" + 
+			      this.headerHTML() + "</td>" +
+			   "</tr>" +
+			   "<tr>" + 
+			   "<td class='eventData' style='background-color:" + incidentColor[this.incident.number] + "' id='" + this.dataID + "'>" + 
+			   (this.expanded ? this.dataHTML() : "") + 
+			   "</td>" +
+			   "</tr>" +
+			   "</table>";
+	}
+	
+	/**
+	 * Scrolls the window to this Event.
+	 * @param window The window to scroll.
+	 */
+	function focus()
+	{
+		/* This method was discarded because it moved the scroll bar of the parent of
+		 * the given window in addition to the scroll bar of the given window..
+		var positionOfPound = window.location.indexOf("#");
+		var rootLocation = window.location.substring(0, positionOfPound);
+		window.location = rootLocation + "#" + eventAnchorName;
+		*/
+		events.win.scrollTo(0, absoluteTop(events.doc.getElementById(this.eventHeaderID)));
+	}
+	
+	/**
+	 * Highlights this Event.
+	 */
+	function highlight()
+	{
+		this.highlighted = true;
+		events.doc.getElementById(this.eventHeaderID).style.borderColor = "blue";
+		events.doc.getElementById(this.eventHeaderID).style.backgroundColor = "yellow";
+		
+		// IF this event is expanded THEN
+		if (this.expanded) 
+		{
+			events.doc.getElementById(this.dataID).style.border = "2px solid blue";
+		}
+		else
+		{
+			events.doc.getElementById(this.dataID).style.border = "none";
+		}
+		
+	}
+	
+	/**
+	 * Unhighlights this event.
+	 * @return
+	 */
+	function unhighlight()
+	{
+		this.highlighted = false;
+		events.doc.getElementById(this.eventHeaderID).style.backgroundColor = "white";
+		events.doc.getElementById(this.eventHeaderID).style.borderColor = "gainsboro";
+		events.doc.getElementById(this.eventHeaderID).style.color = "gray";
+		events.doc.getElementById(this.dataID).style.border = "0px solid red";
+		events.doc.getElementById(this.dataID).style.backgroundColor = "white";
+		events.doc.getElementById(this.dataID).style.color = "gray";
+	}
+	
+	/**
+	 * Returns the number of pixels from the top of the given element to the top
+	 * of the body element.
+	 * @param elem The element whose y-coordinate will be found.
+	 * @return The y-coordinate of the given element.
+	 */
+	function absoluteTop(elem)
+	{
+		var offset = elem.offsetTop;
+		var parent = elem.offsetParent;
+		
+		if (parent.tagName == "BODY")
+		{
+			return offset;
+		}
+		else
+		{
+			return offset + absoluteTop(parent);
+		}
+	}
+}
Index: trunk/webapps/EInotebook/scripts/Events.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Events.js	(revision 363)
+++ trunk/webapps/EInotebook/scripts/Events.js	(revision 363)
@@ -0,0 +1,345 @@
+/**
+ * Stores the each Event. Maintains each Event sorted ascending by time. 
+ * 
+ * You must set
+ *   1) events.doc to the document that events will be displayed
+ *   2) events.win to the window on which the document resides that will display the events
+ * before the 'html' method of Event, Evaluations, Evaluation, Properties, or Property 
+ * has been called.
+ */
+var events = new Array();
+
+//========== public members ==========//
+events.doc = null;
+events.win = null;
+
+//========== public methods ==========//
+events.get = events_get;
+events.getProperties = events_getProperties;
+events.getEvaluations = events_getEvaluations;
+events.getEvaluation = events_getEvaluation;
+events.collapseAllEvents = events_collapseAllEvents;
+events.collapseAllProperties = events_collapseAllProperties;
+events.collapseAllEvaluations = events_collapseAllEvaluations;
+events.expandAllEvents = events_expandAllEvents;
+events.expandAllProperties = events_expandAllProperties;
+events.expandAllEvaluations = events_expandAllEvaluations;
+events.expandAll = events_expandAll;
+events.collapseAll = events_collapseAll;
+events.add = events_add;
+events.getAllProperties = events_getAllProperties;
+events.getAllEvaluations = events_getAllEvaluations;
+events.getLastExecutedEvent = events_getLastExecutedEvent;
+
+//========== method definitions ==========//
+
+/**
+ * Searches through each Event to find an Event with the given id.
+ * @param id {Integer} The id of an Event.
+ * @return The Event with the given id.
+ */
+function events_get(id)
+{
+    var event;
+
+    // FOR each Event 
+    for (var i = 0; i < this.length; i++)
+    {
+    	// IF the Event's id matches THEN
+        if (this[i].id == id)
+        {
+        	// remember the Event
+            event = this[i];
+        }
+    }
+    
+    return event;
+}
+
+/**
+ * Searches through the Properties of each event to find the Property with the given id.
+ * @param id {Integer} The id of a Property.
+ * @return The Property with the given id.
+ */
+function events_getProperties(id)
+{
+    var property;
+    
+    // FOR each Event
+    for (var i = 0; i < this.length; i++)
+    {
+    	// IF the Event's id matches THEN
+        if (this[i].properties.id == id)
+        {
+        	// remember the Property
+            property = this[i].properties;
+        }
+    }
+    
+    return property;
+}
+
+/**
+ * Searches through each Evaluations of each event to find the Evaluations with the given id.
+ * @param id {Integer} The id of an Evaluations.
+ * @return The Evaluations with the given id.
+ */
+function events_getEvaluations(id)
+{
+    var evaluations;
+
+    // FOR each Event
+    for (var i = 0; i < this.length; i++)
+    {
+    	// IF this Evalutions's id matches THEN
+        if (this[i].evaluations.id == id)
+        {
+        	// remember the Evaluations
+            evaluations = this[i].evaluations;  
+        }
+    }
+    
+    return evaluations;
+}
+
+/**
+ * Searches through each Evaluation of each Evaluations of each Event to find the
+ * Evaluation of with the given id.
+ * @param id {Integer} The id of an Evaluation.
+ * @return The Evaluation of with the given id.
+ */
+function events_getEvaluation(id)
+{
+    var evaluation;
+
+    // FOR each Event
+    for (var i = 0; i < this.length; i++)
+    {
+    	// FOR each Evaluation
+        for (var j = 0; j < this[i].evaluations.evaluations.length; j++)
+        {
+        	// IF the Evaluation's id matches THEN
+            if (this[i].evaluations.evaluations[j].id == id)
+            {
+            	// remember the Evaluation
+                evaluation = this[i].evaluations.evaluations[j];
+            }
+        }
+    }
+    
+    return evaluation;  
+}
+
+/**
+ * Collapses each Event.
+ */
+function events_collapseAllEvents()
+{
+	// FOR each Event
+	for (var i = 0; i < this.length; i++)
+	{
+		// IF the Event is expanded THEN
+		if (this[i].expanded)
+		{
+			// collapse Event
+			this[i].expandAction();
+		}
+	}
+}
+
+/**
+ * Expands each event.
+ */
+function events_expandAllEvents()
+{
+	// FOR each Event
+	for (var i = 0; i < this.length; i++)
+	{
+		// IF the Event is collapsed
+		if (!this[i].expanded)
+		{
+			// expand Event
+			this[i].expandAction();
+		}
+	}
+}
+
+function events_collapseAllProperties()
+{
+	var list = this.getAllProperties();
+	
+	// FOR each Properties
+	for (var i = 0; i < list.length; i++)
+	{
+		// IF the Properties is expanded THEN
+		if (list[i].expanded)
+		{
+			// collapse the Properties
+			list[i].expandAction();
+		}
+	}
+}
+
+function events_collapseAllEvaluations()
+{
+	var list = this.getAllEvaluations();
+	
+	// FOR each Evaluations
+	for (var i = 0; i < list.length; i++)
+	{
+		// IF the Evaluations is expanded THEN
+		if (list[i].expanded)
+		{
+			// collapse the Evaluations
+			list[i].expandAction();
+		}
+	}	
+}
+
+function events_expandAllProperties()
+{
+	var list = this.getAllProperties();
+	
+	// FOR each Properties
+	for (var i = 0; i < list.length; i++)
+	{
+		// IF the Properties is collapsed THEN
+		if (!list[i].expanded)
+		{
+			// expand the Properties
+			list[i].expandAction();
+		}
+	}
+}
+
+function events_expandAllEvaluations()
+{
+	var list = this.getAllEvaluations();
+	
+	// FOR each Evaluations
+	for (var i = 0; i < list.length; i++)
+	{
+		// IF the Evaluations is collapsed THEN
+		if (!list[i].expanded)
+		{
+			// expand the Evaluations
+			list[i].expandAction();
+		}
+	}	
+}
+
+/**
+ * Adds an Event.
+ * @param event {Event} The Event to add.
+ */
+function events_add(event)
+{
+	// add event
+	events.push(event);
+	
+	// sort events in ascending order by time
+	events.sort(function (e1, e2) {
+		return e1.time.getSeconds() - e2.time.getSeconds();
+	});
+}
+
+/**
+ * Finds all of the Properties in each Event.
+ * @return The list of the Properties in each Event.
+ */
+function events_getAllProperties()
+{
+	var list = new Array();
+	
+	// FOR each event
+	for (var i = 0; i < this.length; i++)
+	{
+		// add properties to list
+		list.push(this[i].properties);
+	}
+	
+	return list;
+}
+
+/**
+ * Finds all of the Evaluations in each Event.
+ * @return The list of the Evaluations in each Event.
+ */
+function events_getAllEvaluations()
+{
+	var list = new Array();
+	
+	// FOR each event
+	for (var i = 0; i < this.length; i++)
+	{
+		// add evaluations to list
+		list.push(this[i].evaluations);
+	}
+	
+	return list;
+}
+
+/**
+ * Collapses each Event, Properties, and Evaluations.
+ */
+function events_collapseAll()
+{
+	events.collapseAllProperties(); 
+	events.collapseAllEvaluations(); 
+	events.collapseAllEvents();	
+}
+
+/**
+ * Expands each Event, Properties, and Evaluations.
+ * @return
+ */
+function events_expandAll()
+{
+	events.expandAllProperties(); 
+	events.expandAllEvaluations(); 
+	events.expandAllEvents();	
+}
+
+/**
+ * Finds the Event that was last executed by based on given time.
+ * @param time The time in seconds.
+ * @return The last execute event if at least one event has executed; otherwise, null.
+ */
+function events_getLastExecutedEvent(time)
+{
+	var event = null;
+	if (this.length == 0)
+    {
+        console.log("Error: event list is empty in getLastExecutedEvent");
+        return;
+    }
+	// IF there is only one event and it has been executed THEN
+	if (this.length == 1 && this[0].time.getSeconds() <= time)
+	{
+		event = this[0];
+	}
+	else
+	{
+		//NOTE: remember that the events are maintained in ascending order by time
+		
+		// FOR each Event
+		for (var i = 0; i < this.length - 1; i++)
+		{
+			// IF the Event has executed and no subsequent event has executed THEN
+			if (this[i].time.getSeconds() <= time &&
+			    this[i + 1].time.getSeconds() > time)
+			{
+				event = this[i];
+			}
+		}
+		
+		// IF the last event has executed THEN
+		if (this[this.length - 1].time.getSeconds() <= time)
+		{
+			event = this[this.length - 1];
+		}	
+	}
+	
+	return event;
+}
+
Index: trunk/webapps/EInotebook/scripts/LoadEvents.js
===================================================================
--- trunk/webapps/EInotebook/scripts/LoadEvents.js	(revision 368)
+++ trunk/webapps/EInotebook/scripts/LoadEvents.js	(revision 368)
@@ -0,0 +1,155 @@
+/* author: jdalbey    date: 4/10/2019 */
+
+// Parse the entire Incident XML Script file 
+// Extract the Incidents and Events and create lists of each
+function parseXml(response)
+{
+    // Create a parser and grab the high level tag we're interested in
+    var parser = new DOMParser();
+    var xmlDoc = parser.parseFromString(response,"text/xml");
+    var eventTags = xmlDoc.getElementsByTagName("SCRIPT_EVENT");
+    console.log("parsing incident xml file");
+    // Process each SCRIPT_EVENT tag
+    for (var i = 0; i < eventTags.length; i++)
+    {
+        var currEvt = eventTags[i];
+        // local variable declarations
+        var timeFields; var evtTime; var incidentNum; var incidentTitle; var cadProp; var telProp;
+        var proparray = new Array();
+        var evalarray = new Array();
+        // Process all the children of one event
+        for (var child = 1; child < currEvt.childNodes.length; child++)
+        {
+            // Ignore undefined nodes
+            if (currEvt.childNodes[child].localName != undefined)
+            {
+                // Determine the tag type and dispatch it for further processing
+                switch(currEvt.childNodes[child].localName)
+                {
+                    case "TIME_INDEX": 
+                        timeFields = currEvt.childNodes[child].textContent.split(":"); 
+                        evtTime = new Time(Number(timeFields[0]), Number(timeFields[1]), Number(timeFields[2]));
+                        break;
+                    case "INCIDENT":
+                        incidentNum = Number(currEvt.childNodes[child].attributes["LogNum"].value);
+                        incidentTitle =  currEvt.childNodes[child].textContent;
+                        break;
+                    case "GENERAL_INFO":  
+                        /* This tag identifies a new incident.  As long as it appears before any
+                        other tags, we can use it to create a new incident. (The alternative is to
+                        have a separate function that parses xml to extract incidents before
+                        we load events.)  Creating an event (below) requires that the incident has already
+                        been created. */
+                        var desc = currEvt.childNodes[child].getElementsByTagName("TEXT")[0].textContent;
+                        var theIncident = new Incident(evtTime, incidentNum, incidentTitle, desc);
+                        incidents.add(theIncident);
+                        break;
+                    case "CAD_DATA": 
+                        var caddata = parseCAD(currEvt.childNodes[child]); 
+                        if (caddata.length > 0)
+                        {
+                            cadProp = new Property("CHP CAD", caddata ); 
+                            proparray.push(cadProp);
+                        }
+                        break;
+                    case "TELEPHONE": 
+                        telProp = new Evaluation("Telephone Conversation", 
+                                 parseTelephone(currEvt.childNodes[child]) );  
+                        evalarray.push(telProp);
+                        break;
+                    case "CHP_RADIO": 
+                        var chpradio = parseCHPradio(currEvt.childNodes[child]); 
+                        if (chpradio.length > 0)
+                        {
+                            cadProp = new Property("CHP RADIO", chpradio ); 
+                            proparray.push(cadProp);
+                        }
+                        break;
+                    case "TMT_RADIO":  break;
+                    case "MAINTENANCE_RADIO": break;
+                    // case *_EVALUATION: break;
+
+                }
+            }
+        }
+        //console.log(evtTime.format(), incidentNum, proparray.length, evalarray.length);
+        // Ignore Media Log incident and empty nodes
+        if (incidentNum != undefined && incidentNum != 100)
+        {
+          // Create new event with fields obtained from xml file
+          events.add(new Event(evtTime, incidents.get(incidentNum), 
+                new Properties(proparray), 
+                new Evaluations(evalarray)) );
+        }
+    }
+}
+
+function parseCAD(element)
+{
+    var result = new Array();
+    var details = element.getElementsByTagName("DETAIL");
+    if (details.length > 0)
+    {
+        for (detail in details)
+        {
+            if (details[detail].textContent != undefined)
+            {                
+                result.push("Detail:");
+                result.push(details[detail].textContent);
+            }
+        }
+    }
+    return result;
+}
+function parseTelephone(element)
+{
+    var result = new Array();
+    for (var child = 1; child < element.childNodes.length; child++)
+    {
+        if (element.childNodes[child].localName != undefined)
+        {
+            if (element.childNodes[child].localName == "INSTRUCTOR")
+            {
+                result.push(element.childNodes[child].attributes["Role"].value);
+            }
+            else
+            {
+                result.push(element.childNodes[child].localName);   
+            }
+            result.push(element.childNodes[child].textContent);
+        }
+    }
+    return result;
+}
+function parseCHPradio(element)
+{
+    var result = new Array();
+    var dialog = element.getElementsByTagName("LINE");
+    if (dialog.length > 0)
+    {
+        for (line in dialog)
+        {
+            if (dialog[line].textContent != undefined)
+            {                
+                result.push(dialog[line].attributes["Role"].value);
+                result.push(dialog[line].textContent);
+            }
+        }
+    }
+    return result;
+}
+
+// MAIN
+console.log("starting LoadEvents");
+try {
+    // the script must be located where accessible by the web server
+    var scriptFilename = "incident_script.xml";
+    console.log("Attempting to load", scriptFilename);
+    // Now load the Incident Script and go parse it
+    loadJSON(scriptFilename, parseXml)
+
+    } catch(e) {
+        console.log("Error attempt to parse incident script "+response)
+    }
+
+
Index: trunk/webapps/EInotebook/scripts/Property.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Property.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Property.js	(revision 359)
@@ -0,0 +1,48 @@
+/**
+ * Represents a property of an event. Does not represent an evaluation.
+ * @param type {String} Ex: "CHP Radio"
+ * @param data Array(text) OR Array(label1, text1, label2, text2, ...)
+ */
+function Property(type, data)
+{
+	//========== public read-only members ==========//
+	this.type = type;
+	this.data = data;
+	
+	//========== public methods ==========//
+	this.html = html;
+	
+	//========== method definitions ==========//
+	/**
+	 * @return The html representation of this property.
+	 */
+	function html()
+	{
+		var text = "<table class='property'>" +
+	   	   		   "<tr>" +
+	   	   		   "<th class='propertyType' colspace='" + 
+	   	   		   (this.data.length == 1 ? 1 : 2) + "'>" + type + "</th>" +
+	   	   		   "</tr>";
+		
+		if (this.data.length == 1)
+		{
+			text += "<tr>" +
+				    "<td class='propertyContent'>" + this.data[0] + "</td>" +
+				    "</tr>";
+		}
+		else
+		{
+			for (i=0;i<this.data.length;i+=2)
+			{
+				text += "<tr>" +
+					   "<td class='propertyLabel'>" + this.data[i] + "</td>" +
+					   "<td class='propertyValue'>" + this.data[i+1] + "</td>" +
+					   "</tr>";
+			}
+		}
+		
+		text += "</table>";
+		
+		return text;
+	}
+}
Index: trunk/webapps/EInotebook/scripts/Evaluation.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Evaluation.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Evaluation.js	(revision 359)
@@ -0,0 +1,149 @@
+/**
+ * Represents an evaluation (e.g., a "CMS evaluation").
+ * @param type {String} Ex: "CMS" or "ATMS" ...
+ * @param data Array(label1, text1, label2, text2, ...)
+ */
+function Evaluation(type, data)
+{
+	//========== private static members ==========//
+	Evaluation.id = (typeof Evaluation.id == 'undefined') ? 0 : ++Evaluation.id;
+	
+	//========== public constants ==========//
+	this.id = Evaluation.id;
+	this.ratingGroupName = "evaluationGroup" + this.id;	
+	this.textID = "evaluationText" + this.id;
+	this.type = type;
+	this.data = data;
+	
+	//========== public read-only members ==========//
+	this.text = "";
+	this.rating = -1;
+	
+	//========== public methods ==========//
+	this.html = html;
+	this.recordText = recordText; 
+	this.recordRating = recordRating;
+	
+	//========== private methods ==========//
+	this.smallScaleForm = smallScaleForm;
+	this.evaluationForm = evaluationForm;
+	
+	//========== function definitions ==========//
+	/**
+	 * @return The html representation of this evaluation.
+	 */
+	function html()
+	{
+		var text = "<table class='evaluation'>" +
+	   	   		   "<tr>" +
+	   	   		   "<th class='evaluationType' colspan='2'>" + type + " Evalution</th>" +
+	   	   		   "</tr>" +
+	   	   		   "<tr>" +
+	   	   		   "<td><table class='evaluationInner2'>";
+		
+		for (i = 0; i < this.data.length; i += 2)
+		{
+			text += "<tr>" +
+				   "<td class='evaluationLabel'>" + this.data[i] + "</td>" +
+				   "<td class='evaluationCriteria'>" + this.data[i+1] + "</td>" +
+				   "</tr>";
+		}
+		
+		text += "<tr><td colspan='2' class='evaluationResponse'>" +
+			"<input onchange='events.getEvaluation(" + this.id + ").recordText();'" +
+			" id='" + this.textID + "' type='text' value='" + this.text + "'" +
+			" class='evaluationResponseText' />" 
+			+ "</td>";
+		
+		text += "</table></td>" +
+   		   		"<td class='evaluationScale'>" + this.evaluationForm() + "</td>" +
+	   		    "</tr>" +
+   		   		"</table>";
+		
+		return text;
+	}
+	
+	/**
+	 * Stores the rating given by the evaluation scale radio button form.
+	 */
+	function recordRating() 
+	{ 
+		// list of radio buttons
+		var radioButtons;
+		
+		// get list of radio buttons
+		radioButtons = events.doc.getElementsByName(this.ratingGroupName);
+		
+		// FOR each radio button
+		for (var i = 0; i < radioButtons.length; i++)
+		{
+			// IF the radio button is checked THEN
+			if (radioButtons[i].checked)
+			{
+				// save rating
+				this.rating = radioButtons[i].value;
+			}
+		}
+	}
+
+	/**
+	 * Stores the text in the written response text box.
+	 */
+	function recordText() 
+	{ 
+		this.text = events.doc.getElementById(this.textID).value; 
+	}
+	
+	/**
+	 * @return The html for appropriate evaluation form for grading.
+	 */
+	function evaluationForm()
+	{
+		return this.smallScaleForm();
+	}
+	
+	/**
+	 * @return The html for a 1-5 grading scale.
+	 */
+	function smallScaleForm()
+	{
+		return "<form>" +
+			   "<table align='right' class='evaluationScale'>" +
+			   "<tr>" +
+			   "<td class='eventRadioButtonSmallScale'>Best</td>" +
+			   "<td class='eventRadioButtonSmallScale'>Good</td>" +
+			   "<td class='eventRadioButtonSmallScale'>Average</td>" +
+			   "<td class='eventRadioButtonSmallScale'>Poor</td>" +
+			   "<td class='eventRadioButtonSmallScale'>Worst</td>" +
+			   "</tr>" +
+			   "<tr>" +
+			   "<td align='center'><input type='radio' " + 
+			   		(this.rating == 1 ? "checked='true'" : "") + 
+			   		" onchange='events.getEvaluation(" + this.id + 
+			   		").recordRating()' name='" + this.ratingGroupName + 
+			   		"' value='1'></td>" +
+			   "<td align='center'><input type='radio' " + 
+			   		(this.rating == 2 ? "checked='true'" : "") + 
+			   		" onchange='events.getEvaluation(" + this.id + 
+			   		").recordRating()' name='" + this.ratingGroupName + 
+			   		"' value='2'></td>" +
+			   "<td align='center'><input type='radio' " + 
+			   		(this.rating == 3 ? "checked='true'" : "") + 
+			   		" onchange='events.getEvaluation(" + this.id + 
+			   		").recordRating()' name='" + this.ratingGroupName + 
+			   		"' value='3'></td>" +
+			   "<td align='center'><input type='radio' " + 
+			   		(this.rating == 4 ? "checked='true'" : "") + 
+			   		" onchange='events.getEvaluation(" + this.id + 
+			   		").recordRating()' name='" + this.ratingGroupName + 
+			   		"' value='4'></td>" +
+			   "<td align='center'><input type='radio' " + 
+			   		(this.rating == 5 ? "checked='true'" : "") + 
+			   		" onchange='events.getEvaluation(" + this.id + 
+			   		").recordRating()' name='" + this.ratingGroupName + 
+			   		"' value='5'></td>" +
+			   "</tr>" +
+			   "</table>"  +
+			   "</form>";
+	}
+}
Index: trunk/webapps/EInotebook/scripts/Evaluations.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Evaluations.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Evaluations.js	(revision 359)
@@ -0,0 +1,129 @@
+/**
+ * Represents a collection of evaluations that belong to a single event.
+ * @param evaluations {Array of Evaluation} The list of Evaluation to be grouped together.
+ */
+function Evaluations(evaluations)
+{
+	//========== private static members ==========//
+	Evaluations.id = (typeof Evaluations.id == 'undefined') ? 0 : ++Evaluations.id;
+	
+	//========== public constants ==========//
+	this.evaluations = evaluations;
+	this.id = Evaluations.id;
+	this.expandOptionID = "evalutionsExpandOption" + this.id;
+	this.evaluationsID = "evaluations" + this.id;
+	
+	//========== public read-only members ==========//
+	this.expanded = true;
+
+	//========== public methods ==========//
+	this.html = html;
+	this.expandAction = expandAction;
+	
+	//========== private methods ==========//
+	this.expandOption = expandOption;
+	this.expandOptionSymbol = expandOptionSymbol;
+	this.refresh = refresh;
+	this.evaluationsHTML = evaluationsHTML;
+	
+	//========== function definitions ==========//
+	/**
+	 * @return The html for the "+" or "-" button that expands or collapses these
+	 *         evaluations when clicked.
+	 */
+	function expandOption() 
+	{ 
+		return "<button class='evaluationsExpandButton' id='" + 
+				this.expandOptionID + "' onclick='events.getEvaluations(" 
+				+ this.id + ").expandAction();'>" + 
+				this.expandOptionSymbol() + "</button>";
+	}
+	
+	/**
+	 * @return The "-" or "-" symbol for the expand/collapse button.
+	 */
+	function expandOptionSymbol() 
+	{ 
+		return this.expanded == true ? "&ndash;" : "+"; 
+	}
+	
+	/**
+	 * Updates the expand/collapse symbol and whether the evaluations are visible.
+	 */
+	function refresh() 
+	{
+		// IF the expandOption element exists THEN
+		if (events.doc.getElementById(this.expandOptionID))
+		{
+			events.doc.getElementById(this.expandOptionID).innerHTML = 
+				this.expandOptionSymbol();
+		}
+		
+		// IF the evaluations element exists THEN
+		if (events.doc.getElementById(this.evaluationsID))
+		{
+			events.doc.getElementById(this.evaluationsID).innerHTML = 
+			this.expanded ? this.evaluationsHTML() : "";
+		}
+	}
+	
+	/**
+	 * @return The html for the evaluations.
+	 */
+	function evaluationsHTML()
+	{
+		var html = "<table class='evaluationsInner'>";
+		
+		// FOR each evaluation
+		for (var i = 0; i < this.evaluations.length; i++)
+		{
+			// add evaluation html
+			html += "<tr>" +
+					"<td>" + this.evaluations[i].html() + "</td>" +
+					"</tr>";
+		}
+		
+		html += "</table>";
+		
+		return html;
+	}
+
+	/**
+	 * Expands the evaluations if they are collapsed.
+	 * Collapses the evaluations if they are expanded.
+	 */
+	function expandAction() 
+	{ 
+		this.expanded = !this.expanded; this.refresh(); 
+	}
+	
+	/**
+	 * @return The html representation of these evaluations.
+	 */
+	function html()
+	{
+		var text = "";
+		
+		// IF there are any evaluations THEN
+		if (this.evaluations.length > 0)
+		{
+			text = "<table class='evaluationsOuter'>";
+/* In 2019 we no longer care to expand "Properties" or "Evaluations" */
+/*			
+			text += "<tr>" +
+					"<td class='evaluationsExpandOption'>" + this.expandOption() + 
+					" Evaluations</td>" +
+					"</tr>";
+*/			
+				text += "<tr>" +
+						"<td class='evaluations' id='" + this.evaluationsID + "'>" + 
+						(this.expanded ? this.evaluationsHTML() : "") + "</td>" +
+						"</tr>";
+			
+			text +="</table>";
+		}
+		
+		return text;
+	}
+	
+}
Index: trunk/webapps/EInotebook/scripts/PopulateIncidents.js
===================================================================
--- trunk/webapps/EInotebook/scripts/PopulateIncidents.js	(revision 363)
+++ trunk/webapps/EInotebook/scripts/PopulateIncidents.js	(revision 363)
@@ -0,0 +1,8 @@
+//========== ADD INCIDENT DATA ==========//
+incidents.add(new Incident(new Time(0, 0, 0), 187, "Stalled DOT/Traffic Collision", "This is a stalled DOT truck on SB 55 overpass at 405. The truck is hit by a vehicle, the vehicle is vaulted over the railing, and a 6 vehicle collision occurs below in the NB 405 lanes. The #2 and 3 lanes are blocked on SB 55 and the #1, 2, and 3 lanes are blocked on NB 405. The driver of the truck is uninjured, although there are 4 fatals, 2 major injured, and 4 minor injured in the collision below. MAIT is called to the scene to investigate the collision and a Sig Alert is declared."));
+incidents.add(new Incident(new Time(0, 8, 0), 188, "Tomato Truck Spill/Fire", "This is a two vehicle collision between a tomato truck and a car. The truck spills tomatoes across lanes #3,4,5 right lanes plus shoulder of NB 5 just north of Lake Forest Drive. There is one 11-44 and 2 major injured. Ambulance, fire, paramedics, additional units, Maintenance/coroner, and TMT are requested on this incident"));
+incidents.add(new Incident(new Time(1, 23, 0), 189, "Suicide Attempt/Bomb Threat", "This is a suicide attempt and a bomb threat. A man with a bomb strapped to him is threatening to blow up the interchange at I-405 and Jeffrey Road. The freeway interchange is shut down completely, causing major backup in both directions on I-405. The man is eventually apprehended after attempting to explode the bomb. The PD, additional units, sign trucks, negotiator, and the bomb squad are sent to the scene to assist."));
+incidents.add(new Incident(new Time(1, 51, 0), 190, "Tanker Truck vs. Car/Spill", "Incident Description - This is a collision involving a tanker truck and a car that block the #3 and 4 lanes on NB I-5 just north of Main Street. There are 2 minor injured and 1 major injured. Liquid is leaking out of the tanker truck which is identified as milk. The leak is plugged and the fire department sprays the milk down the drain. The fire department, ambulance, additional units, TMT, a big rig tow, and a rotational tow are sent to the scene."));
+incidents.add(new Incident(new Time(2, 17, 0), 191, "RV Fire", "This is an RV fire on the shoulder southbound 73 just north of Bear/Baker Street. There are two injured victims who were pulled from the RV by passers-by. The #3 is closed to fight the fire. The fire department, paramedics, an extra unit, sign truck/s, and ambulance are sent to the scene."));
+// Practice Incident
+incidents.add(new Incident(new Time(0,0,0), 181, "Overturned Hay Truck", "This is a three-vehicle collision involving a hay truck and two cars blocking the #1, 2, and 3 lanes on NB 405 just south of MacArthur Boulevard. The truck spills hay over the #2 and 3 lanes. There is one 11-44 and two minor injured. Ambulance, fire, paramedics, additional units, Maintenance, and coroner are requested on this incident."));
Index: trunk/webapps/EInotebook/scripts/Properties.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Properties.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Properties.js	(revision 359)
@@ -0,0 +1,127 @@
+/**
+ * Represents a collection of properties that belong to a single event.
+ * @param properties {Array of Property} The list of Property to be grouped together.
+ */
+function Properties(properties)
+{
+	//========== private static members ==========//
+	Properties.id = (typeof Properties.id == 'undefined') ? 0 : ++Properties.id;
+	
+	//=========== public constants ==========//
+	this.properties = properties;
+	this.id = Properties.id;
+	this.expandOptionID = "propertiesExpandOption" + this.id;
+	this.propertiesID = "properties" + this.id;
+	
+	//========== public read-only members ==========//
+	this.expanded = true;
+
+	//========== public methods ==========//
+	this.html = html;
+	this.expandAction = expandAction;
+	
+	//========== private methods ==========//
+	this.expandOption = expandOption;
+	this.expandOptionSymbol = expandOptionSymbol;
+	this.refresh = refresh;
+	this.propertiesHTML = propertiesHTML;
+	
+	//========== method definitions ==========//
+	
+	/**
+	 * @return The html for the "+" or "-" button that expands/collapses the properties.
+	 */
+	function expandOption() 
+	{ 
+        return "&nbsp;"
+/*  In 2019 we don't think we want expand option any longer
+		return "<button class='propertiesExpandButton' id='" + 
+				this.expandOptionID + "' onclick='events.getProperties(" 
+				+ this.id + ").expandAction();'>" + this.expandOptionSymbol() +
+				"</button>";
+*/
+	}
+	
+	/**
+	 * If the list of properties are expanded, then collapses the list of properties.
+	 * If the list of properties are collapsed, then expands the list of properties.
+	 */
+	function expandAction() 
+	{ 
+		this.expanded = !this.expanded; this.refresh(); 
+	}
+	
+	/**
+	 * @return Returns the "+" or "-" symbol for the expand/collapse button.
+	 */
+	function expandOptionSymbol() 
+	{ 
+		return this.expanded == true ? "&ndash;" : "+"; 
+	}
+	
+	/**
+	 * Displays the correct symbol for the expand/collapse button.
+	 * Displays or hides the list of properties depending on the expand/collapse state.
+	 */
+	function refresh() 
+	{
+		// IF the expandOption element exists THEN
+		if (events.doc.getElementById(this.expandOptionID))
+		{
+			events.doc.getElementById(this.expandOptionID).innerHTML = this.expandOptionSymbol();
+		}
+		
+		// IF the properties element exists THEN
+		if (events.doc.getElementById(this.propertiesID))
+		{
+			events.doc.getElementById(this.propertiesID).innerHTML = this.expanded ? this.propertiesHTML() : "";
+		}
+	}
+	
+	/**
+	 * @return The html for the list of properties.
+	 */
+	function propertiesHTML()
+	{
+		var html = "<table>";
+		
+		for (var i = 0; i < this.properties.length; i++)
+		{
+			html += "<tr>" +
+					"<td>" + this.properties[i].html() + "</td>" +
+					"</tr>";
+		}
+		
+		html += "</table>";
+		
+		return html;
+	};
+	
+	/**
+	 * @return The html representation of this class.
+	 */
+	function html()
+	{
+		var text = "";
+		
+		if (this.properties.length > 0)
+		{
+			text = "<table>";
+/* In 2019 we no longer care to expand "Properties" or "Evaluations" */
+/*			text += "<tr>" +
+					"<td class='propertiesExpandOption'>" + this.expandOption() + 
+					" Properties</td>" +
+					"</tr>";
+*/
+				text += "<tr>" +
+						"<td class='properties' id='" + this.propertiesID + "'>" + 
+					    (this.expanded ? this.propertiesHTML() : "") + "</td>" +
+						"</tr>";
+			
+			text +="</table>";
+		}
+		
+		return text;
+	}
+	
+}
Index: trunk/webapps/EInotebook/scripts/cookies.js
===================================================================
--- trunk/webapps/EInotebook/scripts/cookies.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/cookies.js	(revision 359)
@@ -0,0 +1,72 @@
+/**
+ * Creates a new cookie if the given cookie name does not exist.
+ * Sets a the cookie with the given name if it already exists.
+ * The cookie that is created or set expires at the end of the session.
+ * @param name {String} The name of the cookie.
+ * @param value {Any} The value of the cookie.
+ */
+function setCookie(name, value)
+{
+	createCookie(name, value);
+}
+
+/**
+ * Creates a new cookie if the given cookie name does not exist.
+ * Sets a the cookie with the given name if it already exists.
+ * If days is not given, the cookie expires when the session ends.
+ * @param name {String} The name of the cookie.
+ * @param value {Any} The value of the cookie.
+ * @param days {Integer} (Optional) The number of days before the cookie expires.
+ */
+function createCookie(name, value, days) 
+{
+	if (days) 
+	{
+		var date = new Date();
+		date.setTime(date.getTime()+(days*24*60*60*1000));
+		var expires = "; expires="+date.toGMTString();
+	}
+	else 
+	{
+		var expires = "";
+	}
+	
+	document.cookie = name+"="+value+expires+"; path=/";
+	
+
+}
+
+/**
+ * Reads the value of the cookie with the given name.
+ * @param name The name of the cookie to be read.
+ * @return The value of the cookie with the given name.
+ */
+function readCookie(name) 
+{
+	var nameEQ = name + "=";
+	var ca = document.cookie.split(';');
+	
+	for(var i = 0; i < ca.length; i++) 
+	{
+		var c = ca[i];
+		while (c.charAt(0) == ' ')
+		{
+			c = c.substring(1,c.length);
+		}
+		if (c.indexOf(nameEQ) == 0)
+		{
+			return c.substring(nameEQ.length,c.length);	
+		}
+	}
+	
+	return null;
+}
+
+/**
+ * Deletes the cookie with the given name.
+ * @param name The name of the cookie to delete.
+ */
+function eraseCookie(name) 
+{
+	createCookie(name, "", -1);
+}
Index: trunk/webapps/EInotebook/scripts/Incident.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Incident.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Incident.js	(revision 359)
@@ -0,0 +1,103 @@
+/**
+ * Represents an incident. (Does not contain events. Event links itself to Incident.)
+ * @param time {Time}
+ * @param numbers {Number} 
+ * @param title {String}
+ * @param summary {String}
+ */
+function Incident(time, number, title, summary)
+{	
+	//========== public read-only members ==========//
+	this.time = time;
+	this.number = number;
+	this.title = title;
+	this.summary = summary;
+	this.expanded = true;
+	
+	//========== public methods ==========//
+	this.html = html;
+	this.expandAction = expandAction;
+	
+	//========== private methods ==========//
+	this.formatHeader = formatHeader;
+	this.expandOption = expandOption;
+	this.expandOptionSymbol = expandOptionSymbol;
+	
+	/**
+	 * @return The html representation of this incident;
+	 */
+	function html()
+	{
+		return "<table class='incident'>" +
+			   "<tr>" +
+			   "<td class='incidentHeader'>" + this.formatHeader() + "</td>" +
+			   "</tr>" +
+			   "<tr>" + 
+			   "<td class='incidentSummary' id='summary" + this.number + "'>" + 
+			     (this.expanded ? this.summary : "") + "</td>" +
+			   "</tr>" + 
+			   "</table>";
+	}
+	
+
+	/**
+	 * @return The html of the rectangle that contains the expand/collapse symbol, time, 
+	 *         incident number
+	 *         and incident title.
+	 */
+	function formatHeader()
+	{
+		return "<table class='incidentHeader'>" +
+				"<tr class='incidentHeader'>" +
+				"<td class='incidentExpandOption'>" + this.expandOption() + "</td>" +
+				"<td class='incidentTime'>Time: " + this.time.format() + "</td>" +
+				"<td class='incidentNumber'>" + this.number + "</td>" +
+				"<td class='incidentTitle'>" + this.title + "</td>" + 
+				"</tr>" +
+				"</table>";
+	}
+	
+	/**
+	 * @return The html that for the + or - symbol that expands or collapses the incident.
+	 */
+	function expandOption()
+	{
+		return "<button class='incidentExpandButton' " +
+				"id='expandOption" + this.number + "' onclick='incidents.get(" + 
+				this.number + ").expandAction()'>" + this.expandOptionSymbol() + 
+				"</button>";
+	}
+	
+	/**
+	 * Returns the symbol for the expand option.
+	 * @return Either "+" or "-" depending on whether this incidents is collapsed or 
+	 *         expanded.
+	 */
+	function expandOptionSymbol()
+	{
+		return this.expanded == true ? "&ndash;" : "+";
+	}
+	
+	/**
+	 * Performs the action of clicking on the + or - symbol that expands or collapses 
+	 * the incident.
+	 */
+	function expandAction()
+	{
+		if (this.expanded)
+		{
+			incidents.doc.getElementById("summary" + this.number).innerHTML = "";
+			incidents.doc.getElementById("expandOption" + this.number).innerHTML = "+";
+		}
+		else
+		{
+			incidents.doc.getElementById("summary" + this.number).innerHTML = 
+				this.summary;
+			incidents.doc.getElementById("expandOption" + this.number).innerHTML = 
+				"&ndash;";
+		}
+		
+		this.expanded = !this.expanded;
+		
+	}
+}
Index: trunk/webapps/EInotebook/scripts/PopulateEvents.js
===================================================================
--- trunk/webapps/EInotebook/scripts/PopulateEvents.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/PopulateEvents.js	(revision 359)
@@ -0,0 +1,410 @@
+//========== populate events OBSOLETE, replaced by LoadEvents ==========/
+events.add(
+		new Event(
+				new Time(0, 0, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("Telephone Conversation:", new Array("Student Action:", "Places a call to CHP Dispatch to notify of stalled DOT vehicle.")),
+								new Property("Maintenance Radio:", new Array("Dispatch, this is xxx. I'm on south 55 at the 405. My truck is out of service here, stuck in the lane. I need CHP assistance ASAP!"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 1, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP CAD:", new Array("Detail:", "STALLED DOT SB SR-55 AT I-405"))
+				
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 2, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "14-14 Santa Lucia", "Field:", "Santa Lucia 14-14 go ahead", "Dispatch:", "14-14 Santa Lucia 11-25 stalled DOT truck southbound 55 overpass at 405.", "Field:", "Santa Lucia 14-14 10-4. Enroute from 55 at Dyer Rd.", "Dispatch:", "14-14 Santa Lucia copies enroute from 55 at Dyer Rd."))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("ATMS", new Array("Expected Action", "Operator viewing cameras in incident area.")),
+								new Evaluation("CAD", new Array("Expected Action", "Operator should be verifying incident 187 on CAD"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 3, 0),
+				incidents.get(187),
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "14-14 Santa Lucia", "Field:", "Santa Lucia 14-14 go ahead", "Dispatch:", "14-14 Santa Lucia. Cellular 911 caller reports stalled vehicle on the 55/405 overpass was hit and a vehicle was pushed over the side. Can you verify?", "Field:", "Santa Lucia, negative, I'm one minute away.", "Dispatch:", "14-14 Santa Lucia 10-4. One minute away.")),
+								new Property("CHP CAD", new Array("Detail:", "CELLULAR 911 RPT DOT HT, 2ND VEH OVER THE SIDE, UNVERIFIED"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 3, 30),
+				incidents.get(187),
+				new Properties(
+						new Array(
+								new Property("CHP CAD", new Array("Detail:", "DUPLICATE CALL"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 4, 30),
+				incidents.get(187),
+				new Properties(
+						new Array(
+								new Property("CHP CAD", new Array("Detail:", "DUPLICATE CALL"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 5, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-14", "Dispatch:", "14-14 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-14 10-97 11-83 11-25. It appears the DOT truck was hit by a vehicle and over the side landed in the northbound 405 lanes below. A major collision occurred below. Request 11-41 Code 2 and a couple units to assist.", "Dispatch:", "14-14 Santa Lucia 10-4 10-97 11-83 11-25. DOT truck was hit by vehicle and the vehicle over the side landed in the northbound 405 lanes below. A large collision occurred below. Request 11-41 Code 2 and a couple units to assist.")),
+								new Property("CHP CAD:", new Array("Detail:", "DOT HIT BY VEH, VEH OVER SIDE.", "Detail:", "2ND VEH LANDED NB 405 BELOW, LG COLLISION OCCUR. REQ 2 1141 CODE 2 UNITS ASSIST"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("CMS", new Array("Target CMS:", "72 - SB 55 @ WARNER AVE", "Sample Message:", "ACCIDENT AHEAD / AT 405 OVERPASS")),
+								new Evaluation("Facilitator", new Array("Expected Action:", "Should be responding to incident 187", "Expected Action", "Should be monitoring ATMS operator"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 5, 30),
+				incidents.get(187),
+				new Properties(
+						new Array(
+								new Property("CHP CAD", new Array("Detail:", "DUPLICATE CALL"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 6, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "14-17, 14-9 Santa Lucia", "Field_1", "Santa Lucia 14-17 go ahead.", "Field_2", "Santa Lucia 14-9 go ahead.", "Dispatch:", "14-17, 14-9 assist 14-14 11-83 11-25 northbound 405 at the 55 interchange.", "Field_1", "Santa Lucia 14-17 copies. Enroute from 405 just south of Macarthur Boulevard.", "Field_2", "14-9 10-4, enroute from 55 at Edinger Avenue.", "Dispatch:", "Santa Lucia copies 14-17 enroute from 405 just south of Macarthur and 14-9 enroute from 55 at Edinger.")),
+								new Property("CHP CAD:", new Array("Detail:", "14-17 14-9 ENRT ASSIST 1183 1125"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 6, 30),
+				incidents.get(187),
+				new Properties(
+						new Array(
+								new Property("CHP CAD", new Array("Detail:", "DUPLICATE CALL"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 7, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-14", "Dispatch:", "14-14 Santa Lucia go ahead.", "Field:", "Santa Lucia, the driver of the DOT truck is uninjured but the #2 and #3 lanes are now blocked on southbound 55. I'm moving down to the 405 lanes to assess the damage.", "Dispatch:", "14-14 Santa-Lucia 10-4. Driver of the DOT truck is uninjured. The #2 and #3 lanes are now blocked on southbound 55. Moving down to the 405 lanes to assess the damage.")),
+								new Property("CHP CAD:", new Array("Detail:", "DOT DRIVER UNINJURED, #2,3 LNS BLCKD SB 55.", "Detail:", "14-14 MVNG TO 405 ASSESS DMG"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("CMS", new Array("Target CMS:", "72 - SB 55 @ WARNER AVE", "Sample Message:", "ACCIDENT AHEAD / AT 405 OVERPASS / 2 RT LANES BLKD")),
+								new Evaluation("Activity Log", new Array("Expected Action:", "Should be updating the incident board."))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 8, 0),
+				incidents.get(187),
+				new Properties(new Array()),
+				new Evaluations(
+						new Array(
+								new Evaluation("Telephone Conversation", new Array("TV Reporter #1:", "Hello, this is Cameron Stevens at KCLY TV channel 2.", "TV Reporter #1:", "I was told that a car flew off an overpass causing a large pile-up on the freeway below.", "Student Action:", "Incident should be confirmed", "TV Reporter #1:", "I want to confirm the location so we can send a helicopter to check it out.", "Student Action:", "55/405 interchange"))
+						)
+						
+				)
+				
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 10, 0), 
+				incidents.get(188), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "9-9 Santa Lucia", "Field:", "Santa Lucia 9-9 go ahead.", "Dispatch:", "9-9 Santa Lucia 11-79 northbound 5 just north of Lake Forest Drive.", "Field:", "Santa Lucia 9-9 copied enroute from 405 at Irvine Center.", "Dispatch:", "9-9 Santa Lucia 10-4. Enroute from 405 at Irvine Center.")),
+								new Property("CHP CAD:", new Array("Detail:", "9-9 ENRT FRM I405 @ IRVINE CTR"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("ATMS", new Array("Expected Action:", "Operator should try to confirm the incident with a CCTV camera.")),
+								new Evaluation("CAD", new Array("Expected Action:", "Operator should be monitoring the CAD")),
+								new Evaluation("Facilitator", new Array("Expected Action:", "Should verify location and respond to incident 188"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 11, 0),
+				incidents.get(187),
+				new Properties(new Array()),
+				new Evaluations(
+						new Array(
+								new Evaluation("Telephone Conversation", new Array("Radio Reporter #1:", "Hello, this is Dakota Crew at KCOW radio.", "Radio Reporter #1:", "I just heard over the scanner that you have a major accident on I405 at 55.", "Student Action:", "Should confirm incident.", "Radio Reporter #1:", "Can you give me a run down on what happened?", "Student Action:", "A collision occurred on NB 55 at 405. A vehicle went over rail onto NB 405 causing a 6 car collision."))
+						)
+						
+				)
+				
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 12, 0), 
+				incidents.get(188), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-14", "Dispatch:", "14-14 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-14 10-97. Multiple 1144 northbound 405 at 55 overpass. Six vehicle collision blocking the three inside lanes. The driver and passenger of the car that went over the railing are both 11-44. I've got two other fatals and multiple injured down here. Request coroner and issue Sig Alert.", "Dispatch:", "14-14 Santa Lucia 10-4 10-97 11-80 11-25 northbound 405 at 55 overpass. Multiple 1144. Six vehicle collision blocking the three inside lanes. The driver and passenger of the car that went over the railing are 11-44, 2 other 11-44. Multiple injuries, request coroner and send Sig Alert.")),
+								new Property("CHP CAD:", new Array("Detail:", "14-14 1097, MULTIPLE 1144 NB 405 AT 55 OVERPASS, 6 VEH TC", "Detail:", "BLOCKING 3 INSIDE LNS NB 405. DRVR AND PSSNGR IN VEH 1144, 2 OTHER FATALS, MULT INJR, REQ CRNR AND SIGALERT"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("CMS", new Array("Target CMS:", "87 - NB 405 @ HARVARD", "Sample Message:", "ACCIDENT AT HWY-55 / 3 LEFT LNS BLKD")),
+								new Evaluation("CMS", new Array("Target CMS:", "88-NB405@ICD", "Sample Message:", "ACCIDENT AT HWY-55 / 3 LEFT LNS BLKD")),
+								new Evaluation("Activity", new Array("Expected Action:", "Should fax and page sig alert information"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 12, 30), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP CAD:", new Array("Detail:", "1039 CRNR"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("Activity Log", new Array("Expected Action:", "Should insert info for enroute coroner"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 13, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-17", "Dispatch:", "14-17 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-17 10-97. 1144 northbound 405 at 55. Paramedics are 10-97. We've gotta secure the scene southbound 55 for the DOT hazard. Has Caltrans been notified that their truck has been involved in a collision?", "Dispatch:", "14-17 Santa Lucia 10-4 10-97 11-44 northbound 405 at 55. Paramedics 10-97. Will be doing 11-84 on southbound 55 for DOT collision. Caltrans will be notified.", "Field:", "Santa Lucia 14-17 10-4")),
+								new Property("CHP CAD", new Array("Detail:", "14-17 1097, PARAMEDICS 1097. 1184 SB 55 FOR DOT 1125"))
+						)
+				), 
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 14, 0), 
+				incidents.get(188), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 9-9", "Dispatch:", "9-9 go ahead Santa Lucia", "Field:", "Santa Lucia 9-9 10-97 11-79. Fire department and parmedics 10-97. Collision between semi truck carrying tomatoes and vehicle in 2 right lanes. Truck on fire and tomatoes spilled over three right lanes. Request Caltrans to clean up the tomatoes and units for 11-84.", "Dispatch:", "Santa Lucia 10-4, 9-9 10-97 11-79. Fire and paramedics 10-97. Collision involves tomato truck and car in two right lanes. Truck on fire and tomatoes over three right lanes. Request Caltrans.")),
+								new Property("CHP CAD:", new Array("Detail:", "9-9, FD, PARAMEDICS 1097. TC SEMI W/TOMATOES AND VEH ON NB-5 #3,4,5 LNS", "Detail:", "TRCK ON FIRE, REQ CT CLNUP, UNITS 1184"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("CMS", new Array("Target CMS:", "31 - ??", "Sample Message:", "UR TIRES R RND")),
+								new Evaluation("Activity Log", new Array("Expected Action:", "Should fax and page information"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 14, 30), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio", new Array("Field:", "Santa Lucia 14-14", "Dispatch:", "14-14 Santa Lucia go ahead.", "Field:", "Santa Lucia, request MAIT, they'll have to investigate this one. Also, request 14-S unit and TMT.", "Dispatch:", "14-14 Santa Lucia copied request MAIT, 14-S unit, and TMT.", "Dispatch:", "14-S3 unit copy.", "Field:", "Santa Lucia 14-S3, 10-4 enroute from 73 at Bear Street.", "Dispatch:", "14-S3 Santa Lucia copies enroute from 73 at Bear Street.")),
+								new Property("CHP CAD:", new Array("Detail:", "REQ MAIT, REQ 14-S UNIT, REQ TMT")),
+								new Property("TMT Radio:", new Array("TMT leader espond to student action. Dispatch appropriate units???"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("Facilitator", new Array("Expected Action:", "Should be alert and advising radio on TMT."))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 15, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("Telephone Conversation:", new Array("Radio Reporter #2:", "Hello, this is Monica Stevens at KCLY radio.", "Radio Reporter #2:", "I called earlier about the accident on I405. Have any more details come in on that incident?", "Student Action:", "Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured.", "Radio Reporter #2:", "Do you have an alternate route I can recommend?", "Student Action:", "Yes (TBD)"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 16, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("Maintenance Radio:", new Array("If Maintenance unit was sent out, radio the supervisor with a 10-97. Say that you're going to await MAIT investigation and transport other Maintenance worker."))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 17, 0), 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-9.", "Dispatch:", "14-9 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-9 10-97. Will assist 14-14 with 11-84", "Dispatch:", "14-9 Santa Lucia 10-4 10-97 northbound 405 at 55. Will assist 14-14 with 11-84.")),
+								new Property("CHP CAD:", new Array("Detail:", "14-9 1097, ASSIST 1184"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 20, 0), // orginally at 00:18:00 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-17.", "Dispatch:", "14-17 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-17. Traffic is backing up on southbound 55. Request TMT and medium duty 11-85 for the DOT truck.", "Dispatch:", "14-17 Santa Lucia 10-4. Traffic backing up on southbound 55. Requesting TMT and medium duty 11-85.")),
+								new Property("CHP CAD:", new Array("Detail:", "TRAFFIC BACKING SB 55 REQ TMT MEDIUM DUTY 1185"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 22, 0), // orginally at 00:19:00 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-14", "Dispatch:", "14-14 Santa Lucia go ahead.", "Field:", "Santa Lucia 14-14. 4 11-44's, 2 11-80's, and 4 11-81's.", "Dispatch:", "14-14 Santa Lucia copies 4 11-44's,2 11-80's, and 4 11-81's.")),
+								new Property("CHP CAD:", new Array("Detail:", "4 1144'S, 2 1180'S, 4 1181'S")),
+								new Property("Telephone Conversation:", new Array("TV Reporter #2:", "Hello, this is Fred Roppel at KNOW TV.", "TV Reporter #2:", "Have any more details come in on the pileup at 55/405?", "Student Action:", "Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured, ??? mile backup", "TV Reporter #2:", "Do you have an alternate route I can recommend?", "Student Action:", "(pause for answer: Yes)", "Student Action:", "3 car collision, vehicles blocking #2,3,4 lanes. Moderate injuries."))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("CMS", new Array("TargetCMS:", "95-NB5@EL TORO", "Sample Message:", "ACCIDENT AT HWY-55 / 3 RT LANES BLKD"))
+						)
+				)
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 24, 0), // orginally at 00:20:00 
+				incidents.get(188), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "9-15, 9-19 Santa Lucia", "Field_1:", "Santa Lucia 9-15 go ahead.", "Field_2:", "Santa Lucia go ahead to 9-19.", "Dispatch:", "9-15 and 9-19 Santa Lucia 11-84 for 11-79 northbound 5 just north of Lake Forest Drive.", "Field_1:", "Santa Lucia 9-15 10-4. Enroute from 55 at 4th Street.", "Field_2:", "Santa Lucia 9-19 copied enroute from 405 at Culver.", "Dispatch:", "Santa Lucia copies 9-15 enroute from 55 at 4th and 9-19 enroute from 405 at Culver.")),
+								new Property("CHP CAD:", new Array("Detail:", "9-15,9-19 ENRT FOR 1184")),
+								new Property("Telephone Conversation:", new Array("Radio Reporter #3:", "Hello, this is Bill Bradley at KCTR radio.", "Radio Reporter #3:", "I heard here was a large collision on the 5.", "Radio Reporter #3:", "What details do you have on that?", "Student Action:", "Semi and 2 cars, tomatoes over three right lanes.", "Radio Reporter #3:", "Were there any injured?", "Student Action:", "Don't know yet."))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 26, 0), // orginally at 00:21:00 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Dispatch:", "14-17 Santa Lucia information.", "Field:", "Santa Lucia 14-17 go ahead.", "Dispatch:", "14-17 Santa Lucia 10-39 Sablan's Towing.", "Field:", "14-17 copied 10-39 Sablan's Towing.")),
+								new Property("CHP CAD:", new Array("Detail:", "1039 SABLAN TOWING"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 28, 0), // orginally at 00:22:00 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-S3", "Dispatch:", "14-S3 Santa Lucia go ahead.", "Field:", "Santa Lucia 10-97 northbound 405 at 55. Do you have an ETA for MAIT?", "Dispatch:", "14-S3 Santa Lucia 10-4 10-97 northbound 405 at 55. MAIT ETA 15 minutes.", "Field:", "Santa Lucia 14-S3 copies MAIT ETA 15.")),
+								new Property("CHP CAD:", new Array("Detail:", "14-S3 1097 NB 405 @ 55", "Detail:", "MAIT ETA 15"))
+						)
+				),
+				new Evaluations(new Array())
+		)
+);
+events.add(
+		new Event(
+				new Time(0, 30, 0), // orginally at 00:27:00 
+				incidents.get(187), 
+				new Properties(
+						new Array(
+								new Property("CHP Radio:", new Array("Field:", "Santa Lucia 14-S3.", "Dispatch:", "14-S3 go ahead to Santa Lucia.", "Field:", "Santa Lucia, coroner 10-97. The injured have been transported.Santa Lucia, coroner 10-97. The injured have been transported.", "Dispatch:", "14-S3 Santa Lucia 10-4 coroner 10-97. Injured transported.")),
+								new Property("CHP CAD:", new Array("Detail:", "CRNR 1097, INJURED TRANSPORTED"))
+						)
+				),
+				new Evaluations(
+						new Array(
+								new Evaluation("Activity Log", new Array("Activity Log:", "Should enter info for 10-97 coroner"))
+						)
+				)
+		)
+);
Index: trunk/webapps/EInotebook/scripts/Time.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Time.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Time.js	(revision 359)
@@ -0,0 +1,72 @@
+/**
+ * Represents a time.
+ * @param hrs {Integer} 0 <= hrs <= 59
+ * @param mins {Integer} 0 <= mins <= 59
+ * @param secs {Integer} 0 <= secs <= 59
+ */
+function Time(hrs, mins, secs)
+{
+	//========== public read-only members ==========//
+	this.hrs = hrs;
+	this.mins = mins;
+	this.secs = secs;
+	
+	//========== public static methods ==========//
+	Time.formatTime = formatTime;
+	
+	//========== public methods ==========//
+	this.format = format;
+	this.compareTo = compareTo;
+	this.getSeconds = getSeconds;
+	
+	//========== method definitions ===========//
+	/**
+	 * @return The number of seconds equal to the total amount time.
+	 */
+	function getSeconds()
+	{
+		return this.secs + this.mins * 60 + this.hrs * 3600;
+	}
+	
+	/**
+	 * @param time {Time} The Time to compare this to.
+	 * @return < 0 if this is less than time;
+	 *           0 if this is equal to time;
+	 *         > 0 if this is greater than time
+	 */
+	function compareTo(time)
+	{
+		return this.getSeconds() - time.getSeconds();
+	}
+	
+	/**
+	 * @return Returns the time in the form of HH:MM:SS.
+	 */
+	function format() {
+		function pad0(n)
+		{
+			return n < 10 ? "0" + n : n;
+		}
+		
+		return pad0(hrs) + ":" + pad0(mins) + ":" + pad0(secs);
+	}
+	
+	/**
+	 * Converts time in seconds into the form of HH:MM:SS.
+	 * @param seconds {Integer}
+	 * @return The given time in the form of HH:MM:SS.
+	 */
+	function formatTime(seconds)
+	{
+		function pad0(n)
+		{
+			return n < 10 ? "0" + n : n;
+		}
+		
+		var remainSecs = seconds % 60;
+		var minutes = (seconds - remainSecs) / 60;
+		var remainMins = minutes % 60;
+		var hours = (minutes - remainMins) / 60;
+		return pad0(hours) + ":" + pad0(remainMins) + ":" + pad0(remainSecs);
+	}
+}
Index: trunk/webapps/EInotebook/scripts/Incidents.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Incidents.js	(revision 359)
+++ trunk/webapps/EInotebook/scripts/Incidents.js	(revision 359)
@@ -0,0 +1,80 @@
+/**
+ * Stores each Incident. You must set Incident.doc to the document that incidents will be 
+ * displayed on before using this class.
+ */
+var incidents = new Array();
+
+//========== public members ==========/
+incidents.doc = null;
+
+//========== public methods ==========//
+incidents.get = incidents_get;
+incidents.collapseAll = incidents_collapseAll;
+incidents.expandAll = incidents_expandAll;
+incidents.add = incidents_add;
+
+//=========== method definitions ==========//
+/**
+ * Searches through each Incident to find an Incident with the given number.
+ * @param number {Integer} The number of an incident.
+ * @return The Incident with the given number.
+ */
+function incidents_get(number)
+{
+	var incident;
+	
+	// FOR each incident
+	for (var i = 0; i < this.length; i++)
+	{
+		// IF the incident's number matches
+		if (this[i].number == number)
+		{
+			// remember the incident
+			incident = this[i];
+		}
+	}
+	return incident;
+}
+
+/**
+ * Collapses each Incident.
+ */
+function incidents_collapseAll()
+{
+	// FOR each incident
+	for (var i = 0; i < this.length; i++)
+	{
+		// IF the incident is expanded THEN
+		if (this[i].expanded)
+		{
+			// collapse incident
+			this[i].expandAction();
+		}
+	}
+}
+
+/**
+ * Expands each incident.
+ */
+function incidents_expandAll()
+{
+	// FOR each incident
+	for (var i = 0; i < this.length; i++)
+	{
+		// IF incident is collapsed THEN
+		if (!this[i].expanded)
+		{
+			// expand incident
+			this[i].expandAction();
+		}
+	}
+}
+
+/**
+ * Adds an Incident.
+ * @param incident {Incident} The Incident to be added.
+ */
+function incidents_add(incident)
+{
+	incidents.push(incident);
+}
Index: trunk/webapps/EInotebook/cad/index.html
===================================================================
--- trunk/webapps/EInotebook/cad/index.html	(revision 359)
+++ trunk/webapps/EInotebook/cad/index.html	(revision 359)
@@ -0,0 +1,15 @@
+<html>
+  <head>
+    <link rel="stylesheet" type="text/css" href="cad.css"> 
+    <link rel="stylesheet" type="text/css" href="cadpad.css"> 
+    <link rel="stylesheet" type="text/css" href="../script/scripts.css"> 
+    <script type="text/javascript" src="cad.js"></script> 
+    <script type="text/javascript" src="../scripts/cookies.js"></script> 
+  </head>
+  <body onLoad="setupCad()">
+	<div id="cadpadwrap">
+		<div id="cadpadcontent">
+		</div>
+    </div>
+  </body>
+</html>
Index: trunk/webapps/EInotebook/cad/cad.css
===================================================================
--- trunk/webapps/EInotebook/cad/cad.css	(revision 359)
+++ trunk/webapps/EInotebook/cad/cad.css	(revision 359)
@@ -0,0 +1,76 @@
+.cadClient
+{
+   text-align: center;
+   background-color: black;
+   color: yellow;
+   height: 500px;
+   width: 720px;
+   font-family: "Courier";
+   font-size: .80em;
+}
+
+#cadHeader
+{
+   vertical-align: top;
+   height: 5%;
+}
+
+#cadBody
+{
+   vertical-align: top;
+   height: 80%;
+}
+
+#cadFooter
+{
+   vertical-align: top;
+   height: 15%;
+}
+
+.cadInputBox
+{
+   width: 720px;
+}
+
+.cadInputLineBox
+{
+   width: 80%;
+}
+
+.cadInputSubmitBox
+{
+   width: 20%;
+   margin-bottom: 40px;
+}
+
+.cadInputLine
+{
+   width: 100%; 
+   background-color: #000000; 
+   color: yellow;
+   font-family: "Courier New", Courier, monospace;
+   padding: 0px 10px;
+   border: 5px solid black;
+   height: 40px;
+}
+
+#cadSubmitButton
+{
+   height: 100%;
+   width: 100%;
+   font-size: 1.03em;
+}
+
+.cadButton
+{
+   width: 100%;
+   height: 40px;
+   font-size: 1.1em;
+}
+
+#cadSelect
+{
+   margin-top: 30px;
+   width: 100%;
+   font-size: 1.1em;
+}
Index: trunk/webapps/EInotebook/cad/cad.js
===================================================================
--- trunk/webapps/EInotebook/cad/cad.js	(revision 359)
+++ trunk/webapps/EInotebook/cad/cad.js	(revision 359)
@@ -0,0 +1,29 @@
+/**
+ * Setup the CAD screen.
+ */
+function setupCad()
+{
+  //updateCad();
+}
+
+var events;
+function loadScript(theEvents, theIncidents)
+{
+	events = theEvents;
+    updateCad();
+}
+
+/**
+ * Updates the CAD screen.
+ */
+function updateCad()
+{
+    // Set timer to do this again in one second
+	setTimeout("updateCad()", 1000);
+
+	var currentEvent = events.getLastExecutedEvent(readCookie("time"));
+    // Show current event to Current Event Window
+    var currDiv = document.getElementById("cadpadcontent");
+	currDiv.innerHTML = currentEvent.html();
+
+}
Index: trunk/webapps/EInotebook/cad/cadpad.css
===================================================================
--- trunk/webapps/EInotebook/cad/cadpad.css	(revision 359)
+++ trunk/webapps/EInotebook/cad/cadpad.css	(revision 359)
@@ -0,0 +1,120 @@
+/* Landscape mode (default) 
+#cadpadwrap 
+{
+	margin:0 auto;
+	width:900px;
+	position:relative;
+	overflow:hidden;
+	text-align:left;
+	background:#fff;
+}
+
+#cadpadcontent 
+{
+	float:left;
+	width:900px;
+	background:#fff;
+	position:relative;
+	left:768px;
+}
+
+#cadpadmain 
+{
+	float:left;
+	width:608px;
+	position:relative;
+	right:738px;
+}
+
+#cadpadside 
+{
+	float:right;
+	width:116px;
+	position:relative;
+	right:788px;
+	padding:20px 0;
+}
+
+#cadpadsidea,
+#cadpadsideb,
+#cadpadsidec 
+{
+	clear:left;
+	float:left;
+	width:116px;
+}
+
+#cadpadfooter 
+{
+	clear:both;
+	float:left;
+	width:824px;
+	border-top:1px solid #000;
+	background:#ddd;
+}
+
+#cadpadfooter p 
+{
+	padding:20px 30px;
+}
+*/
+/* portrait mode 
+@media only screen and (orientation:portrait)
+{*/
+	#cadpadheader,
+	#cadpadwrap,
+	#cadpadfooter 
+	{
+		width:668px;
+	}
+	
+	#cadpadcontent 
+	{
+		left:0;
+		background:#fff;
+	}
+	
+	#cadpadmain 
+	{
+		float:left;
+		width:668px;
+		position:relative;
+		right:0;
+		left:10px;
+	}
+	
+	#cadpadside 
+	{
+		clear:left;
+		float:left;
+		width:668px;
+		right:0;
+	}
+	
+	#cadpadsidea 
+	{
+		clear:none;
+		width:183px;
+		float:left;
+		position:relative;
+		left:60px;
+	}
+	
+	#cadpadsideb 
+	{
+		clear:none;
+		width:183px;
+		float:left;
+		position:relative;
+		left:90px;
+	}
+	
+	#cadpadsidec 
+	{
+		clear:none;
+		width:183px;
+		float:right;
+		position:relative;
+		right:0px;
+	}
+/*}*/
Index: trunk/webapps/EInotebook/cad/cad.original.js
===================================================================
--- trunk/webapps/EInotebook/cad/cad.original.js	(revision 359)
+++ trunk/webapps/EInotebook/cad/cad.original.js	(revision 359)
@@ -0,0 +1,356 @@
+var ii100b =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+<font color=\"aqua\">LOG:</font>&nbsp;100A&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">PRI:</font>&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">TYPE:</font>&nbsp;Media&nbsp;&nbsp;<font color=\"aqua\">CB:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">BEAT:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">LOC:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CS:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;()&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">ORI:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0625&nbsp;2153&nbsp;<font color=\"aqua\">DISP:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">FILED:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">X:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">ORI&nbsp;ACTION:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">R/S:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">DUP:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CBT:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">Z:</font>Y<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+"
+];
+
+var ii100f =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0017&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+"
+];
+
+var defaultb =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+"
+];
+
+var defaultf =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0017&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+"
+];
+
+var ii187b =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+<font color=\"aqua\">LOG:</font>&nbsp;187A&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">PRI:</font>&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">TYPE:</font>&nbsp;1179&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CB:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">BEAT:</font>&nbsp;14-14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">LOC:</font>&nbsp;SB55&nbsp;AT&nbsp;405&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CS:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(SB55&nbsp;AT&nbsp;405)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">ORI:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0625&nbsp;2154&nbsp;<font color=\"aqua\">DISP:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">FILED:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">X:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">ORI&nbsp;ACTION:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">R/S:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">DUP:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CBT:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">Z:</font>Y<br />\
+<font color=\"aqua\">-------------------------------------&nbsp;DETAIL&nbsp;-----------------------------------</font><br />\
+<font color=\"gray\">000A176612154</font>&nbsp;<font color=\"aqua\">1</font>&nbsp;&nbsp;STALLED&nbsp;DOT&nbsp;SB&nbsp;SR-55&nbsp;AT&nbsp;I-405&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612156</font>&nbsp;<font color=\"aqua\">2</font>&nbsp;&nbsp;CELLULAR&nbsp;911&nbsp;RPT&nbsp;DOT&nbsp;HT,&nbsp;2ND&nbsp;VEH&nbsp;OVER&nbsp;THE&nbsp;SIDE,&nbsp;UNVERIFIED&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612156</font>&nbsp;<font color=\"aqua\">3</font>&nbsp;&nbsp;DUPLICATE&nbsp;CALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612157</font>&nbsp;<font color=\"aqua\">4</font>&nbsp;&nbsp;DUPLICATE&nbsp;CALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612158</font>&nbsp;<font color=\"aqua\">5</font>&nbsp;&nbsp;DOT&nbsp;HIT&nbsp;BY&nbsp;VEH,&nbsp;VEH&nbsp;OVER&nbsp;SIDE.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612158</font>&nbsp;<font color=\"aqua\">6</font>&nbsp;&nbsp;2ND&nbsp;VEH&nbsp;LANDED&nbsp;NB&nbsp;405&nbsp;BELOW,&nbsp;LG&nbsp;COLLISION&nbsp;OCCUR.&nbsp;REQ&nbsp;2&nbsp;1141&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CODE&nbsp;2&nbsp;UNITS&nbsp;ASSIST&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612158</font>&nbsp;<font color=\"aqua\">7</font>&nbsp;&nbsp;DUPLICATE&nbsp;CALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612159</font>&nbsp;<font color=\"aqua\">8</font>&nbsp;&nbsp;14-17&nbsp;14-9&nbsp;ENRT&nbsp;ASSIST&nbsp;1183&nbsp;1125&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612159</font>&nbsp;<font color=\"aqua\">9</font>&nbsp;&nbsp;DUPLICATE&nbsp;CALL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612200</font>&nbsp;<font color=\"aqua\">10</font>&nbsp;DOT&nbsp;DRIVER&nbsp;UNINJURED,&nbsp;#2,3&nbsp;LNS&nbsp;BLCKD&nbsp;SB&nbsp;55.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612200</font>&nbsp;<font color=\"aqua\">11</font>&nbsp;14-14&nbsp;MVNG&nbsp;TO&nbsp;405&nbsp;ASSESS&nbsp;DMG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612205</font>&nbsp;<font color=\"aqua\">12</font>&nbsp;14-14&nbsp;1097,&nbsp;MULTIPLE&nbsp;1144&nbsp;NB&nbsp;405&nbsp;AT&nbsp;55&nbsp;OVERPASS,&nbsp;6&nbsp;VEH&nbsp;TC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612205</font>&nbsp;<font color=\"aqua\">13</font>&nbsp;BLOCKING&nbsp;3&nbsp;INSIDE&nbsp;LNS&nbsp;NB&nbsp;405.&nbsp;DRVR&nbsp;AND&nbsp;PSSNGR&nbsp;IN&nbsp;VEH&nbsp;1144,&nbsp;2&nbsp;&nbsp;&nbsp;<br />\
+<br />\
+",
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OTHER&nbsp;FATALS,&nbsp;MULT&nbsp;INJR,&nbsp;REQ&nbsp;CRNR&nbsp;AND&nbsp;SIGALERT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612205</font>&nbsp;<font color=\"aqua\">14</font>&nbsp;1039&nbsp;CRNR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612206</font>&nbsp;<font color=\"aqua\">15</font>&nbsp;14-17&nbsp;1097,&nbsp;PARAMEDICS&nbsp;1097.&nbsp;1184&nbsp;SB&nbsp;55&nbsp;FOR&nbsp;DOT&nbsp;1125&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612207</font>&nbsp;<font color=\"aqua\">16</font>&nbsp;REQ&nbsp;MAIT,&nbsp;REQ&nbsp;14-S&nbsp;UNIT,&nbsp;REQ&nbsp;TMT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612210</font>&nbsp;<font color=\"aqua\">17</font>&nbsp;14-9&nbsp;1097,&nbsp;ASSIST&nbsp;1184&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612211</font>&nbsp;<font color=\"aqua\">18</font>&nbsp;TRAFFIC&nbsp;BACKING&nbsp;SB&nbsp;55&nbsp;REQ&nbsp;TMT&nbsp;MEDIUM&nbsp;DUTY&nbsp;1185&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612212</font>&nbsp;<font color=\"aqua\">19</font>&nbsp;4&nbsp;1144'S,&nbsp;2&nbsp;1180'S,&nbsp;4&nbsp;1181'S&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612214</font>&nbsp;<font color=\"aqua\">20</font>&nbsp;1039&nbsp;SABLAN&nbsp;TOWING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612215</font>&nbsp;<font color=\"aqua\">21</font>&nbsp;14-S3&nbsp;1097&nbsp;NB&nbsp;405&nbsp;@&nbsp;55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612215</font>&nbsp;<font color=\"aqua\">22</font>&nbsp;MAIT&nbsp;ETA&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612220</font>&nbsp;<font color=\"aqua\">23</font>&nbsp;CRNR&nbsp;1097,&nbsp;INJURED&nbsp;TRANSPORTED&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612228</font>&nbsp;<font color=\"aqua\">24</font>&nbsp;MAIT&nbsp;1097&nbsp;STARTING&nbsp;INVESTIGATION&nbsp;SB&nbsp;SR55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612230</font>&nbsp;<font color=\"aqua\">25</font>&nbsp;MED&nbsp;DUTY&nbsp;1185&nbsp;1097,&nbsp;AWAIT&nbsp;FINISH&nbsp;MAIT&nbsp;BEFORE&nbsp;TOW&nbsp;VEH&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612233</font>&nbsp;<font color=\"aqua\">26</font>&nbsp;CRNR&nbsp;CONFIRMED&nbsp;FOUR&nbsp;FATAL,&nbsp;PREP&nbsp;TO&nbsp;TRANSPORT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612240</font>&nbsp;<font color=\"aqua\">27</font>&nbsp;MAIT&nbsp;FINISHED&nbsp;W/&nbsp;INVESTIGATION&nbsp;SB&nbsp;SR-55&nbsp;AT&nbsp;I-405,&nbsp;PREP&nbsp;DOT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TRCK&nbsp;FOR&nbsp;TOW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612247</font>&nbsp;<font color=\"aqua\">28</font>&nbsp;MAIT&nbsp;STARTING&nbsp;INVESTIGATION&nbsp;NB&nbsp;405&nbsp;TO&nbsp;TAKE&nbsp;30&nbsp;MIN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612248</font>&nbsp;<font color=\"aqua\">29</font>&nbsp;CLNUP&nbsp;NRLY&nbsp;FNSHD&nbsp;DOT&nbsp;RDY&nbsp;TO&nbsp;BE&nbsp;TWD,&nbsp;SB&nbsp;SR-55&nbsp;LNS&nbsp;OPN&nbsp;IN&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612255</font>&nbsp;<font color=\"aqua\">30</font>&nbsp;14-17&nbsp;1097&nbsp;DOT&nbsp;TRCK&nbsp;TWD,&nbsp;SB&nbsp;SR-55&nbsp;OPN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612256</font>&nbsp;<font color=\"aqua\">31</font>&nbsp;MAIT&nbsp;PARTIAL&nbsp;CMPLT,&nbsp;PICS&nbsp;TKN,&nbsp;NEED&nbsp;MSRMNTS,&nbsp;INTERVIEWS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<br />\
+",
+"\
+<font color=\"gray\">================================================================================</font><br />\
+<font color=\"gray\">000A176612301</font>&nbsp;<font color=\"aqua\">32</font>&nbsp;REQ&nbsp;6&nbsp;ROT&nbsp;1185&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612303</font>&nbsp;<font color=\"aqua\">33</font>&nbsp;MAIT&nbsp;NEARLY&nbsp;COMPLETE,&nbsp;FINISHING&nbsp;INTERVIEWS,&nbsp;TOW&nbsp;ETA&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612309</font>&nbsp;<font color=\"aqua\">34</font>&nbsp;MAIT&nbsp;FINISHED&nbsp;INVESTIGATION&nbsp;1098,&nbsp;START&nbsp;CLEANUP&nbsp;WHEN&nbsp;1185S&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ARRIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612312</font>&nbsp;<font color=\"aqua\">35</font>&nbsp;1185&nbsp;1097&nbsp;PARTIAL&nbsp;OPENING&nbsp;IN&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612323</font>&nbsp;<font color=\"aqua\">36</font>&nbsp;OPN&nbsp;#2,3&nbsp;LNS,&nbsp;FULL&nbsp;OPN&nbsp;IN&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612328</font>&nbsp;<font color=\"aqua\">37</font>&nbsp;VEH&nbsp;TWD,&nbsp;LNS&nbsp;OPN,&nbsp;14-S,&nbsp;14-9,&nbsp;14-14&nbsp;1098&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">--------------------------------&nbsp;UNITS&nbsp;ASSIGNED&nbsp;--------------------------------</font><br />\
+<font color=\"gray\">000A176612328</font>&nbsp;<font color=\"aqua\"><</font>&nbsp;&nbsp;14-14&nbsp;<font color=\"red\">1098</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612328</font>&nbsp;<font color=\"aqua\">-</font>&nbsp;&nbsp;14-17&nbsp;<font color=\"red\">1098</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612328</font>&nbsp;<font color=\"aqua\">-</font>&nbsp;&nbsp;14-9&nbsp;&nbsp;<font color=\"red\">1098</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"gray\">000A176612328</font>&nbsp;<font color=\"aqua\">-</font>&nbsp;&nbsp;14-S3&nbsp;<font color=\"red\">1098</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"aqua\">-------------------------------------&nbsp;TOWS&nbsp;-------------------------------------</font><br />\
+<font color=\"gray\">000A176612214</font>&nbsp;<font color=\"aqua\">1</font>&nbsp;&nbsp;SABLAN&nbsp;TOWING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">BEAT:</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">CONF:</font>&nbsp;(949)555-2468&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"aqua\">PUB:</font>&nbsp;(949)555-8899&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+"
+];
+
+var ii187f =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0021&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4</font>&nbsp;&nbsp;PG&nbsp;DN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"#FFFF00\">CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+",
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0021&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4</font>&nbsp;&nbsp;UP&nbsp;DN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"#FFFF00\">CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+",
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0021&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4</font>&nbsp;&nbsp;PG&nbsp;UP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"#FFFF00\">CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+"
+];
+
+var summaryb =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+<font color=\"aqua\">AREA(S)</font>&nbsp;&nbsp;&nbsp;<font color=\"red\">3&nbsp;&nbsp;5&nbsp;&nbsp;9&nbsp;&nbsp;14&nbsp;&nbsp;18&nbsp;&nbsp;29&nbsp;&nbsp;51</font>&nbsp;<font color=\"aqua\">-&nbsp;INCIDENT&nbsp;SUMMARY&nbsp;------------&nbsp;STATE:</font>&nbsp;<font color=\"red\">I&nbsp;P&nbsp;A</font>&nbsp;<font color=\"aqua\">F</font><br />\
+&nbsp;&nbsp;100&nbsp;0625-2153&nbsp;&nbsp;&nbsp;Media&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;187&nbsp;0625-2154&nbsp;&nbsp;&nbsp;1179&nbsp;14-14&nbsp;SB55&nbsp;AT&nbsp;405&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;14-14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+<br />\
+"
+];
+
+var summaryf =
+[
+"\
+<font color=\"gray\">================================================================================</font><br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\
+<font color=\"#FFFF00\">062510/0017&nbsp;REF:&nbsp;1&nbsp;&nbsp;2&nbsp;&nbsp;3&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CAD:&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;CLETS:&nbsp;0&nbsp;0&nbsp;&nbsp;MIS:&nbsp;0</font>&nbsp;&nbsp;<font color=\"red\">1</font>&nbsp;<br />\
+"
+];
+
+var scrn = 0;
+var page = [0, 0, 0, 0];
+var msg = 0;
+var bodies = [ii100b, ii187b, summaryb, defaultb];
+var footers = [ii100f, ii187f, summaryf, defaultf];
+
+/**
+ * Setup the CAD screen.
+ */
+function setupCad()
+{
+  updateCad();
+}
+
+/**
+ * Go to the next CAD screen.
+ */
+function cadNextScreen()
+{
+	scrn += 1;
+	if (scrn == 4)
+	{
+		scrn = 0;
+	}
+
+	updateCad();
+}
+
+/**
+ * Clears the current CAD screen.
+ */
+function cadClearScreen()
+{
+	page[scrn] = 0;
+	bodies[scrn] = defaultb;
+	footers[scrn] = defaultf;
+	
+	updateCad();
+}
+
+/**
+ * Refresh the current CAD screen.
+ */
+function cadRefreshScreen()
+{
+	updateCad();
+}
+
+/**
+ * Page down the CAD screen.
+ */
+function cadPageDown()
+{
+	page[scrn]++;
+	if (page[scrn] >= bodies[scrn].length)
+        page[scrn]--;
+	
+	updateCad();
+}
+
+/**
+ * Page up the CAD screen.
+ */
+function cadPageUp()
+{
+	page[scrn] = page[scrn] - (page[scrn] == 0 ? 0 : 1);
+
+	updateCad();
+}
+
+/**
+ * Get the incident summaries.
+ */
+function cadGetSummary()
+{
+	page[scrn] = 0;
+	bodies[scrn] = summaryb;
+	footers[scrn] = summaryf;
+
+	updateCad();
+}
+
+/**
+ * Go to the next CAD message.
+ */
+function cadNextMessage()
+{
+	msg++;
+
+	updateCad();
+}
+
+/**
+ * Go to the previous CAD message.
+ */
+function cadPrevMessage()
+{
+	msg -= (msg == 0 ? 0 : 1);
+
+	updateCad();
+}
+
+/**
+ * Clears the current CAD screen of messages.
+ */
+function cadClearMessage()
+{
+	msg = 0;
+
+	updateCad();
+}
+
+/**
+ * Get the incident information for the selected incident.
+ */
+function cadIncidentInfo()
+{
+	if (document.getElementById("cadSelect").selectedIndex == 0)
+	{
+		page[scrn] = 0;
+		bodies[scrn] = ii100b;
+		footers[scrn] = ii100f;		
+	}
+	else if (document.getElementById("cadSelect").selectedIndex == 1)
+	{
+		page[scrn] = 0;
+		bodies[scrn] = ii187b;
+		footers[scrn] = ii187f;		
+	}
+	
+	updateCad();
+}
+
+/**
+ * Updates the CAD screen.
+ */
+function updateCad()
+{
+	document.getElementById("cadHeader").innerHTML = "<td></td>";
+	document.getElementById("cadBody").innerHTML = "<td>" + bodies[scrn][page[scrn]] + "</td>";
+	
+	var footer = footers[scrn][page[scrn]].replace("<font color=\"red\">1</font>", "<font color=\"red\">" + (scrn+1) + "</font>");
+	document.getElementById("cadFooter").innerHTML = "<td>" + footer + "</td>";
+}
Index: trunk/webapps/EInotebook/eval/index.html
===================================================================
--- trunk/webapps/EInotebook/eval/index.html	(revision 359)
+++ trunk/webapps/EInotebook/eval/index.html	(revision 359)
@@ -0,0 +1,1 @@
+Evaluation Index
Index: trunk/webapps/EInotebook/notebook.js
===================================================================
--- trunk/webapps/EInotebook/notebook.js	(revision 363)
+++ trunk/webapps/EInotebook/notebook.js	(revision 363)
@@ -0,0 +1,205 @@
+/*
+function loadXMLDoc()
+{
+  if (window.XMLHttpRequest)
+  {
+    xmlhttp = new XMLHttpRequest();
+  }
+  else
+  {
+    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
+  }
+
+  xmlhttp.onreadystatechange=function()
+  {
+    if (xmlhttp.readyState==4 && xmlhttp.status==200)
+    {
+      document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
+    }
+  }
+  
+  xmlhttp.open("GET", "ajax_info.txt", true);
+  xmlhttp.send("");
+}
+*/
+
+/**
+ * Sets the selected tab to the summary tab and loads the summary page.
+ */
+
+function setupNotebook()
+{
+   console.log("setupNotebook() starting");
+   changeTab('summaryTab');
+   showContent('summaryPageContent')
+   loadSummary();
+   setCookie("time", "0");
+   setCookie("scriptScrollY", 0);
+   setCookie("summaryScrollY", 0);
+}
+
+/**
+ * Runs the script.
+ */
+function run()
+{
+	run.initialDelay = 1000;
+	
+	setTimeout("run.run()", run.initialDelay);
+	
+	run.run = function()
+	{
+//	    document.getElementById("simulationStatus").innerHTML = "RUNNING";                 
+		setTime();
+		updateStatus();
+	};
+}
+
+/**
+ * Displays fading text alerts in the status box (left-top corner).
+ */
+function updateStatus()
+{
+	// IF last event if it has not been set before THEN
+    if (typeof updateStatus.lastEvent == 'undefined')
+    {
+    	updateStatus.lastEvent = null;
+    }
+   
+    var latestEvent = events.getLastExecutedEvent(readCookie("time"));
+    
+    
+    // IF a new event executed THEN
+    if (updateStatus.lastEvent != latestEvent)
+    {
+		// IF the new event has evaluations THEN
+    	if (latestEvent.evaluations.evaluations.length == 0)
+    	{
+//    		document.getElementById('updateStatus').innerHTML = "New Event";
+    	}
+    	else
+    	{
+//    		document.getElementById('updateStatus').innerHTML = "New Evaluation";
+    	}
+    	
+		// fades the text
+		updateStatus.fade = function fade()
+		{
+			// IF the fade color is not black yet THEN
+    		if (fade.hex < 255)
+    		{
+    			fade.hex += 5;
+//    			document.getElementById('updateStatus').style.color = 
+    				"rgb(" + fade.hex + ", " + fade.hex + ", " + fade.hex + ")";  
+    			setTimeout("updateStatus.fade()", 100);	
+    		}
+    		else
+    		{
+//    			document.getElementById('updateStatus').style.color = "white";
+    		}
+
+		};
+        
+		updateStatus.fade.hex = 0;
+		updateStatus.fade();
+    	updateStatus.lastEvent = latestEvent;
+    }
+    
+    setTimeout("updateStatus();", 1000);
+}
+
+/**
+ * Sets 'simulationTime' to the current simulation time in seconds.
+ * This method runs itself every second to keep the time current.
+ * Sets the cookie 'time' to the value of 'simulationTime'.
+ * @return
+ */
+function setTime()
+{
+    /** Load the sim time file and extract the seconds */
+    loadJSON("../sim_elapsedtime.json", function(response)
+    {
+        try {
+            simclockjson = JSON.parse(response);
+            seconds = simclockjson.elapsedtime;
+            setTime.time = seconds;
+	        // increment time by one second (or initialize it if it has not been set before)
+    //	    setTime.time = (typeof setTime.time == 'undefined') ? 0 : ++setTime.time;
+
+            setCookie("time", "" + setTime.time);
+           
+	        // display the latest simulation time
+	        document.getElementById("simulationTime").innerHTML = 
+		        Time.formatTime(setTime.time);
+        } catch(e) {
+            console.log("Error attempt to parse sim_elapsedtime.json: "+response)
+        }
+	    
+        setTimeout("setTime()", 1000);
+    });
+}
+/**
+ * Selects a new tab to be viewed. 
+ * @param id The id for the tab to be selected
+ */
+function changeTab(id)
+{
+    /* Set all tabs to not being active */
+    document.getElementById("summaryTab").className = "notActive";
+    document.getElementById("scriptTab").className = "notActive";
+    document.getElementById("CADTab").className = "notActive";
+    document.getElementById("mapsTab").className = "notActive";
+
+    /* Set the selected tab to being active */
+    document.getElementById(id).className = "activeTab";
+}
+
+/**
+ * Loads the script tab page;
+ */
+function loadScript()
+{
+}
+
+/**
+ * Loads the summary tab page;
+ */
+function loadSummary()
+{	   
+}
+
+/**
+ * @param id The id of the frame element.
+ * @return The document of the frame element.
+ */
+function getDocumentFromFrame(id)
+{
+    var frame=document.getElementById(id);
+    var doc=(frame.contentWindow || frame.contentDocument);
+    
+    if (doc.document)doc=doc.document;
+    
+    return doc;
+}
+
+/**
+ * Hides a tab page
+ * @param d The div of the page to hide.
+ */
+function hideContent(d) 
+{
+    document.getElementById(d).style.display = "none";
+}
+
+/**
+ * Switches the tab page.
+ * @param d The div of the page to show.
+ */
+function showContent(d) 
+{
+    hideContent('summaryPageContent');
+    hideContent('scriptPageContent');
+    hideContent('cadPageContent');
+    hideContent('mapsPageContent');    
+    document.getElementById(d).style.display = "block"; 
+}
Index: trunk/webapps/cptms/showtime.html
===================================================================
--- trunk/webapps/cptms/showtime.html	(revision 348)
+++ trunk/webapps/cptms/showtime.html	(revision 348)
@@ -0,0 +1,25 @@
+<html>
+<body>
+<div id="timediv">0:00</div>
+<div id="main"></div>
+<div id="label">One</div>
+    <script  src="js/common.js"></script>
+<script>
+var timeDiv = document.getElementById("timediv");
+var labelDiv = document.getElementById("label");
+function gettime()
+{
+        loadJSON("sim_clock.json", function(response)
+        {
+           simclockjson = JSON.parse(response);
+           clockstring = simclockjson.clock;
+           timeDiv.innerHTML = clockstring;
+           digit = clockstring.charAt(clockstring.length-1)
+           labelDiv.innerHTML = digit
+        });
+}
+var myinterval = setInterval(gettime,1000);
+</script>
+</body>
+
+</html>
Index: trunk/webapps/cptms/sample_events.xml
===================================================================
--- trunk/webapps/cptms/sample_events.xml	(revision 348)
+++ trunk/webapps/cptms/sample_events.xml	(revision 348)
@@ -0,0 +1,102 @@
+<incidents>
+<event><time>0:00:00</time><description>Now we will count to twelve</description></event>
+<event><time>0:00:10</time><description>and we will all keep still</description></event>
+<event><time>0:00:20</time><description>For once on the face of the earth,</description></event>
+<event><time>0:00:30</time><description>let's stop for a second,</description></event>
+<event><time>0:00:40</time><description>and not move our arms so much.</description></event>
+<event><time>0:00:50</time><description>It would be an exotic moment</description></event>
+<event><time>0:01:00</time><description>without rush, without engines;</description></event>
+<event><time>0:01:10</time><description>we would all be together</description></event>
+<event><time>0:01:20</time><description>in a sudden strangeness.</description></event>
+<event><time>0:01:30</time><description>Fisherman in the cold sea</description></event>
+<event><time>0:01:40</time><description>would not harm whales</description></event>
+<event><time>0:01:50</time><description>and the man gathering salt</description></event>
+<event><time>0:02:00</time><description>would not look at his hurt hands.</description></event>
+<event><time>0:02:10</time><description>Those who prepare green wars,</description></event>
+<event><time>0:02:20</time><description>wars with gas, wars with fire,</description></event>
+<event><time>0:02:30</time><description>victories with no survivors,</description></event>
+<event><time>0:02:40</time><description>would put on clean clothes</description></event>
+<event><time>0:02:50</time><description>and walk about with their brothers</description></event>
+<event><time>0:03:00</time><description>in the shade, doing nothing.</description></event>
+<event><time>0:03:10</time><description>What I want should not be confused</description></event>
+<event><time>0:03:20</time><description>with total inactivity.</description></event>
+<event><time>0:03:30</time><description>Life is what it is about;...</description></event>
+<event><time>0:03:40</time><description>If we were not so single-minded</description></event>
+<event><time>0:03:50</time><description>about keeping our lives moving,</description></event>
+<event><time>0:04:00</time><description>and for once could do nothing,</description></event>
+<event><time>0:04:10</time><description>perhaps a huge silence</description></event>
+<event><time>0:04:20</time><description>might interrupt this sadness</description></event>
+<event><time>0:04:30</time><description>of never understanding ourselves</description></event>
+<event><time>0:04:40</time><description>and of threatening ourselves with death.</description></event>
+<event><time>0:04:50</time><description>Perhaps the earth can teach us</description></event>
+<event><time>0:05:00</time><description>as when everything seems dead in winter</description></event>
+<event><time>0:05:10</time><description>and later proves to be alive.</description></event>
+<event><time>0:05:20</time><description>Now I'll count up to twelve</description></event>
+<event><time>0:05:30</time><description>and you keep quiet and I will go.</description></event>
+<event><time>0:05:40</time><description>Something</description></event>
+<event><time>0:05:50</time><description>just now</description></event>
+<event><time>0:06:00</time><description>moved through my heart</description></event>
+<event><time>0:06:10</time><description>like the thinnest of blades</description></event>
+<event><time>0:06:20</time><description>as that red-tail pumped</description></event>
+<event><time>0:06:30</time><description>once with its great wings</description></event>
+<event><time>0:06:40</time><description>and flew above the gray, cracked</description></event>
+<event><time>0:06:50</time><description>rock wall.</description></event>
+<event><time>0:07:00</time><description>It wasn't</description></event>
+<event><time>0:07:10</time><description>about the bird, it was</description></event>
+<event><time>0:07:20</time><description>something about the way</description></event>
+<event><time>0:07:30</time><description>stone stays</description></event>
+<event><time>0:07:40</time><description>mute and put, whatever</description></event>
+<event><time>0:07:50</time><description>goes flashing by.</description></event>
+<event><time>0:08:00</time><description>Sometimes,</description></event>
+<event><time>0:08:10</time><description>when I sit like this, quiet,</description></event>
+<event><time>0:08:20</time><description>all the dreams of my blood</description></event>
+<event><time>0:08:30</time><description>and all outrageous divisions of time</description></event>
+<event><time>0:08:40</time><description>seem ready to leave,</description></event>
+<event><time>0:08:50</time><description>to slide out of me.</description></event>
+<event><time>0:09:00</time><description>Then, I imagine, I would never move.</description></event>
+<event><time>0:09:10</time><description>By now</description></event>
+<event><time>0:09:20</time><description>the hawk has flown five miles</description></event>
+<event><time>0:09:30</time><description>at least,</description></event>
+<event><time>0:09:40</time><description>dazzling whoever else has happened</description></event>
+<event><time>0:09:50</time><description>to look up.</description></event>
+<event><time>0:10:00</time><description>I was dazzled. But that</description></event>
+<event><time>0:10:10</time><description>wasn't the knife.</description></event>
+<event><time>0:10:20</time><description>It was the sheer, dense wall</description></event>
+<event><time>0:10:30</time><description>of blind stone</description></event>
+<event><time>0:10:40</time><description>without a pinch of hope</description></event>
+<event><time>0:10:50</time><description>or a single unfulfilled desire</description></event>
+<event><time>0:11:00</time><description>sponging up and reflecting,</description></event>
+<event><time>0:11:10</time><description>so brilliantly,</description></event>
+<event><time>0:11:20</time><description>as it has for centuries,</description></event>
+<event><time>0:11:30</time><description>the sun's fire.</description></event>
+<event><time>0:11:40</time><description>An eagle's nest on the head of an old redwood on one of the</description></event>
+<event><time>0:11:50</time><description>precipice-footed ridges</description></event>
+<event><time>0:12:00</time><description>Above Ventana Creek, that jagged country which nothing but a</description></event>
+<event><time>0:12:10</time><description>falling meteor will ever plow; no horseman</description></event>
+<event><time>0:12:20</time><description>Will ever ride there, no hunter cross this ridge but the winged</description></event>
+<event><time>0:12:30</time><description>ones, no one will steal the eggs from this fortress.</description></event>
+<event><time>0:12:40</time><description>The she-eagle is old, her mate was shot long ago, she is now mated</description></event>
+<event><time>0:12:50</time><description>with a son of hers.</description></event>
+<event><time>0:13:00</time><description>When lightning blasted her nest she built it again on the same</description></event>
+<event><time>0:13:10</time><description>tree, in the splinters of the thunderbolt.</description></event>
+<event><time>0:13:20</time><description>The she-eagle is older than I; she was here when the fires of</description></event>
+<event><time>0:13:30</time><description>eighty-five raged on these ridges,</description></event>
+<event><time>0:13:40</time><description>She was lately fledged and dared not hunt ahead of them but ate</description></event>
+<event><time>0:13:50</time><description>scorched meat. The world has changed in her time;</description></event>
+<event><time>0:14:00</time><description>Humanity has multiplied, but not here; men's hopes and thoughts</description></event>
+<event><time>0:14:10</time><description>and customs have changed, their powers are enlarged,</description></event>
+<event><time>0:14:20</time><description>Their powers and their follies have become fantastic,</description></event>
+<event><time>0:14:30</time><description>The unstable animal never has been changed so rapidly. The</description></event>
+<event><time>0:14:40</time><description>motor and the plane and the great war have gone over him,</description></event>
+<event><time>0:14:50</time><description>And Lenin has lived and Jehovah died: while the mother-eagle</description></event>
+<event><time>0:15:00</time><description>Hunts her same hills, crying the same beautiful and lonely cry and</description></event>
+<event><time>0:15:10</time><description>is never tired; dreams the same dreams,</description></event>
+<event><time>0:15:20</time><description>And hears at night the rock-slides rattle and thunder in the throats</description></event>
+<event><time>0:15:30</time><description>of these living mountains.</description></event>
+<event><time>0:15:40</time><description>It is good for man</description></event>
+<event><time>0:15:50</time><description>To try all changes, progress and corruption, powers, peace and</description></event>
+<event><time>0:16:00</time><description>anguish, not to go down the dinosaur's way</description></event>
+<event><time>0:16:10</time><description>Until all his capacities have been explored: and it is good for him</description></event>
+<event><time>0:16:20</time><description>To know that his needs and nature are no more changed in fact</description></event>
+<event><time>0:16:30</time><description>in ten thousand years than the beaks of eagles.</description></event>
+</incidents>
Index: trunk/webapps/cptms/images/CCTVFast/12-055-CCTV-0024.htm
===================================================================
--- trunk/webapps/cptms/images/CCTVFast/12-055-CCTV-0024.htm	(revision 309)
+++ trunk/webapps/cptms/images/CCTVFast/12-055-CCTV-0024.htm	(revision 309)
@@ -0,0 +1,7 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
+<html><head>
+<title>404 Not Found</title>
+</head><body>
+<h1>Not Found</h1>
+<p>The requested URL /cwwp2/data/d12/cctv/image/12-055-CCTV-0024.jpg was not found on this server.</p>
+</body></html>
Index: trunk/webapps/cptms/images/CCTVFast/12-057-CCTV-0006.htm
===================================================================
--- trunk/webapps/cptms/images/CCTVFast/12-057-CCTV-0006.htm	(revision 309)
+++ trunk/webapps/cptms/images/CCTVFast/12-057-CCTV-0006.htm	(revision 309)
@@ -0,0 +1,7 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
+<html><head>
+<title>404 Not Found</title>
+</head><body>
+<h1>Not Found</h1>
+<p>The requested URL /cwwp2/data/d12/cctv/image/12-057-CCTV-0006.jpg was not found on this server.</p>
+</body></html>
Index: trunk/webapps/cptms/scrolldemo.html
===================================================================
--- trunk/webapps/cptms/scrolldemo.html	(revision 348)
+++ trunk/webapps/cptms/scrolldemo.html	(revision 348)
@@ -0,0 +1,59 @@
+<html>
+<head>
+<style>
+.pic-container {
+    width: 500px;
+    height: 400px;
+    overflow-y: scroll;
+    overflow-x:hidden;
+}
+</style>
+<body>
+<div id="one">Header</div>
+<div id="container">
+    <div id="main" class="pic-container"></div>
+</div>
+<div id="two">Footer</div>
+<script   src="poem.js"></script>
+<script>
+function adjust()
+{
+    currLine += 2;
+    if (currElement != null)
+    {
+        currElement.style.background = "GhostWhite";
+        currElement = document.getElementById(currLine)
+        //currElement.scrollTop = 0;
+        currElement.scrollIntoView(); 
+        currElement.style.background = "Gold";
+    }
+    if (currLine >=99) currLine = 1
+}
+
+var fields = poem.split('\n');
+for (item in fields)
+{
+    var div = document.createElement("div");
+    div.id=item
+    div.style.color = "black";
+    if (item % 2 == 0)
+    {
+        div.style.background = "Gainsboro ";
+    }
+    else
+    {
+        div.style.background = "GhostWhite";
+    }
+    div.innerHTML = fields[item];
+
+    document.getElementById("main").appendChild(div);
+}
+var currLine = 1;
+var currElement = document.getElementById("1");
+myVar = setInterval(adjust, 1000);
+//clearTimeout(myVar);
+//document.getElementById("9").scrollIntoView(); 
+</script>
+</body>
+
+</html>
Index: trunk/webapps/cptms/timescroller.html
===================================================================
--- trunk/webapps/cptms/timescroller.html	(revision 348)
+++ trunk/webapps/cptms/timescroller.html	(revision 348)
@@ -0,0 +1,80 @@
+<html>
+<head>
+<style>
+.pic-container {
+    width: 500px;
+    height: 400px;
+    overflow-y: scroll;
+    overflow-x:hidden;
+}
+</style>
+<body>
+<!-- Prototype for a scrolling display that advances to a timer -->
+<div id="timediv">0:00</div>
+<div id="main" class="pic-container"></div>
+<div id="two">Footer</div>
+<script   src="poem.js"></script>
+<script  src="js/common.js"></script>
+<script>
+var timeDiv = document.getElementById("timediv");
+/** Load the sim clock file and extract the clock string */
+function gettime()
+{
+    loadJSON("sim_clock.json", function(response)
+    {
+        simclockjson = JSON.parse(response);
+        clockstring = simclockjson.clock;
+        timeDiv.innerHTML = clockstring;  // Display current time
+        // Extract the seconds digits
+        digits = clockstring.substring(clockstring.length-2)
+        if (digits.charAt(0) == "0")
+        {
+            digits = digits.charAt(1);
+        }
+        // go adjust the scrolling box
+        adjust(digits);
+    });
+}
+// Highlight the current line and scroll to it.
+function adjust(currLine)
+{
+    if (currElement != null)
+    {
+        // Find the element with the id = seconds digits
+        target = document.getElementById(currLine)
+        if (target != null)
+        {
+            // restore the previous element's background color
+            currElement.style.background = "GhostWhite";
+            currElement = target;
+            currElement.style.background = "Gainsboro"; // set background color
+            //currElement.scrollTop = 0;
+            currElement.scrollIntoView();  // scroll to it
+        }
+    }
+}
+
+// Split a poem into lins
+var fields = poem.split('\n');
+// Place each line in its own DIV with a sequential ID
+for (item in fields)
+{
+    var div = document.createElement("div");
+    div.id=item*5
+    div.style.color = "black";
+    div.style.background = "GhostWhite";
+    div.innerHTML = fields[item]; // place poem line as content
+    // Append it to the parent div
+    document.getElementById("main").appendChild(div);
+}
+
+var currLine = 1;
+var currElement = document.getElementById("5");
+// Go get the current sim time every second
+var myinterval = setInterval(gettime,1000);
+//clearTimeout(myVar);
+ 
+</script>
+</body>
+
+</html>
Index: trunk/webapps/cptms/cgi-bin/saveCMSmessage.py
===================================================================
--- trunk/webapps/cptms/cgi-bin/saveCMSmessage.py	(revision 327)
+++ trunk/webapps/cptms/cgi-bin/saveCMSmessage.py	(revision 327)
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# Save parameter to a file
+# Import modules for CGI handling 
+import cgi, cgitb, os 
+
+# Create instance of FieldStorage 
+form = cgi.FieldStorage() 
+
+# Get data from fields
+outMessage = form.getvalue('msg')
+   
+# write message to file
+text_file = open("cms_messages.json", "w")
+text_file.write(outMessage)
+text_file.close()
+
+#print "Content-type:text/html\n\n"
+#print "<html><body>"
+#print "Here is the message<br>"
+#print outMessage
+#print "<br>"
+#print "</body></html>"
Index: trunk/webapps/cptms/cgi-bin/saveHARmessage.py
===================================================================
--- trunk/webapps/cptms/cgi-bin/saveHARmessage.py	(revision 327)
+++ trunk/webapps/cptms/cgi-bin/saveHARmessage.py	(revision 327)
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# Save parameter to a file
+# Import modules for CGI handling 
+import cgi, cgitb, os 
+
+# Create instance of FieldStorage 
+form = cgi.FieldStorage() 
+
+# Get data from fields
+outMessage = form.getvalue('msg')
+   
+# write message to file
+text_file = open("har_messages.json", "w")
+text_file.write(outMessage)
+text_file.close()
+
+#print "Content-type:text/html\n\n"
+#print "<html><body>"
+#print "Here is the message<br>"
+#print outMessage
+#print "<br>"
+#print "</body></html>"
Index: trunk/webapps/cptms/scaling_dotsize_prototype.html
===================================================================
--- trunk/webapps/cptms/scaling_dotsize_prototype.html	(revision 321)
+++ trunk/webapps/cptms/scaling_dotsize_prototype.html	(revision 321)
@@ -0,0 +1,109 @@
+<!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;  
+        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>
+// 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 dotSize(factor)
+{
+    console.log("setting dot size to ", factor)
+    var border = 1;
+    if (map.getZoom() < 13) border = 1;
+    if (map.getZoom() < 11) border = 0;
+    return {
+        path:google.maps.SymbolPath.CIRCLE,
+        scale: factor,
+        strokeColor: "04B431", // the outline
+        strokeWeight: border,
+        fillColor: "red",
+        fillOpacity: 1.0
+    };
+}
+
+var map;
+// Initialize and add the map
+function initMap() {
+  // The location of John Wayne Airport
+  var wayne = {lat: 33.687228, lng: -117.872148};
+  var pt2 = {lat: 33.684551, lng: -117.862034};
+  var pt3 = {lat: 33.683404, lng: -117.858893};
+var colorRed = "FE7569"; // light red
+var colorGreen = "04B431";
+//    var redPin = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|" + colorGreen,        new google.maps.Size(21, 34),        newgoogle.maps.Point(0,0),        new google.maps.Point(10, 34));
+//    var greenPin = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|" + colorGreen,        new google.maps.Size(21, 34),        new google.maps.Point(0,0),        new google.maps.Point(10, 34));
+  // The map, centered at John Wayne Airport
+  map = new google.maps.Map(
+      document.getElementById('mapdiv'), {zoom: 13, center: wayne});
+  // The marker, positioned at John Wayne Airport
+//  var marker = new google.maps.Marker({position: wayne, map: map, icon: 'http://maps.google.com/mapfiles/ms/icons/red-dot.png'});
+//  var mark2  = new google.maps.Marker({position: pt2, map: map, icon: 'http://maps.google.com/mapfiles/ms/icons/yellow-dot.png'});
+//  var mark3  = new google.maps.Marker({position: pt3, map: map, icon: 'http://maps.google.com/mapfiles/ms/icons/green-dot.png'});
+
+  
+//  var mark3  = new google.maps.Marker(            {map: map,             position: pt3,              icon: dotSymbol('green')             }                                       );
+
+//  var trafficLayer = new google.maps.TrafficLayer();
+//   trafficLayer.setMap(map);
+
+    // Load the map data
+    map.data.loadGeoJson('highways.json');
+    // Style the map data by applying the color property to each dot
+    map.data.setStyle(function(feature) {
+        var ptColor = feature.getProperty("color");
+        return {
+            icon: dotSymbol(ptColor)
+                };
+    });
+
+    map.addListener('zoom_changed', function() {
+        console.log("Zoom changed to ",map.getZoom());
+        map.data.setStyle(function(feature) {
+        var zoomFactor = map.getZoom() - 9;
+        if (zoomFactor < 1) zoomFactor = 1;
+        return {
+            icon: dotSize(zoomFactor)
+                };
+        });
+
+    });
+
+        // Start a time to refresh the map every 5 seconds
+        //var myTimer = setInterval(dotResize, 5000);
+
+}
+    </script>
+    <script async defer
+    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD6iTyN0DjP-9OVkAgicyp4tkC10naE_B8&callback=initMap">
+    </script>
+  </body>
+</html>
Index: trunk/webapps/cptms/har_messages.json
===================================================================
--- trunk/webapps/cptms/har_messages.json	(revision 359)
+++ trunk/webapps/cptms/har_messages.json	(revision 359)
@@ -0,0 +1,1 @@
+{"data":[{"har":{"index":"HAR1","message":{"displayTime":"","phase1":{"Line1":"a long time ago in a galaxy far, far away"}}}},{"har":{"index":"HAR2","message":{"displayTime":"","phase1":{"Line1":""}}}},{"har":{"index":"HAR3","message":{"displayTime":"","phase1":{"Line1":"WHAT ABOUT { BRACES}"}}}}]}
Index: trunk/webapps/cptms/gotoxmltime.html
===================================================================
--- trunk/webapps/cptms/gotoxmltime.html	(revision 351)
+++ trunk/webapps/cptms/gotoxmltime.html	(revision 351)
@@ -0,0 +1,115 @@
+<html>
+<head>
+<style>
+.pic-container {
+    width: 500px;
+    height: 400px;
+    overflow-y: scroll;
+    overflow-x:hidden;
+}
+#clockdiv {
+    font-size: xx-large;
+    font-weight: bold;
+    font-family: "Lucida Console", Monaco, monospace;
+}
+</style>
+<body>
+<!-- Prototype for a display that scrolls to the current time -->
+<div id="clockdiv">0:00</div>
+<div> <button onclick="scrollToCurrent()">Goto Current Item</button></div>
+<div id="main" class="pic-container"></div>
+<div id="two">Footer</div>
+<script   src="poem.js"></script>
+<script  src="js/common.js"></script>
+<script>
+var xmlDoc;
+var currElement;
+var clockdiv = document.getElementById("clockdiv");
+/** Load the sim clock file and extract the clock string */
+function gettime()
+{
+    loadJSON("sim_clock.json", function(response)
+    {
+        simclockjson = JSON.parse(response);
+        clockstring = simclockjson.clock;
+        clockdiv.innerHTML = clockstring;  // Display current time
+        // Extract the seconds digits
+        digits = clockstring.substring(clockstring.length-2)
+        if (digits.charAt(0) == "0")
+        {
+            digits = digits.charAt(1);
+        }
+        // go adjust the scrolling box
+        //adjust(digits);
+    });
+}
+function getEvents()
+{
+    loadJSON("sample_events.xml", function(response)
+    {        
+        var parser = new DOMParser();
+        xmlDoc = parser.parseFromString(response,"text/xml");
+
+        // Place each line in its own DIV with a sequential ID
+        for (var idx=0; idx < 100; idx++)
+        {
+            var div = document.createElement("div");
+            MHSTime = xmlDoc.getElementsByTagName("time")[idx].childNodes[0].nodeValue;
+            div.id=MHSTime
+            div.className =  "item"
+            div.style.color = "black";
+            div.style.background = "GhostWhite";
+            div.style.height = 30;
+            div.innerHTML = MHSTime + " " + xmlDoc.getElementsByTagName("description")[idx].childNodes[0].nodeValue;
+            // Append it to the parent div
+            document.getElementById("main").appendChild(div);
+            currElement = document.getElementById("0:00:10");
+        }
+
+    });
+}
+// Highlight the current line and scroll to it.
+function scrollToCurrent()
+{
+    if (currElement != null)
+    {
+        currTime = clockdiv.innerHTML;
+        // Find the element with the id = seconds digits
+        target = findNearestElem();
+        //target = document.getElementById(currTime)
+        if (target != null)
+        {
+            // restore the previous element's background color
+            currElement.style.background = "GhostWhite";
+            currElement = target;
+            currElement.style.background = "Gainsboro"; // set background color
+            //currElement.scrollTop = 0;
+            currElement.scrollIntoView();  // scroll to it
+        }
+    }
+}
+
+function findNearestElem()
+{
+    var list = document.getElementsByClassName("item")
+    var idx = 0;
+    while (list[idx].id <  currTime) 
+    {
+        idx++;
+    }
+    return list[idx-1];
+    // Note: will crash when currTime > length of list
+}
+
+// MAIN
+
+getEvents();
+
+// Go get the current sim time every second
+var myinterval = setInterval(gettime,1000);
+//clearTimeout(myVar);
+ 
+</script>
+</body>
+
+</html>
Index: trunk/webapps/cptms/highway_status.json
===================================================================
--- trunk/webapps/cptms/highway_status.json	(revision 367)
+++ trunk/webapps/cptms/highway_status.json	(revision 367)
@@ -0,0 +1,2727 @@
+{
+  "type": "FeatureCollection",
+  "features": [
+{
+   "type": "Feature",
+   "id": "5 N 7.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.669596,33.481685]
+       },
+   "properties": 
+       {"street": "AEROPUERTO", "color": "lime", "perpx": "0.816519", "perpy": "-0.577318"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 8.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663255,33.489561]
+       },
+   "properties": 
+       {"street": "S JUAN CREEK", "color": "lime", "perpx": "0.839468", "perpy": "-0.54341"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 9.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.659127,33.495938]
+       },
+   "properties": 
+       {"street": "PLAZA", "color": "lime", "perpx": "0.972984", "perpy": "-0.230873"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 9.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.658585,33.503727]
+       },
+   "properties": 
+       {"street": "ORTEGA  2", "color": "lime", "perpx": "0.971921", "perpy": "0.235307"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 10.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.660803,33.50939]
+       },
+   "properties": 
+       {"street": "EL HORNO", "color": "lime", "perpx": "0.920027", "perpy": "0.391855"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.662568,33.513534]
+       },
+   "properties": 
+       {"street": "SERRA PARK", "color": "lime", "perpx": "0.919833", "perpy": "0.392311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.666382,33.52247]
+       },
+   "properties": 
+       {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "0.924678", "perpy": "0.38075"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.66866,33.526621]
+       },
+   "properties": 
+       {"street": "TRABUCO", "color": "lime", "perpx": "0.874948", "perpy": "0.484218"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674488,33.53247]
+       },
+   "properties": 
+       {"street": "WILDWOOD", "color": "lime", "perpx": "0.999898", "perpy": "-0.014276"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 12.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674416,33.537513]
+       },
+   "properties": 
+       {"street": "S OF 73", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672686,33.548817]
+       },
+   "properties": 
+       {"street": "AVERY PARK", "color": "lime", "perpx": "0.999609", "perpy": "-0.027961"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672848,33.558096]
+       },
+   "properties": 
+       {"street": "CROWN VA1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672791,33.560549]
+       },
+   "properties": 
+       {"street": "CROWN VA2", "color": "lime", "perpx": "0.996005", "perpy": "-0.089297"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 15.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67162,33.578849]
+       },
+   "properties": 
+       {"street": "OSO PARK 1", "color": "lime", "perpx": "0.999789", "perpy": "-0.020544"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 15.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67157,33.582052]
+       },
+   "properties": 
+       {"street": "OSO PARK2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 16.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.676059,33.597861]
+       },
+   "properties": 
+       {"street": "LA PAZ 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 16.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.678685,33.599252]
+       },
+   "properties": 
+       {"street": "LA PAZ 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 17.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.68984,33.604242]
+       },
+   "properties": 
+       {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 17.63",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.692734,33.606025]
+       },
+   "properties": 
+       {"street": "ALICIA 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 18.61",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.706467,33.613883]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "0.647648", "perpy": "0.761939"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.721491,33.629553]
+       },
+   "properties": 
+       {"street": "LAKE FOR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724337,33.632102]
+       },
+   "properties": 
+       {"street": "OLDFIELD", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72806,33.636144]
+       },
+   "properties": 
+       {"street": "BAKE 1", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.731437,33.640323]
+       },
+   "properties": 
+       {"street": "BAKE 2", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 21.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734444,33.644068]
+       },
+   "properties": 
+       {"street": "At 405", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.742629,33.654371]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.743597,33.655581]
+       },
+   "properties": 
+       {"street": "ALTON 3", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.748817,33.662274]
+       },
+   "properties": 
+       {"street": "BARRANCA", "color": "lime", "perpx": "0.770018", "perpy": "0.638022"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.751722,33.66578]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753237,33.667646]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755266,33.671657]
+       },
+   "properties": 
+       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "0.972906", "perpy": "0.2312"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 24.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759083,33.67881]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 24.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.76413,33.68378]
+       },
+   "properties": 
+       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.768954,33.691182]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.769532,33.692068]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.774934,33.700287]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "0.835661", "perpy": "0.549245"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 26.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.781713,33.709761]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 26.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784619,33.712411]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 27.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.794408,33.719297]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 27.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.794541,33.719391]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 28.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801722,33.724394]
+       },
+   "properties": 
+       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "0.570509", "perpy": "0.821292"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 29.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.817068,33.73489]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 29.79",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.825811,33.738115]
+       },
+   "properties": 
+       {"street": "NEWPORT*", "color": "lime", "perpx": "0.29944", "perpy": "0.954115"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.829214,33.739183]
+       },
+   "properties": 
+       {"street": "B ST.", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832416,33.740283]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.835585,33.741403]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.841283,33.744413]
+       },
+   "properties": 
+       {"street": "1ST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.844061,33.750124]
+       },
+   "properties": 
+       {"street": "4TH", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845939,33.752049]
+       },
+   "properties": 
+       {"street": "CONCORD", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.848788,33.753753]
+       },
+   "properties": 
+       {"street": "GRAND 1", "color": "lime", "perpx": "0.435561", "perpy": "0.900159"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.850781,33.754689]
+       },
+   "properties": 
+       {"street": "GRAND 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859664,33.758644]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.862379,33.760465]
+       },
+   "properties": 
+       {"street": "17TH 2", "color": "lime", "perpx": "0.753317", "perpy": "0.657658"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.863369,33.761599]
+       },
+   "properties": 
+       {"street": "17TH 3", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 7.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.669881,33.481738]
+       },
+   "properties": 
+       {"street": "AEROPUERTO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 8.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663917,33.489176]
+       },
+   "properties": 
+       {"street": "S JUAN CREEK", "color": "lime", "perpx": "-0.836267", "perpy": "0.548322"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 9.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.659442,33.496001]
+       },
+   "properties": 
+       {"street": "PLAZA", "color": "lime", "perpx": "-0.971491", "perpy": "0.237077"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 9.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.658583,33.499521]
+       },
+   "properties": 
+       {"street": "ORTEGA 1", "color": "lime", "perpx": "-0.996721", "perpy": "-0.080919"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.661127,33.5093]
+       },
+   "properties": 
+       {"street": "EL HORNO", "color": "lime", "perpx": "-0.918881", "perpy": "-0.394535"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.662905,33.513441]
+       },
+   "properties": 
+       {"street": "SERRA PARK", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.664664,33.517588]
+       },
+   "properties": 
+       {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 11.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.668912,33.526418]
+       },
+   "properties": 
+       {"street": "TRABUCO", "color": "lime", "perpx": "-0.878964", "perpy": "-0.476887"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 11.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674919,33.53231]
+       },
+   "properties": 
+       {"street": "WILDWOOD", "color": "lime", "perpx": "-0.999508", "perpy": "0.03137"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 12.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674695,33.539447]
+       },
+   "properties": 
+       {"street": "S of 73", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 12.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673404,33.545217]
+       },
+   "properties": 
+       {"street": "AVERY 1", "color": "lime", "perpx": "-0.993564", "perpy": "0.113275"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 13.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673131,33.556667]
+       },
+   "properties": 
+       {"street": "CROWN VA1", "color": "lime", "perpx": "-0.999988", "perpy": "0.004899"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 15.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671983,33.577397]
+       },
+   "properties": 
+       {"street": "OSO PARK1", "color": "lime", "perpx": "-0.999891", "perpy": "0.014798"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 15.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671925,33.581316]
+       },
+   "properties": 
+       {"street": "OSO PARK2", "color": "lime", "perpx": "-0.999911", "perpy": "0.013321"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 16.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673779,33.595354]
+       },
+   "properties": 
+       {"street": "LA PAZ 1", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 16.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67615,33.597607]
+       },
+   "properties": 
+       {"street": "LA PAZ 2", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 17.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.687691,33.602645]
+       },
+   "properties": 
+       {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 17.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.69087,33.604617]
+       },
+   "properties": 
+       {"street": "ALICIA 2", "color": "lime", "perpx": "-0.527137", "perpy": "-0.849781"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 18.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.705361,33.612561]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 18.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.707825,33.614654]
+       },
+   "properties": 
+       {"street": "EL TORO 2", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 19.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719875,33.627286]
+       },
+   "properties": 
+       {"street": "LAKE FOR1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 19.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720919,33.628454]
+       },
+   "properties": 
+       {"street": "LAKE FOR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724813,33.631989]
+       },
+   "properties": 
+       {"street": "OLDFIELD", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.728446,33.635959]
+       },
+   "properties": 
+       {"street": "BAKE 1", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.731896,33.640308]
+       },
+   "properties": 
+       {"street": "BAKE 2", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 21.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734722,33.643978]
+       },
+   "properties": 
+       {"street": "At 405", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74294,33.654255]
+       },
+   "properties": 
+       {"street": "ALTON 1", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.743323,33.654741]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.749253,33.662021]
+       },
+   "properties": 
+       {"street": "BARRANCA", "color": "lime", "perpx": "-0.788481", "perpy": "-0.615059"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.75203,33.665581]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "-0.781645", "perpy": "-0.623724"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.7525,33.66617]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755616,33.6716]
+       },
+   "properties": 
+       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "-0.975596", "perpy": "-0.219572"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.756223,33.674297]
+       },
+   "properties": 
+       {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759362,33.67863]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764425,33.683599]
+       },
+   "properties": 
+       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "-0.835705", "perpy": "-0.549178"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.767277,33.687939]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 25.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.775267,33.700148]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "-0.828715", "perpy": "-0.559671"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 26.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.779935,33.70706]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 26.66",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.783134,33.710634]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "-0.654674", "perpy": "-0.755912"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 27.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793071,33.717966]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 27.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796638,33.72047]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.574555", "perpy": "-0.818466"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 28.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801999,33.724136]
+       },
+   "properties": 
+       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "-0.556796", "perpy": "-0.83065"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.02",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.814369,33.732587]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "-0.566824", "perpy": "-0.823839"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.824499,33.737386]
+       },
+   "properties": 
+       {"street": "NEWPORT*", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.827716,33.738432]
+       },
+   "properties": 
+       {"street": "B ST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832494,33.740098]
+       },
+   "properties": 
+       {"street": "S OF 55*", "color": "lime", "perpx": "-0.326161", "perpy": "-0.945314"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.835743,33.741219]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "-0.33389", "perpy": "-0.942612"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842538,33.745553]
+       },
+   "properties": 
+       {"street": "1ST", "color": "lime", "perpx": "-0.927915", "perpy": "-0.372793"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.844652,33.749928]
+       },
+   "properties": 
+       {"street": "4TH", "color": "lime", "perpx": "-0.697138", "perpy": "-0.716937"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.846535,33.751759]
+       },
+   "properties": 
+       {"street": "CONCORD", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.849326,33.753388]
+       },
+   "properties": 
+       {"street": "GRAND 1", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.853795,33.755475]
+       },
+   "properties": 
+       {"street": "GRAND 2", "color": "lime", "perpx": "-0.382512", "perpy": "-0.923951"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 32.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859225,33.757943]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "-0.583453", "perpy": "-0.812147"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866976,33.766429]
+       },
+   "properties": 
+       {"street": "MAIN 1", "color": "lime", "perpx": "-0.855987", "perpy": "-0.516997"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.868373,33.768742]
+       },
+   "properties": 
+       {"street": "MAIN 2", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.869238,33.770032]
+       },
+   "properties": 
+       {"street": "BROADWAY", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.874337,33.776289]
+       },
+   "properties": 
+       {"street": "S OF 22", "color": "lime", "perpx": "-0.780234", "perpy": "-0.625487"}
+},  
+
+{
+   "type": "Feature",
+   "id": "55 N 4.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.888101,33.671785]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "0.612685", "perpy": "-0.790327"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.886575,33.672968]
+       },
+   "properties": 
+       {"street": "BAKER 1", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.06",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882208,33.676702]
+       },
+   "properties": 
+       {"street": "BAKER 2", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.877327,33.681801]
+       },
+   "properties": 
+       {"street": "PAULARINO 1", "color": "lime", "perpx": "0.73612", "perpy": "-0.676851"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.873498,33.685939]
+       },
+   "properties": 
+       {"street": "PAULARINO 2", "color": "lime", "perpx": "0.719864", "perpy": "-0.694115"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 6.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.861831,33.698026]
+       },
+   "properties": 
+       {"street": "MACARTHU1", "color": "lime", "perpx": "0.740557", "perpy": "-0.671994"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 7.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.860155,33.699873]
+       },
+   "properties": 
+       {"street": "MACARTHU2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 7.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.85183,33.708364]
+       },
+   "properties": 
+       {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 8.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.848847,33.711314]
+       },
+   "properties": 
+       {"street": "DYER 2", "color": "lime", "perpx": "0.71172", "perpy": "-0.702463"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 9.41",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.83503,33.726049]
+       },
+   "properties": 
+       {"street": "EDINGER 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 9.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833555,33.732101]
+       },
+   "properties": 
+       {"street": "MCFADDEN", "color": "lime", "perpx": "0.999932", "perpy": "-0.011627"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833583,33.737088]
+       },
+   "properties": 
+       {"street": "N OF 5 OFF", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.83368,33.739982]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.999923", "perpy": "0.012439"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833698,33.741429]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "0.97478", "perpy": "-0.22317"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 11.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831768,33.749859]
+       },
+   "properties": 
+       {"street": "FOURTH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 11.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830994,33.759105]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830834,33.762898]
+       },
+   "properties": 
+       {"street": "17TH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 12.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830912,33.773139]
+       },
+   "properties": 
+       {"street": "FAIRHAVEN", "color": "lime", "perpx": "0.999999", "perpy": "0.001196"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 4.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.888309,33.671928]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "-0.612257", "perpy": "0.790659"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88678,33.673112]
+       },
+   "properties": 
+       {"street": "BAKER 1", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.06",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882355,33.676789]
+       },
+   "properties": 
+       {"street": "BAKER 2", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87755,33.681935]
+       },
+   "properties": 
+       {"street": "PAULARINO 1", "color": "lime", "perpx": "-0.722093", "perpy": "0.691796"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.873635,33.686016]
+       },
+   "properties": 
+       {"street": "PAULARINO 2", "color": "lime", "perpx": "-0.725185", "perpy": "0.688554"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 6.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.862677,33.697495]
+       },
+   "properties": 
+       {"street": "MACARTHU1", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 7.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.861041,33.699146]
+       },
+   "properties": 
+       {"street": "MACARTHU2", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 8.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.849099,33.711451]
+       },
+   "properties": 
+       {"street": "DYER 2", "color": "lime", "perpx": "-0.708914", "perpy": "0.705295"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 9.19",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.837265,33.723387]
+       },
+   "properties": 
+       {"street": "EDINGER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 9.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833996,33.73212]
+       },
+   "properties": 
+       {"street": "MCFADDEN", "color": "lime", "perpx": "-0.999946", "perpy": "-0.010425"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833908,33.739982]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.999756", "perpy": "0.022109"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833876,33.741429]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "-0.987616", "perpy": "0.156888"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 11.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831392,33.75738]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 12.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831088,33.773138]
+       },
+   "properties": 
+       {"street": "FAIRHAVEN", "color": "lime", "perpx": "-0.999999", "perpy": "-0.001368"}
+},  
+
+{
+   "type": "Feature",
+   "id": "73 N 25.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.870921,33.659804]
+       },
+   "properties": 
+       {"street": "ORCHID", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 25.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87634,33.663519]
+       },
+   "properties": 
+       {"street": "CAMPUS", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 26.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883175,33.67012]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "0.756677", "perpy": "0.653789"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 26.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887299,33.674893]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0.76071", "perpy": "0.649092"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 27.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.894515,33.683052]
+       },
+   "properties": 
+       {"street": "BEAR 2", "color": "lime", "perpx": "0.737613", "perpy": "0.675223"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 27.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.897754,33.686594]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 25.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.871215,33.659515]
+       },
+   "properties": 
+       {"street": "ORCHID", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 25.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876633,33.66324]
+       },
+   "properties": 
+       {"street": "CAMPUS", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 26.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88342,33.669908]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "-0.750726", "perpy": "-0.660614"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 26.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887584,33.67464]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "-0.742508", "perpy": "-0.669837"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 27.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.892743,33.68058]
+       },
+   "properties": 
+       {"street": "BEAR 1", "color": "lime", "perpx": "-0.749261", "perpy": "-0.662275"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 27.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.898045,33.686456]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "133 N 9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.754967,33.661697]
+       },
+   "properties": 
+       {"street": "BARRANCA1", "color": "lime", "perpx": "0.851313", "perpy": "-0.524659"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753976,33.663305]
+       },
+   "properties": 
+       {"street": "BARRANCA2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753044,33.667495]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.976143", "perpy": "-0.217128"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753243,33.672836]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.752421,33.676181]
+       },
+   "properties": 
+       {"street": "MARINE WAY", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.748819,33.680812]
+       },
+   "properties": 
+       {"street": "N OF MARINE", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.746935,33.683166]
+       },
+   "properties": 
+       {"street": "S OF PM 11", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.7553,33.66184]
+       },
+   "properties": 
+       {"street": "BARRANCA2", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753428,33.667665]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753623,33.673029]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.752844,33.676396]
+       },
+   "properties": 
+       {"street": "MARINE WAY", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74924,33.68106]
+       },
+   "properties": 
+       {"street": "N OF MARINE", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747277,33.683386]
+       },
+   "properties": 
+       {"street": "S OF PM 11", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"}
+},  
+
+{
+   "type": "Feature",
+   "id": "261 N 0.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.800349,33.712252]
+       },
+   "properties": 
+       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.797696,33.715376]
+       },
+   "properties": 
+       {"street": "WALNUT 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.795181,33.717083]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.789435,33.720342]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 1.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.782735,33.72367]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.800638,33.7124]
+       },
+   "properties": 
+       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.795434,33.717315]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.789693,33.720604]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 1.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.782999,33.723902]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"}
+},  
+
+{
+   "type": "Feature",
+   "id": "405 N 0.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.746598,33.64809]
+       },
+   "properties": 
+       {"street": "IRVINE C1", "color": "lime", "perpx": "0.282096", "perpy": "0.959386"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.11",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74955,33.648958]
+       },
+   "properties": 
+       {"street": "IRVINE C2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.57",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.757101,33.651141]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0.202053", "perpy": "0.979375"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763194,33.652204]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 2.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.770173,33.65368]
+       },
+   "properties": 
+       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.780107,33.659163]
+       },
+   "properties": 
+       {"street": "SAND CANYON", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784046,33.661319]
+       },
+   "properties": 
+       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "0.480131", "perpy": "0.877197"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.86",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793258,33.663379]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 4.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796176,33.663798]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.812902,33.666407]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813561,33.66659]
+       },
+   "properties": 
+       {"street": "SPRUCE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.821657,33.669218]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0.332642", "perpy": "0.943053"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.824699,33.670291]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 6.21",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832271,33.672851]
+       },
+   "properties": 
+       {"street": "HARVARD", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 6.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842488,33.676465]
+       },
+   "properties": 
+       {"street": "JAMBOREE1", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 7.07",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845871,33.677945]
+       },
+   "properties": 
+       {"street": "JAMBOREE2", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 7.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.85598,33.682442]
+       },
+   "properties": 
+       {"street": "MACARTHUR 1", "color": "lime", "perpx": "0.408917", "perpy": "0.912572"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 8.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.864081,33.686072]
+       },
+   "properties": 
+       {"street": "AIRPORT", "color": "lime", "perpx": "0.321527", "perpy": "0.9469"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 8.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866348,33.686795]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "0.126754", "perpy": "0.991934"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 9.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.884653,33.687523]
+       },
+   "properties": 
+       {"street": "BRISTOL 1", "color": "lime", "perpx": "0.0", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 9.65",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887956,33.687523]
+       },
+   "properties": 
+       {"street": "BRISTOL 2", "color": "lime", "perpx": "0.0", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 10.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.909664,33.688017]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 11.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.918196,33.688872]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 12.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.930032,33.693692]
+       },
+   "properties": 
+       {"street": "HAMPSHIRE", "color": "lime", "perpx": "0.384478", "perpy": "0.923134"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 12.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.940729,33.69816]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 13.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.953701,33.704947]
+       },
+   "properties": 
+       {"street": "BROOKHUR1", "color": "lime", "perpx": "0.642988", "perpy": "0.765876"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 13.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.956518,33.707312]
+       },
+   "properties": 
+       {"street": "BROOKHUR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 14.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.966959,33.716027]
+       },
+   "properties": 
+       {"street": "WARNER", "color": "lime", "perpx": "0.643494", "perpy": "0.765452"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 15.17",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.971245,33.719628]
+       },
+   "properties": 
+       {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.639234", "perpy": "0.769012"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 15.39",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.973953,33.721879]
+       },
+   "properties": 
+       {"street": "MAGNOLIA2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 16.52",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.988885,33.732527]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "0.571725", "perpy": "0.820445"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 16.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.992088,33.734759]
+       },
+   "properties": 
+       {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 17.92",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.00667,33.746378]
+       },
+   "properties": 
+       {"street": "GOLDEN WEST", "color": "lime", "perpx": "0.642886", "perpy": "0.765962"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 19.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.022852,33.759918]
+       },
+   "properties": 
+       {"street": "WESTMINISTER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 0.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744091,33.647015]
+       },
+   "properties": 
+       {"street": "IRVINE C1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 0.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747203,33.64795]
+       },
+   "properties": 
+       {"street": "IRVINE C2", "color": "lime", "perpx": "-0.287743", "perpy": "-0.957708"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 1.57",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.757205,33.650789]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "-0.197097", "perpy": "-0.980384"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 1.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763315,33.651837]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 2.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.770361,33.653346]
+       },
+   "properties": 
+       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 2.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.778085,33.657534]
+       },
+   "properties": 
+       {"street": "SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 3.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784273,33.660957]
+       },
+   "properties": 
+       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 3.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793047,33.66293]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 4.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796283,33.663404]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.81298,33.666093]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813632,33.666292]
+       },
+   "properties": 
+       {"street": "SPRUCE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.820882,33.668738]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.823958,33.669737]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 6.21",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832329,33.672571]
+       },
+   "properties": 
+       {"street": "HARVARD", "color": "lime", "perpx": "-0.314462", "perpy": "-0.94927"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 6.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.84179,33.675863]
+       },
+   "properties": 
+       {"street": "JAMBOREE1", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 7.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845019,33.677283]
+       },
+   "properties": 
+       {"street": "JAMBOREE2", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 7.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.855449,33.681922]
+       },
+   "properties": 
+       {"street": "MACARTHUR1", "color": "lime", "perpx": "-0.399707", "perpy": "-0.916643"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.86423,33.685751]
+       },
+   "properties": 
+       {"street": "AIRPORT", "color": "lime", "perpx": "-0.358185", "perpy": "-0.933651"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866474,33.686517]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "-0.259554", "perpy": "-0.965729"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875063,33.687245]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 9.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88618,33.687251]
+       },
+   "properties": 
+       {"street": "BRISTOL 1", "color": "lime", "perpx": "-0.013748", "perpy": "-0.999905"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 10.28",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.899035,33.68748]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 10.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.902507,33.687582]
+       },
+   "properties": 
+       {"street": "N OF 73", "color": "lime", "perpx": "-0.028158", "perpy": "-0.999603"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 11.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.915002,33.687942]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "-0.248611", "perpy": "-0.968603"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 11.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.91995,33.689212]
+       },
+   "properties": 
+       {"street": "HARBOR 2", "color": "lime", "perpx": "-0.364549", "perpy": "-0.931184"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 12.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.930222,33.693448]
+       },
+   "properties": 
+       {"street": "HAMPSHIRE", "color": "lime", "perpx": "-0.385484", "perpy": "-0.922714"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 12.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.9355,33.695653]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 13.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.947913,33.700854]
+       },
+   "properties": 
+       {"street": "TALBERT", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 13.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.954762,33.705479]
+       },
+   "properties": 
+       {"street": "BROOKHURST2", "color": "lime", "perpx": "-0.559633", "perpy": "-0.828741"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 14.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.965935,33.714839]
+       },
+   "properties": 
+       {"street": "WARNER", "color": "lime", "perpx": "-0.642116", "perpy": "-0.766608"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 15.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.971343,33.71936]
+       },
+   "properties": 
+       {"street": "MAGNOLIA 1", "color": "lime", "perpx": "-0.644821", "perpy": "-0.764334"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 16.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.98561,33.72995]
+       },
+   "properties": 
+       {"street": "EDINGER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 16.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.990146,33.733102]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "-0.580003", "perpy": "-0.814614"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 17.66",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.003642,33.743534]
+       },
+   "properties": 
+       {"street": "BOLSA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 17.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.007585,33.7468]
+       },
+   "properties": 
+       {"street": "GOLDEN WEST", "color": "lime", "perpx": "-0.646922", "perpy": "-0.762556"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 19.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.020707,33.757778]
+       },
+   "properties": 
+       {"street": "WESTMINSTER", "color": "lime", "perpx": "0", "perpy": "0"}
+}   
+  ]
+}
Index: trunk/webapps/cptms/poem.js
===================================================================
--- trunk/webapps/cptms/poem.js	(revision 348)
+++ trunk/webapps/cptms/poem.js	(revision 348)
@@ -0,0 +1,100 @@
+var poem = "Now we will count to twelve\n" +
+"and we will all keep still\n" +
+"For once on the face of the earth,\n" +
+"let's stop for a second,\n" +
+"and not move our arms so much.\n" +
+"It would be an exotic moment\n" +
+"without rush, without engines;\n" +
+"we would all be together\n" +
+"in a sudden strangeness.\n" +
+"Fisherman in the cold sea\n" +
+"would not harm whales\n" +
+"and the man gathering salt\n" +
+"would not look at his hurt hands.\n" +
+"Those who prepare green wars,\n" +
+"wars with gas, wars with fire,\n" +
+"victories with no survivors,\n" +
+"would put on clean clothes\n" +
+"and walk about with their brothers\n" +
+"in the shade, doing nothing.\n" +
+"What I want should not be confused\n" +
+"with total inactivity.\n" +
+"Life is what it is about;...\n" +
+"If we were not so single-minded\n" +
+"about keeping our lives moving,\n" +
+"and for once could do nothing,\n" +
+"perhaps a huge silence\n" +
+"might interrupt this sadness\n" +
+"of never understanding ourselves\n" +
+"and of threatening ourselves with death.\n" +
+"Perhaps the earth can teach us\n" +
+"as when everything seems dead in winter\n" +
+"and later proves to be alive.\n" +
+"Now I'll count up to twelve\n" +
+"and you keep quiet and I will go. \n" +
+"Something\n" +
+"just now\n" +
+"moved through my heart\n" +
+"like the thinnest of blades\n" +
+"as that red-tail pumped\n" +
+"once with its great wings\n" +
+"and flew above the gray, cracked\n" +
+"rock wall.\n" +
+"It wasn't\n" +
+"about the bird, it was\n" +
+"something about the way\n" +
+"stone stays\n" +
+"mute and put, whatever\n" +
+"goes flashing by.\n" +
+"Sometimes,\n" +
+"when I sit like this, quiet,\n" +
+"all the dreams of my blood\n" +
+"and all outrageous divisions of time\n" +
+"seem ready to leave,\n" +
+"to slide out of me.\n" +
+"Then, I imagine, I would never move.\n" +
+"By now\n" +
+"the hawk has flown five miles\n" +
+"at least,\n" +
+"dazzling whoever else has happened\n" +
+"to look up.\n" +
+"I was dazzled. But that\n" +
+"wasn't the knife.\n" +
+"It was the sheer, dense wall\n" +
+"of blind stone\n" +
+"without a pinch of hope\n" +
+"or a single unfulfilled desire\n" +
+"sponging up and reflecting,\n" +
+"so brilliantly,\n" +
+"as it has for centuries,\n" +
+"the sun's fire.\n" +
+"An eagle's nest on the head of an old redwood on one of the\n" +
+"precipice-footed ridges\n" +
+"Above Ventana Creek, that jagged country which nothing but a\n" +
+"falling meteor will ever plow; no horseman\n" +
+"Will ever ride there, no hunter cross this ridge but the winged\n" +
+"ones, no one will steal the eggs from this fortress.\n" +
+"The she-eagle is old, her mate was shot long ago, she is now mated\n" +
+"with a son of hers.\n" +
+"When lightning blasted her nest she built it again on the same\n" +
+"tree, in the splinters of the thunderbolt.\n" +
+"The she-eagle is older than I; she was here when the fires of\n" +
+"eighty-five raged on these ridges,\n" +
+"She was lately fledged and dared not hunt ahead of them but ate\n" +
+"scorched meat. The world has changed in her time;\n" +
+"Humanity has multiplied, but not here; men's hopes and thoughts\n" +
+"and customs have changed, their powers are enlarged,\n" +
+"Their powers and their follies have become fantastic,\n" +
+"The unstable animal never has been changed so rapidly. The\n" +
+"motor and the plane and the great war have gone over him,\n" +
+"And Lenin has lived and Jehovah died: while the mother-eagle\n" +
+"Hunts her same hills, crying the same beautiful and lonely cry and\n" +
+"is never tired; dreams the same dreams,\n" +
+"And hears at night the rock-slides rattle and thunder in the throats\n" +
+"of these living mountains.\n" +
+"It is good for man\n" +
+"To try all changes, progress and corruption, powers, peace and\n" +
+"anguish, not to go down the dinosaur's way\n" +
+"Until all his capacities have been explored: and it is good for him\n" +
+"To know that his needs and nature are no more changed in fact\n" +
+"in ten thousand years than the beaks of eagles.";
Index: trunk/webapps/cptms/sim_elapsedtime.json
===================================================================
--- trunk/webapps/cptms/sim_elapsedtime.json	(revision 367)
+++ trunk/webapps/cptms/sim_elapsedtime.json	(revision 367)
@@ -0,0 +1,1 @@
+{"elapsedtime":"24"}
Index: trunk/webapps/cptms/js/controls.js
===================================================================
--- trunk/webapps/cptms/js/controls.js	(revision 326)
+++ trunk/webapps/cptms/js/controls.js	(revision 326)
@@ -0,0 +1,100 @@
+    // Initialize the center button (to re-center the map)
+    function initCenter()
+    {
+        var centerBtnDiv = document.getElementById('ctrButton');
+        map.controls[google.maps.ControlPosition.RIGHT_CENTER].push(centerBtnDiv)
+        centerBtnDiv.title = 'Click to recenter the map';
+
+        // Setup the click event listeners: reset center location and zoom factor
+        centerBtnDiv.addEventListener('click', function()
+        {
+            map.setCenter(centerPoint);
+            map.setZoom(initZoom);
+            clearPlacePins();
+        });
+    }
+
+    // Initialize the search box and listener 
+    function initSearch()
+    {
+        // Create the search box and link it to the UI element.
+        var input = document.getElementById('search-input');
+        var searchBox = new google.maps.places.SearchBox(input);
+        map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
+
+        // Bias the SearchBox results towards current map's viewport.
+        map.addListener('bounds_changed', function()
+        {
+            searchBox.setBounds(map.getBounds());
+        });
+
+        // Listen for the event fired when the user selects a prediction and retrieve
+        // more details for that place.
+        searchBox.addListener('places_changed', function()
+        {
+            var places = searchBox.getPlaces();
+
+            if (places.length == 0)
+            {
+                return;
+            }
+
+            clearPlacePins();
+
+            // Create a bounding region to include the search result places
+            var bounds = new google.maps.LatLngBounds();
+            // For each place, get the icon, name and location.
+            // There may be multiple search results
+            places.forEach(function(place)
+            {
+                if (!place.geometry)
+                {
+                    console.log("Returned place contains no geometry");
+                    return;
+                }
+
+                // Create a marker for each place.
+                placeMarker = new google.maps.Marker(
+                {
+                    map: map,
+                    title: place.name,
+                    position: place.geometry.location
+                })
+
+                // Click on the marker to remove it from the display
+                placeMarker.addListener('click', function()
+                {
+                    placeMarker.setMap(null);
+                });
+
+                // Add this marker to the collection of current markers 
+                placePins.push(placeMarker);
+
+                // Create a bounding region to include this place
+                if (place.geometry.viewport)
+                {
+                    // Only geocodes have viewport.
+                    bounds.union(place.geometry.viewport);
+                }
+                else
+                {
+                    bounds.extend(place.geometry.location);
+                }
+            });
+            // This will pan and zoom to the area around the marker
+            //map.fitBounds(bounds);
+            // This will center the map on the new marker(s) but not zoom
+            map.setCenter(bounds.getCenter());
+        });
+    }
+
+    // Remove any place pins from a previous search
+    function clearPlacePins()
+    {
+        placePins.forEach(function(marker)
+        {
+            marker.setMap(null);
+        });
+        placePins = [];
+    }
+
Index: trunk/webapps/cptms/js/harLayer.js
===================================================================
--- trunk/webapps/cptms/js/harLayer.js	(revision 357)
+++ trunk/webapps/cptms/js/harLayer.js	(revision 357)
@@ -0,0 +1,164 @@
+function initHARbutton()
+{
+    var harBtnDiv = document.getElementById('harButton');
+    map.controls[google.maps.ControlPosition.LEFT_BOTTOM].push(harBtnDiv)
+    harBtnDiv.title = 'Click to toggle har view';
+    // Setup the click event listeners to toggle icon display
+    harBtnDiv.addEventListener('click', function()
+    {
+        har_showing = !har_showing;
+        // Determine which button image to show
+        if (har_showing)
+        {
+            pic = "images/btnDepressed_HAR.png"
+            // It's nice when icons become visible that the messages have been refreshed.
+            loadAllharMessages();
+        }
+        else
+        {
+            pic = "images/btnReady_HAR.png"
+        }
+        document.getElementById('harBtnImg').src = pic;
+        // reveal or hide all the icons
+        harLayer.forEach(function(feature)
+        {
+            harLayer.overrideStyle(feature,
+            {
+                visible: har_showing
+            });
+        });
+    });
+}
+function loadHARlayer()
+{
+    harLayer = new google.maps.Data();
+    harLayer.setMap(map);
+    harLayer.loadGeoJson(kHARfile);  
+    harLayer.setStyle(function(feature)
+    {
+        // return the StyleOptions
+        return {
+            icon: iconHARactive,
+            title: feature.getId()+ " " +feature.getProperty("location")+ " " 
+                    + feature.getProperty("street"),
+            visible: false
+        };
+    });
+    
+    harLayer.addListener('click', function(event)
+    {
+        var dialog = document.getElementById('har-dialog');
+        // Note: If the dialog is already being displayed when someone else
+        // updates the message, it won't be reflected in the dialog, until
+        // you close and reopen it.
+        dialog.style.display = 'block';
+        harID = event.feature.getId();
+        // Assign to the hidden field
+        document.getElementById('harID').value = harID;
+        showHARMessage(harID); // note: this is async
+        document.getElementById('har-info-label').innerHTML = "HAR ID: " +
+            harID + "&nbsp;&nbsp;&nbsp;LOCATION: " + event.feature.getProperty("location")
+            + "&nbsp;&nbsp;" + event.feature.getProperty("street");
+        // clear input fields
+        document.getElementById('har-msgcontent1').value = "";
+        document.getElementById('har-msgcontent1').focus();
+        var span = document.getElementById('har-close');
+            // When the user clicks on <span> (x), close the modal
+        span.addEventListener('click',function()
+        {
+            handleDialogClose('har-dialog');
+        });
+    });
+}
+
+    function handleHARsubmit()
+    {
+        // recover the user's response
+        var response1 = document.getElementById('har-msgcontent1').value.trim();
+
+        var newMsg = response1;
+        if (newMsg.length == 0)
+        {
+            alert("Nothing to Send ... input fields are empty.");
+        }
+        else
+        {
+            document.getElementById('har-msgdisplay1').value = response1;
+
+            saveHARMessage(response1);
+        }
+    }
+
+    function handleHARclear()
+    {
+        document.getElementById('har-msgdisplay1').value = "";
+        saveHARMessage("");
+    }
+
+    // Save an updated har message to the file
+    function saveHARMessage(outMessage)
+    {
+        // Fetch harID from hidden field where it was put when dialog opened.
+        var harID = document.getElementById('harID').value;
+        HARmessageDict[harID].har.message.phase1.Line1 = outMessage;
+        // Set icon to reflect message state
+        if (outMessage == "")
+        {
+            currentIcon = {icon: iconHARidle};
+        }
+        else
+        {
+            currentIcon = {icon: iconHARactive};
+        }
+        harLayer.overrideStyle(harLayer.getFeatureById(harID), currentIcon)
+        // convert messasge to json string 
+        jsonstring = JSON.stringify(Object.values(HARmessageDict));
+        outString = "{\"data\":" + jsonstring + "}";
+
+        var xhttp = new XMLHttpRequest();
+        xhttp.open("GET", "cgi-bin/saveHARmessage.py?msg=" + outString, true);
+        xhttp.send();
+        // Using POST might be a better idea ... haven't tried this yet
+        //      var xhr = new XMLHttpRequest();
+        //      xhr.open("POST", "/cgi-bin/saveMessage.py?", true);
+        //      xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
+        // send the collected data as JSON
+        //      xhr.send(JSON.stringify(messageList));
+    }
+
+    // retrieve the current har message file
+    function showHARMessage(harID)
+    {
+        loadAllharMessages();  // because someone else may have made a recent update
+        // lookup the message for this har ID
+        var message = HARmessageDict[harID].har.message;
+        // show the message in the display
+        document.getElementById('har-msgdisplay1').value = message.phase1.Line1.toUpperCase();
+
+    }
+    function loadAllharMessages()
+    {
+        loadJSON("har_messages.json", function(response)
+        {
+            // Parse JSON string into object
+            messagejson = JSON.parse(response);
+            // Add each message to a lookup dictionary 
+            for (var i = 0; i < messagejson.data.length; i++)
+            {
+                var item = messagejson.data[i];
+                HARmessageDict[item.har.index] = item;
+                // Set the appropriate icon on the har icon
+                //  if there's currently no message
+                if (item.har.message.phase1.Line1 == "")
+                {
+                    harLayer.overrideStyle(harLayer.getFeatureById(item.har.index), {icon: iconHARidle})
+                }
+                else
+                {
+                    harLayer.overrideStyle(harLayer.getFeatureById(item.har.index), {icon: iconHARactive})
+                }   
+            }
+        });
+    }
+
+
Index: trunk/webapps/cptms/js/common.js
===================================================================
--- trunk/webapps/cptms/js/common.js	(revision 348)
+++ trunk/webapps/cptms/js/common.js	(revision 348)
@@ -0,0 +1,31 @@
+    // Load the dynamic json file for highways, etc.
+    // Ref: https://codepen.io/KryptoniteDove/post/load-json-file-locally-using-pure-javascript
+    function loadJSON(inFile, callback)
+    {
+        var xobj = new XMLHttpRequest();
+        // Assume XML unless filename ends with .json
+        if (inFile.endsWith(".json"))
+        {
+            xobj.overrideMimeType("application/json");
+        }
+        xobj.open('GET', inFile, true);
+        xobj.onreadystatechange = function()
+        {
+            if (xobj.readyState == 4 && xobj.status == "200")
+            {
+                callback(xobj.responseText);
+            }
+        };
+        // We want ajax to ignore any cached responses
+        xobj.setRequestHeader('If-Modified-Since', 'Sat, 01 Jan 2000 01:01:01 GMT')
+        xobj.send(null);
+    }
+
+
+    function handleDialogClose(id)
+    {
+        // hide the display
+        document.getElementById(id).style.display = 'none'
+    }
+
+
Index: trunk/webapps/cptms/js/vdsLayer.js
===================================================================
--- trunk/webapps/cptms/js/vdsLayer.js	(revision 337)
+++ trunk/webapps/cptms/js/vdsLayer.js	(revision 337)
@@ -0,0 +1,161 @@
+    // Build a solid colored icon to use instead of the classic pin
+    function dotSymbol(color) 
+    {
+        var iconPath = iconVDSwhite;
+        if (color == 'red')
+        {
+           iconPath = iconVDSred;
+        }
+        else if (color == 'yellow')
+        {
+            iconPath = iconVDSyellow;
+        }
+        else if (color == 'lime')
+        {
+            iconPath = iconVDSgreen;
+        }
+        return {
+            url: iconPath, 
+            anchor: new google.maps.Point(6, 6)
+        };
+    }
+
+    // Load the map data from a json file and style all the points
+    function loadVDSlayer()
+    {
+        // Load the static map data and call saveCoords when done
+        map.data.loadGeoJson(kMapStartupFile, null, saveCoords)
+        // Style the map data by applying the desired properties to each feature (marker)
+        // The function will be called every time a feature's properties are updated.
+        map.data.setStyle(function(feature)
+        {
+            // Get the postmile id 
+            var name = feature.getId();
+            // Get the desired color value
+            var ptColor = feature.getProperty("color");
+            var street = feature.getProperty("street");
+            // Build the marker
+            var iconSymbol = dotSymbol(ptColor);
+            // return the StyleOptions
+            return {
+                icon: iconSymbol,
+                title: name + " @" + street, // set rollover text
+                // set zIndex for slowed traffic to a higher value so they overlap
+                zIndex: colorZvalues[ptColor]
+            };
+        });
+    }
+    // callback when load GeoJson completes
+    // save each feature's Point as the original coordinates for later reference
+    function saveCoords(features)
+    {
+        // Iterate over all the features in the map
+        features.forEach(function(feature)
+        {
+            var pt = feature.getGeometry().get();
+            vds_coords[feature.getId()] = pt; // save the Point in a dictionary
+        });
+        // update the dot colors from the dynamic json data 
+        updateVDSlayer();
+        // go adjust the marker coordinates so dots don't overlap
+        adjustCoords(calcDistanceFactor());
+    }
+
+    // magic formula controls distance between dots proportionate to zoom factor
+    function calcDistanceFactor()
+    {
+        // 15 is maximum zoom, the point at which no adjustment is needed
+        return (.0005 * (15 - map.getZoom()));
+    }
+
+    // Adjust the coordinates of dots so they appear side-by-side
+    // The perpendicular vector for each dot has been provided,
+    // so we just need to multiply by a scaling factor (adjAmount) 
+    // @param adjAmount amount by which to adjust coordinate 
+    function adjustCoords(adjAmount)
+    {
+        // Adjust the NB points a slight amount
+        map.data.forEach(function(feature)
+        {
+            // get the name of the current feature
+            var name = feature.getId();
+            // lookup the original coordinates for this feature
+            var coords = vds_coords[name];
+
+            //retrieve the perpendicular vector (precomputed)
+            var perpx = feature.getProperty("perpx")
+            var perpy = feature.getProperty("perpy")
+                // Make adjustment and save it
+            var myLat = coords.lat() + perpy * adjAmount
+            var myLong = coords.lng() + perpx * adjAmount
+            feature.setGeometry(
+            {
+                lat: myLat,
+                lng: myLong
+            });
+        });
+    }
+
+    // update the color (as needed) for a given marker
+    function updateMarker(marker)
+    {
+        target = marker.id;
+        newColor = marker.properties.color;
+        // see if new color is different than current color
+        currentFeature = map.data.getFeatureById(target);
+        currentColor = currentFeature.getProperty("color");
+        // if a new color is desired then assign it to the feature's color property
+        if (currentColor != newColor)
+        {
+            currentFeature.setProperty("color", newColor);
+            // set zIndex for slowed traffic to a higher value so they overlap
+            currentFeature.setProperty("zIndex", colorZvalues[newColor]);
+        }
+    }
+
+
+    // Load the highways dynamic json file and update the map
+    function updateVDSlayer()
+    {
+        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);
+        });
+    }
+
+function initVDSbutton()
+{
+
+    var vdsBtnDiv = document.getElementById('vdsButton');
+    map.controls[google.maps.ControlPosition.LEFT_BOTTOM].push(vdsBtnDiv)
+    vdsBtnDiv.title = 'Click to toggle vds view';
+
+    // Setup the click event listeners to toggle icon display
+    vdsBtnDiv.addEventListener('click', function()
+    {
+        vds_showing = !vds_showing;
+        // reveal or hide all the dots
+        map.data.forEach(function(feature)
+        {
+            map.data.overrideStyle(feature,
+            {
+                visible: vds_showing
+            });
+        });
+        // Determine which button image to show
+        if (vds_showing)
+        {
+            pic = "images/btnDepressed_VDS.png"
+        }
+        else
+        {
+            pic = "images/btnReady_VDS.png"
+        }
+        document.getElementById('vdsBtnImg').src = pic;
+    });
+}
+
Index: trunk/webapps/cptms/js/cctvLayer.js
===================================================================
--- trunk/webapps/cptms/js/cctvLayer.js	(revision 357)
+++ trunk/webapps/cptms/js/cctvLayer.js	(revision 357)
@@ -0,0 +1,102 @@
+function initCCTVbutton()
+{
+    var cctvBtnDiv = document.getElementById('cctvButton');
+    map.controls[google.maps.ControlPosition.LEFT_BOTTOM].push(cctvBtnDiv)
+    cctvBtnDiv.title = 'Click to toggle cctv view';
+    // Setup the click event listeners to toggle icon display
+    cctvBtnDiv.addEventListener('click', function()
+    {
+        cctv_showing = !cctv_showing;
+        // reveal or hide all the icons
+        cctvLayer.forEach(function(feature)
+        {
+            cctvLayer.overrideStyle(feature,
+            {
+                visible: cctv_showing
+            });
+        });
+        // Determine which button image to show
+        if (cctv_showing)
+        {
+            pic = "images/btnDepressed_CCTV.png"
+        }
+        else
+        {
+            pic = "images/btnReady_CCTV.png"
+        }
+        document.getElementById('cctvBtnImg').src = pic;
+    });
+}
+function makecctvIcon(nearVDS)
+{
+    var imgIcon = cctvIcon
+    if ((typeof map.data.getFeatureById(nearVDS)) == "undefined")
+    {
+        imgIcon = cctvIconWhite;
+    }
+    return imgIcon
+}
+function loadCCTVlayer()
+{
+    var imgTag = '<IMG WIDTH="700" ONERROR=this.src="images/cctv_unavailable.jpg"  SRC="images/';
+    cctv_infowindow = new google.maps.InfoWindow(); // initial the singleton
+    cctvLayer = new google.maps.Data(); 
+    cctvLayer.loadGeoJson(kCCTVfile); // load the features 
+    // Define the clickable area on an icon (the default is too big)
+    var clickRegion = {coords: [0,0,14,8], type: "rect"}  
+    cctvLayer.setStyle(function(feature)
+    {
+        // return the StyleOptions
+        return {
+            icon: makecctvIcon(feature.getProperty("nearVDS")),
+            shape: clickRegion,
+            title: feature.getId() + " " +feature.getProperty('locationName'),
+            visible: false  
+        };
+    });
+    cctvLayer.addListener('click', function(event)
+    {
+        //console.log("cctv layer was clicked at " + event.feature.getId());
+        cctvIndex = event.feature.getId();
+        //console.log(this.title + " is looking for " + this.nearVDS);
+        cctvLocation = event.feature.getProperty("locationName");
+        nearVDS = map.data.getFeatureById(event.feature.getProperty("nearVDS"));
+        currentColor = nearVDS.getProperty("color");
+        // Currently, Fast and Slow images are stored in separate folders.
+        // As Neil gets actual images collated, we will change this to a file name scheme
+        // rte-id-velocity.jpg 
+        // rte is route number, e.g., 055
+        // id is 4-digit camera id, e.g., 0012
+        // vel is traffic velocity: "freeflow", "slow", or "stopped"
+        var imgDir = "CCTVFast/";
+        if (currentColor == "red" || currentColor == "yellow")
+        {
+            imgDir = "CCTVSlow/"
+        }
+        var label = "freeflow";
+        if (currentColor == "red")
+        {
+            label = "stopped";
+        }
+        if (currentColor == "yellow")
+        {
+            label = "slow";
+        }
+
+        // Demo of video embed - only on highway 241 locations
+        if (cctvIndex.startsWith("12-241"))
+        {
+            cctv_infowindow.setContent('<div style="font-weight:bold;font-family: monospace">' +  cctvIndex + "&nbsp;" + cctvLocation + "&nbsp;" + '<BR><video  autoplay loop><source src="images/TrafficFreeflow.ogv" type="video/ogg"></div>');
+        }
+        else 
+        // image from fast or slow directories
+        {
+            cctv_infowindow.setContent('<div style="font-weight:bold;font-family: monospace">' +  cctvIndex + "&nbsp;" + cctvLocation + "&nbsp;" +label+ "<BR>" + imgTag + imgDir + cctvIndex + '.jpg">' + "</div>");
+        }
+        cctv_infowindow.setPosition(event.feature.getGeometry().get());
+        cctv_infowindow.open(map);
+
+    });
+    cctvLayer.setMap(map);
+}
+
Index: trunk/webapps/cptms/js/night_mode.js
===================================================================
--- trunk/webapps/cptms/js/night_mode.js	(revision 315)
+++ trunk/webapps/cptms/js/night_mode.js	(revision 315)
@@ -0,0 +1,83 @@
+    // Styles array for Night Mode map
+    // Ref: https://developers.google.com/maps/documentation/javascript/styling
+    var night_mode = [
+                {elementType: 'geometry', stylers: [{color: '#242f3e'}]},
+                {elementType: 'labels.text.stroke', stylers: [{color: '#242f3e'}]},
+                {elementType: 'labels.text.fill', stylers: [{color: '#746855'}]},
+                {
+                  featureType: 'administrative.locality',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#d59563'}]
+                },
+                {
+                  featureType: 'poi',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#d59563'}]
+                },
+                {
+                  featureType: 'poi.park',
+                  elementType: 'geometry',
+                  stylers: [{color: '#263c3f'}]
+                },
+                {
+                  featureType: 'poi.park',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#6b9a76'}]
+                },
+                {
+                  featureType: 'road',
+                  elementType: 'geometry',
+                  stylers: [{color: '#38414e'}]
+                },
+                {
+                  featureType: 'road',
+                  elementType: 'geometry.stroke',
+                  stylers: [{color: '#212a37'}]
+                },
+                {
+                  featureType: 'road',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#9ca5b3'}]
+                },
+                {
+                  featureType: 'road.highway',
+                  elementType: 'geometry',
+                  stylers: [{color: '#746855'}]
+                },
+                {
+                  featureType: 'road.highway',
+                  elementType: 'geometry.stroke',
+                  stylers: [{color: '#1f2835'}]
+                },
+                {
+                  featureType: 'road.highway',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#f3d19c'}]
+                },
+                {
+                  featureType: 'transit',
+                  elementType: 'geometry',
+                  stylers: [{color: '#2f3948'}]
+                },
+                {
+                  featureType: 'transit.station',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#d59563'}]
+                },
+                {
+                  featureType: 'water',
+                  elementType: 'geometry',
+                  stylers: [{color: '#17263c'}]
+                },
+                {
+                  featureType: 'water',
+                  elementType: 'labels.text.fill',
+                  stylers: [{color: '#515c6d'}]
+                },
+                {
+                  featureType: 'water',
+                  elementType: 'labels.text.stroke',
+                  stylers: [{color: '#17263c'}]
+                }
+              ]
+
Index: trunk/webapps/cptms/js/cmsLayer.js
===================================================================
--- trunk/webapps/cptms/js/cmsLayer.js	(revision 351)
+++ trunk/webapps/cptms/js/cmsLayer.js	(revision 351)
@@ -0,0 +1,216 @@
+function initCMSbutton()
+{
+    var cmsBtnDiv = document.getElementById('cmsButton');
+    map.controls[google.maps.ControlPosition.LEFT_BOTTOM].push(cmsBtnDiv)
+    cmsBtnDiv.title = 'Click to toggle cms view';
+    // Setup the click event listeners to toggle icon display
+    cmsBtnDiv.addEventListener('click', function()
+    {
+        cms_showing = !cms_showing;
+        // Determine which button image to show
+        if (cms_showing)
+        {
+            pic = "images/btnDepressed_CMS.png"
+            // It's nice when icons become visible that the messages have been refreshed.
+            loadAllcmsMessages();
+        }
+        else
+        {
+            pic = "images/btnReady_CMS.png"
+        }
+        document.getElementById('cmsBtnImg').src = pic;
+        // reveal or hide all the icons
+        cmsLayer.forEach(function(feature)
+        {
+            cmsLayer.overrideStyle(feature,
+            {
+                visible: cms_showing
+            });
+        });
+    });
+}
+function loadCMSlayer()
+{
+    cmsLayer = new google.maps.Data();
+    cmsLayer.setMap(map);
+    cmsLayer.loadGeoJson(kCMSfile);
+    // Define the clickable area on a CMS icon (the default is too big)
+    var clickRegion = {coords: [0,0,18,15], type: "rect"}
+    cmsLayer.setStyle(function(feature)
+        {
+            // return the StyleOptions
+            return {
+                icon: iconCMSidle,
+                shape: clickRegion,
+                title: feature.getId()+ " " +feature.getProperty("location")+ " " 
+                        + feature.getProperty("street"),
+                visible: false
+            };
+        });
+    
+    cmsLayer.addListener('click', function(event)
+    {
+        var dialog = document.getElementById('cms-dialog');
+        // Note: If the dialog is already being displayed when someone else
+        // updates the message, it won't be reflected in the dialog, until
+        // you close and reopen it.
+        dialog.style.display = 'block';
+        cmsID = event.feature.getId();
+        // Assign to the hidden field
+        document.getElementById('cmsID').value = cmsID;
+        showMessage(cmsID); // note: this is async
+        document.getElementById('cms-info-label').innerHTML = "CMS ID: " +
+            cmsID + "&nbsp;&nbsp;&nbsp;LOCATION: " + event.feature.getProperty("location")
+            + "&nbsp;&nbsp;" + event.feature.getProperty("street");
+        // clear input fields
+        document.getElementById('msgcontent1').value = "";
+        document.getElementById('msgcontent2').value = "";
+        document.getElementById('msgcontent3').value = "";
+        document.getElementById('msgcontent4').value = "";
+        document.getElementById('msgcontent5').value = "";
+        document.getElementById('msgcontent6').value = "";
+        document.getElementById('msgcontent1').focus();
+        var span = document.getElementById("cms-close");
+            // When the user clicks on <span> (x), close the modal
+        span.onclick = function()
+        {
+            handleDialogClose('cms-dialog');
+        }
+    });
+}
+
+    // Center justify message text in a 16 column field
+    function justifyCMStext(message)
+    {
+        // don't bother justifying a blank message
+        if (message.length == 0) return message;    
+        // determine how much padding is needed
+        var kBlanks = "                ";
+        var padLen = (16 - message.length) / 2;
+        // apply the padding
+        var padding = kBlanks.substring(0, padLen);
+        return padding + message;
+    }
+
+    function handleCMSsubmit()
+    {
+        // recover the user's response
+        var response1 = justifyCMStext(document.getElementById('msgcontent1').value.trim());
+        var response2 = justifyCMStext(document.getElementById('msgcontent2').value.trim());
+        var response3 = justifyCMStext(document.getElementById('msgcontent3').value.trim());
+        var response4 = justifyCMStext(document.getElementById('msgcontent4').value.trim());
+        var response5 = justifyCMStext(document.getElementById('msgcontent5').value.trim());
+        var response6 = justifyCMStext(document.getElementById('msgcontent6').value.trim());
+        var newMsg = response1 + response2 + response3 + response4 + response5 + response6;
+        if (newMsg.length == 0)
+        {
+            alert("Nothing to Send ... input fields are empty.");
+        }
+        else
+        {
+            document.getElementById('msgdisplay1').value = response1;
+            document.getElementById('msgdisplay2').value = response2;
+            document.getElementById('msgdisplay3').value = response3;
+            document.getElementById('msgdisplay4').value = response4;
+            document.getElementById('msgdisplay5').value = response5;
+            document.getElementById('msgdisplay6').value = response6;
+            saveCMSMessage(response1 + "|" + response2 + "|" + response3 + "|" +
+                        response4 + "|" + response5 + "|" + response6);
+        }
+    }
+
+    function handleCMSclear()
+    {
+        document.getElementById('msgdisplay1').value = "";
+        document.getElementById('msgdisplay2').value = "";
+        document.getElementById('msgdisplay3').value = "";
+        document.getElementById('msgdisplay4').value = "";
+        document.getElementById('msgdisplay5').value = "";
+        document.getElementById('msgdisplay6').value = "";
+        saveCMSMessage("|||||");
+    }
+
+    // Save an updated cms message to the file
+    function saveCMSMessage(outMessage)
+    {
+        // Fetch cmsID from hidden field where it was put when dialog opened.
+        var cmsID = document.getElementById('cmsID').value;
+        //console.log("Saving " + outMessage + " for cmsID " + cmsID)
+        msgParts = outMessage.split("|");
+        messageDict[cmsID].cms.message.phase1.Line1 = msgParts[0];
+        messageDict[cmsID].cms.message.phase1.Line2 = msgParts[1];
+        messageDict[cmsID].cms.message.phase1.Line3 = msgParts[2];
+        messageDict[cmsID].cms.message.phase2.Line1 = msgParts[3];
+        messageDict[cmsID].cms.message.phase2.Line2 = msgParts[4];
+        messageDict[cmsID].cms.message.phase2.Line3 = msgParts[5];
+        // Check if there was any messages to save and
+        // Set icon to reflect message state
+        if (outMessage == "|||||")
+        {
+            currentIcon = {icon: iconCMSidle};
+        }
+        else
+        {
+            currentIcon = {icon: iconCMSactive};
+        }
+        cmsLayer.overrideStyle(cmsLayer.getFeatureById(cmsID), currentIcon)
+        // break the json string into lines for readability
+        jsonstring = JSON.stringify(Object.values(messageDict)); //Can't use these in GET parameter  ,null,4);
+        outString = "{\"data\":" + jsonstring + "}";
+        console.log("outString = " + outString);
+        var xhttp = new XMLHttpRequest();
+        xhttp.open("GET", "cgi-bin/saveCMSmessage.py?msg=" + outString, true);
+        xhttp.send();
+        // Using POST might be a better idea ... haven't tried this yet
+        //      var xhr = new XMLHttpRequest();
+        //      xhr.open("POST", "/cgi-bin/saveCMSmessage.py?", true);
+        //      xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
+        // send the collected data as JSON
+        //      xhr.send(JSON.stringify(messageList));
+    }
+
+    // retrieve the current cms message file
+    function showMessage(cmsID)
+    {
+        loadAllcmsMessages();  // because someone else may have made a recent update
+        // lookup the message for this cms ID
+        var message = messageDict[cmsID].cms.message;
+        // show the message in the display
+        document.getElementById('msgdisplay1').value = message.phase1.Line1;
+        document.getElementById('msgdisplay2').value = message.phase1.Line2;
+        document.getElementById('msgdisplay3').value = message.phase1.Line3;
+        document.getElementById('msgdisplay4').value = message.phase2.Line1;
+        document.getElementById('msgdisplay5').value = message.phase2.Line2;
+        document.getElementById('msgdisplay6').value = message.phase2.Line3;
+    }
+    function loadAllcmsMessages()
+    {
+        loadJSON("cms_messages.json", function(response)
+        {
+            // Parse JSON string into object
+            messagejson = JSON.parse(response);
+            // Add each message to a lookup dictionary 
+            for (var i = 0; i < messagejson.data.length; i++)
+            {
+                var item = messagejson.data[i];
+                messageDict[item.cms.index] = item;
+                // Set the appropriate icon on the cms icon
+                // set a yellow flag if there's currently no message
+                if (item.cms.message.phase1.Line1 + 
+                    item.cms.message.phase1.Line2 +
+                    item.cms.message.phase1.Line3 +
+                    item.cms.message.phase2.Line1 + 
+                    item.cms.message.phase2.Line2 +
+                    item.cms.message.phase2.Line3 == "")
+                {
+                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: iconCMSidle})
+                }
+                else
+                {
+                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: iconCMSactive})
+                }
+            }
+        });
+    }
+
+
Index: trunk/webapps/cptms/cms_messages.json
===================================================================
--- trunk/webapps/cptms/cms_messages.json	(revision 359)
+++ trunk/webapps/cptms/cms_messages.json	(revision 359)
@@ -0,0 +1,1 @@
+{"data":[{"cms":{"index":"1200022","message":{"displayTime":"","phase1":{"Line1":"      HAVE","Line2":"     A NICE","Line3":"      DAY"},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200023","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200024","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200025","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200026","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200027","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200028","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200029","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200030","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200031","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200032","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200033","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200034","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200035","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200036","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200037","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200038","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200039","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200040","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200041","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200042","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200043","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200044","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200045","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200046","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200047","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200048","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200049","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200050","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200051","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200052","message":{"displayTime":"","phase1":{"Line1":"  airport exit","Line2":"    1/2 mile","Line3":"        "},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200053","message":{"displayTime":"","phase1":{"Line1":"  slow for the","Line2":"   cone zone","Line3":"        "},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200055","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200056","message":{"displayTime":"","phase1":{"Line1":"  slow traffic","Line2":"     ahead","Line3":"  use caution"},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200057","message":{"displayTime":"","phase1":{"Line1":"     drive","Line2":"     safely","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1200058","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1208488","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1211184","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1211185","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1211967","message":{"displayTime":"","phase1":{"Line1":"      SLOW","Line2":"    TRAFFIC","Line3":"     AHEAD"},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1211978","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1212138","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1212822","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1212823","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214503","message":{"displayTime":"","phase1":{"Line1":"  YOU LIKE IT","Line2":"  IT LIKES YOU","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214504","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214505","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214506","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214507","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214508","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214509","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214510","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214511","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214512","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214513","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214514","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1214956","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1217542","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218442","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218482","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218483","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218484","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218485","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}},{"cms":{"index":"1218486","message":{"displayTime":"","phase1":{"Line1":"","Line2":"","Line3":""},"phase2":{"Line1":"","Line2":"","Line3":""}}}}]}
Index: trunk/webapps/cptms/sim_scriptname.json
===================================================================
--- trunk/webapps/cptms/sim_scriptname.json	(revision 367)
+++ trunk/webapps/cptms/sim_scriptname.json	(revision 367)
@@ -0,0 +1,1 @@
+{"filename":"practice_script_2016.xml"}
Index: trunk/webapps/cptms/css/styles.css
===================================================================
--- trunk/webapps/cptms/css/styles.css	(revision 336)
+++ trunk/webapps/cptms/css/styles.css	(revision 336)
@@ -0,0 +1,127 @@
+        @font-face {
+          font-family: Scoreboard;
+          src: url('../js/scoreboard.ttf');
+        }
+      /* Set the size of the div element that contains the map */
+      #mapdiv {
+        height: 100%;
+        width: 100%;  
+       }
+        /* Makes the page fill the window. */
+      html, body {
+        height: 100%;
+        margin: 0;
+        padding: 0;
+      }
+        /* A line of the CMS message display */
+        .cms_sign {
+           height: 37px;
+           width: 272px;
+           resize: none;
+           font-family: Scoreboard;
+           font-size: xx-large;
+           background-color: #2F4F4F;
+           color: yellow;
+        }
+        /* Field for entering CMS Message line */
+       .cms-input {
+           border: thin solid #333;
+           padding: 2px;
+           font-family: "Lucida Console", Monaco, monospace;
+           font-size: medium;
+           width: 163px;
+        }
+        /* Field for entering HAR Message line */
+       .har-input {
+           border: thin solid #333;
+           padding: 2px;
+           font-size: medium;
+        }
+      #search-input {
+        background-color: #17263c;  /* #CD853F;  /*#E6E6FA; /* lavender */
+        color: #E6E6FA;  /* #FFEFD5; */
+        font-family: Roboto;
+        font-size: 18px;
+        font-weight: 400;
+        margin-left: 12px;
+        padding: 0 11px 0 13px;
+        text-overflow: ellipsis;
+        border-color: #746855;   /* #4d90fe; */
+        width: 400px;
+      }
+      #search-input:focus {
+        border-color: #E6E6FA; 
+      }
+      #ctrButton {
+        cursor: pointer;
+        background-color: #fff;
+        margin-right: 7px;
+        border: thick solid white;
+      }
+      #cms-info-label {
+           height: 20px;
+           width: 590px;
+           overflow: hidden;
+           background-color: #A8C5FF;  /*#ECECFB; */
+           border: thin solid #BDBDBD;
+           padding: 5px;
+       }
+      #cms-message-display {
+           height: 390px;
+           width: 300px;
+           overflow: hidden;
+           float: left;
+       }
+      #har-msgdisplay1 {
+            background-color: darkgray;
+      }
+      #message-input {
+           height: 122px;
+           width: 170px;
+           background-color: #729FFF;
+           float: left;
+       }
+        /* CMS Dialog button panel */
+       #buttonPanel {
+           height: 122px;
+           width: 125px;
+           background-color: #729FFF;
+           float: left;
+           padding: 20px;
+        }
+       .wrapper {
+           position: relative;\
+        }
+        /* CMS Edit Message Dialog */
+       .dialog {
+          position: absolute;
+          top: 10%;
+          left: 25%;
+          background-color: #729FFF; /* #ECECFB; */
+          margin: auto;
+          padding: 20px;
+          border: 1px solid #888;
+          width: 680px;
+          height: 390px;
+          display: none;           
+        }
+      .unstyled-button {
+        border: 0 none;
+        padding: 0;
+        background: none;
+        cursor: pointer;
+      }    
+        /* The Close Button in the CMS Dialog */
+        .close {
+          color: #2E2E2E;
+          float: right;
+          font-size: 30px;
+          font-weight: bold;
+        }
+        .close:hover,
+        .close:focus {
+          color: black;
+          text-decoration: none;
+          cursor: pointer;
+        }
+
Index: trunk/webapps/cptms/data_layers/prep_cctv.py
===================================================================
--- trunk/webapps/cptms/data_layers/prep_cctv.py	(revision 318)
+++ trunk/webapps/cptms/data_layers/prep_cctv.py	(revision 318)
@@ -0,0 +1,79 @@
+import collections,math,sys
+# Scan the cctv file to find the nearest vds
+# This is a one-time job to create the static file of cctv locations and nearest vds
+# The output of this program needs to be manually modified before input to cptms_map.html
+# 1. The vds column is appended to cctvFile (yes, adding a new column to the original input).
+# 2. Convert this csv file to json (using cctvToJson.awk)
+# 3. Remove tabs from json.  Trim any blanks from nearVDS field. 
+# jdalbey Mar 2019
+vdsFile = "vds_fromhighwaysmap.csv"
+cctvFile = "cctv_locations_D12.csv"
+orientationLookup = {'N':0,'S':1,'E':0,'W':1}
+
+def loadHighways():
+
+    f = open(vdsFile,'r')
+    lines = [line.split(',') for line in f.readlines()]
+    # 5,N,0.65,4 S. LUIS REY
+    # Create a set containing just the route numbers 
+    routeNums = set()
+    for item in lines:
+        routeNums.add(int(item[0]))
+    # put the route numbers in order
+    sortedRoutes = sorted (routeNums)    
+    # Create the empty postmile collections
+    for route in sortedRoutes:
+        #print route,
+        highways[str(route)]=[collections.OrderedDict(),collections.OrderedDict()]
+    #print
+    # Process all the data, placing it in proper route and collection
+    for item in lines:
+        route = item[0]
+        orientation = orientationLookup[item[1]]
+        postmileItem = item[2]
+        highways[route][orientation][postmileItem]=item
+
+
+def dumpHighways():
+    # Dump the highways data we've organized
+    for item in highways:
+        for cnt in [0,1]:
+            list1 = highways[item][cnt]
+            print "highway",item,list1
+            # show fields for one entry
+            for pm_entry in list1:
+                print pm_entry,list1[pm_entry]
+
+def findNearest():
+
+    f = open(cctvFile,'r')
+    #5,S,42.11,-117.978854,33.856288,SB 5 N/O MAGNOLIA AVE (S/O 91),12-005-CCTV-0001
+    lines = [line.split(',') for line in f.readlines()]
+
+    # Find he nearest VDS to each cctv
+    for item in lines:
+        route = item[0]
+        orientation = orientationLookup[item[1]]
+        postmileItem = item[2]
+        segment = highways[route][orientation] 
+
+        # Now we know which highway segment the cctv is on, look at all those VDS to find nearest
+        print route,item[1],postmileItem+",",
+        min = 9999
+        nearVDS = 0
+        for vds in segment:
+            diff = abs(float(vds) - float(postmileItem))
+            #print vds + "("+str(diff)+")",
+            if (diff < min):
+                min = diff
+                nearVDS = vds
+        print route,item[1],nearVDS
+
+# ------------------------------------------------------------------------------------------
+
+highways = collections.OrderedDict()    
+loadHighways()
+dumpHighways()
+print "CCTV\tnearestVDS"
+findNearest()
+
Index: trunk/webapps/cptms/data_layers/highways_startup.json
===================================================================
--- trunk/webapps/cptms/data_layers/highways_startup.json	(revision 352)
+++ trunk/webapps/cptms/data_layers/highways_startup.json	(revision 352)
@@ -0,0 +1,12155 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+  {
+  "type": "Feature",
+  "id": "1 N 12.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828018,33.565462]
+      },
+      "properties": {"street":"1 SB REEF POINT DR", "color":"lime", "perpx":"0.547592", "perpy":"0.836745"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 12.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833412,33.568992]
+      },
+      "properties": {"street":"1 SB CRYSTAL HEIGHTS", "color":"lime", "perpx":"0.71338", "perpy":"0.700778"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 13.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839807,33.575502]
+      },
+      "properties": {"street":"1 SB LOS TRANCOS", "color":"lime", "perpx":"0.71338", "perpy":"0.700778"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 16.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875914,33.605811]
+      },
+      "properties": {"street":"1 NB AVOCADO AVE", "color":"lime", "perpx":"0.565236", "perpy":"0.82493"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 17.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883525,33.611026]
+      },
+      "properties": {"street":"1 NB IRVINE TERRACE", "color":"lime", "perpx":"0.565236", "perpy":"0.82493"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893777,33.613432]
+      },
+      "properties": {"street":"1 NB PROMONTORY PT", "color":"lime", "perpx":"0.37769", "perpy":"0.925932"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 18.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900661,33.61624]
+      },
+      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"lime", "perpx":"0.37769", "perpy":"0.925932"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913843,33.616119]
+      },
+      "properties": {"street":"1 NB BALBOA BAY", "color":"lime", "perpx":"0.380476", "perpy":"0.924791"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 19.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.924387,33.620457]
+      },
+      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"lime", "perpx":"0.140764", "perpy":"0.990043"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 20.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933242,33.621716]
+      },
+      "properties": {"street":"1 NB S OF 55", "color":"lime", "perpx":"0.140764", "perpy":"0.990043"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 12.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828018,33.565462]
+      },
+      "properties": {"street":"1 SB REEF POINT DR", "color":"lime", "perpx":"-0.547592", "perpy":"-0.836745"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 12.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833412,33.568992]
+      },
+      "properties": {"street":"1 SB CRYSTAL HEIGHTS", "color":"lime", "perpx":"-0.713433", "perpy":"-0.700723"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 13.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839807,33.575503]
+      },
+      "properties": {"street":"1 SB LOS TRANCOS", "color":"lime", "perpx":"-0.713433", "perpy":"-0.700723"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 16.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876053,33.605675]
+      },
+      "properties": {"street":"1 NB AVOCADO AVE", "color":"lime", "perpx":"-0.566243", "perpy":"-0.824239"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 17.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883631,33.610881]
+      },
+      "properties": {"street":"1 NB IRVINE TERRACE", "color":"lime", "perpx":"-0.566243", "perpy":"-0.824239"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893843,33.613228]
+      },
+      "properties": {"street":"1 NB PROMONTORY PT", "color":"lime", "perpx":"-0.399609", "perpy":"-0.916686"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 18.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900679,33.616208]
+      },
+      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"lime", "perpx":"-0.399609", "perpy":"-0.916686"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913849,33.61612]
+      },
+      "properties": {"street":"1 NB BALBOA BAY", "color":"lime", "perpx":"-0.371678", "perpy":"-0.928362"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 19.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.924432,33.620357]
+      },
+      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"lime", "perpx":"-0.133399", "perpy":"-0.991062"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 20.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933258,33.621545]
+      },
+      "properties": {"street":"1 NB S OF 55", "color":"lime", "perpx":"-0.133399", "perpy":"-0.991062"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 0.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.597992,33.40516]
+      },
+      "properties": {"street":"S. LUIS REY", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.660803,33.50939]
+      },
+      "properties": {"street":"EL HORNO", "color":"lime", "perpx":"0.920027", "perpy":"0.391855"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.662568,33.513534]
+      },
+      "properties": {"street":"SERRA PARK", "color":"lime", "perpx":"0.919833", "perpy":"0.392311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664335,33.517677]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"0.919833", "perpy":"0.392311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666382,33.52247]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"0.924678", "perpy":"0.38075"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666438,33.522606]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.66866,33.526621]
+      },
+      "properties": {"street":"TRABUCO", "color":"lime", "perpx":"0.874948", "perpy":"0.484218"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674488,33.53247]
+      },
+      "properties": {"street":"WILDWOOD", "color":"lime", "perpx":"0.999898", "perpy":"-0.014276"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 12.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674416,33.537513]
+      },
+      "properties": {"street":"S OF 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.601964,33.413051]
+      },
+      "properties": {"street":"MAGDALENA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6021,33.413319]
+      },
+      "properties": {"street":"MAGDALENA", "color":"lime", "perpx":"0.891749", "perpy":"0.45253"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 12.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673098,33.545242]
+      },
+      "properties": {"street":"AVERY 1", "color":"lime", "perpx":"0.993425", "perpy":"-0.114487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672686,33.548817]
+      },
+      "properties": {"street":"AVERY PARK", "color":"lime", "perpx":"0.999609", "perpy":"-0.027961"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672682,33.54896]
+      },
+      "properties": {"street":"AVERY PARK", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672812,33.556241]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"0.999812", "perpy":"0.019403"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672849,33.558239]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"0.999976", "perpy":"0.006993"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672848,33.558096]
+      },
+      "properties": {"street":"CROWN VA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672791,33.560549]
+      },
+      "properties": {"street":"CROWN VA2", "color":"lime", "perpx":"0.996005", "perpy":"-0.089297"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672778,33.560694]
+      },
+      "properties": {"street":"CROWN VA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 14.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671844,33.569099]
+      },
+      "properties": {"street":"FAIRCOURT", "color":"lime", "perpx":"0.993882", "perpy":"-0.110445"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67162,33.578849]
+      },
+      "properties": {"street":"OSO PARK 1", "color":"lime", "perpx":"0.999789", "perpy":"-0.020544"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671617,33.578995]
+      },
+      "properties": {"street":"OSO PARK1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67157,33.582052]
+      },
+      "properties": {"street":"OSO PARK2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671571,33.582197]
+      },
+      "properties": {"street":"OSO PARK2", "color":"lime", "perpx":"0.999908", "perpy":"-0.01358"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671484,33.588603]
+      },
+      "properties": {"street":"CERVANTES", "color":"lime", "perpx":"0.999908", "perpy":"-0.01358"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674275,33.596326]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"0.652225", "perpy":"0.758026"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676059,33.597861]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676194,33.597965]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"0.610278", "perpy":"0.792187"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.678685,33.599252]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.678839,33.599314]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68984,33.604242]
+      },
+      "properties": {"street":"ALICIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689974,33.604332]
+      },
+      "properties": {"street":"ALICIA 1", "color":"lime", "perpx":"0.557556", "perpy":"0.830139"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692734,33.606025]
+      },
+      "properties": {"street":"ALICIA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692884,33.606111]
+      },
+      "properties": {"street":"ALICIA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70083,33.60972]
+      },
+      "properties": {"street":"ANKERTON", "color":"lime", "perpx":"0.59407", "perpy":"0.804413"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606498,33.420685]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6066,33.420802]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706467,33.613883]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.647648", "perpy":"0.761939"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706587,33.613985]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.647648", "perpy":"0.761939"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70901,33.616112]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.709128,33.616217]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 19.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714379,33.621929]
+      },
+      "properties": {"street":"RED ROBIN", "color":"lime", "perpx":"0.73619", "perpy":"0.676774"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724216,33.631998]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"0.651823", "perpy":"0.758371"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724337,33.632102]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"0.735536", "perpy":"0.677486"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721491,33.629553]
+      },
+      "properties": {"street":"LAKE FOR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72806,33.636144]
+      },
+      "properties": {"street":"BAKE 1", "color":"lime", "perpx":"0.735536", "perpy":"0.677486"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731437,33.640323]
+      },
+      "properties": {"street":"BAKE 2", "color":"lime", "perpx":"0.77975", "perpy":"0.626091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 21.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734444,33.644068]
+      },
+      "properties": {"street":"At 405", "color":"lime", "perpx":"0.77975", "perpy":"0.626091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.742629,33.654371]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"0.780869", "perpy":"0.624695"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743597,33.655581]
+      },
+      "properties": {"street":"ALTON 3", "color":"lime", "perpx":"0.780869", "perpy":"0.624695"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748817,33.662274]
+      },
+      "properties": {"street":"BARRANCA", "color":"lime", "perpx":"0.770018", "perpy":"0.638022"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.751722,33.66578]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"0.776343", "perpy":"0.630311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753237,33.667646]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.776343", "perpy":"0.630311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755266,33.671657]
+      },
+      "properties": {"street":"S OF SAND CNYN", "color":"lime", "perpx":"0.972906", "perpy":"0.2312"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75591,33.674367]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.813783", "perpy":"0.581169"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 24.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759083,33.67881]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"0.701651", "perpy":"0.712521"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6116,33.428587]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 24.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76413,33.68378]
+      },
+      "properties": {"street":"N OF SAND CNYN", "color":"lime", "perpx":"0.701651", "perpy":"0.712521"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.611817,33.428811]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768954,33.691182]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.769532,33.692068]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.774934,33.700287]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"0.835661", "perpy":"0.549245"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 26.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.781713,33.709761]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"0.673811", "perpy":"0.738904"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 26.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784619,33.712411]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"0.673811", "perpy":"0.738904"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794408,33.719297]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794541,33.719391]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796397,33.720695]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"0.570509", "perpy":"0.821292"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 28.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801722,33.724394]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"lime", "perpx":"0.570509", "perpy":"0.821292"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.615519,33.432425]
+      },
+      "properties": {"street":"PALIZADA", "color":"lime", "perpx":"0.698551", "perpy":"0.71556"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 28.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813606,33.732444]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"0.577035", "perpy":"0.816719"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 29.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.817068,33.73489]
+      },
+      "properties": {"street":"RED HILL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 29.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.825811,33.738115]
+      },
+      "properties": {"street":"NEWPORT*", "color":"lime", "perpx":"0.29944", "perpy":"0.954115"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832416,33.740283]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"0.333225", "perpy":"0.942847"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.829214,33.739183]
+      },
+      "properties": {"street":"B ST.", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835585,33.741403]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"0.333225", "perpy":"0.942847"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838695,33.742605]
+      },
+      "properties": {"street":"WILLIAMS", "color":"lime", "perpx":"0.572697", "perpy":"0.819767"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.841283,33.744413]
+      },
+      "properties": {"street":"1ST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842095,33.745655]
+      },
+      "properties": {"street":"1ST", "color":"lime", "perpx":"0.928052", "perpy":"0.372451"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.844061,33.750124]
+      },
+      "properties": {"street":"4TH", "color":"lime", "perpx":"0.715791", "perpy":"0.698315"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.84264,33.747013]
+      },
+      "properties": {"street":"N55 to N5 HOV VIA", "color":"lime", "perpx":"0.928052", "perpy":"0.372451"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845939,33.752049]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"0.715791", "perpy":"0.698315"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.602",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848819,33.753768]
+      },
+      "properties": {"street":"GRAND 1 HOV OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848788,33.753753]
+      },
+      "properties": {"street":"GRAND 1", "color":"lime", "perpx":"0.435561", "perpy":"0.900159"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850781,33.754689]
+      },
+      "properties": {"street":"GRAND 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85344,33.755834]
+      },
+      "properties": {"street":"GRAND 2", "color":"lime", "perpx":"0.395503", "perpy":"0.918465"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.858902,33.758263]
+      },
+      "properties": {"street":"17TH 1", "color":"lime", "perpx":"0.447214", "perpy":"0.894427"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 3.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.619773,33.43749]
+      },
+      "properties": {"street":"PICO 1", "color":"lime", "perpx":"0.498751", "perpy":"0.866745"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859664,33.758644]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862379,33.760465]
+      },
+      "properties": {"street":"17TH 2", "color":"lime", "perpx":"0.753317", "perpy":"0.657658"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863369,33.761599]
+      },
+      "properties": {"street":"17TH 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86784,33.76901]
+      },
+      "properties": {"street":"MAIN 2", "color":"lime", "perpx":"0.824993", "perpy":"0.565143"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868723,33.770299]
+      },
+      "properties": {"street":"BROADWAY", "color":"lime", "perpx":"0.824993", "perpy":"0.565143"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866456,33.766579]
+      },
+      "properties": {"street":"MAIN 1", "color":"lime", "perpx":"0.869034", "perpy":"0.494752"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871893,33.773944]
+      },
+      "properties": {"street":"SANTIAGO", "color":"lime", "perpx":"0.783267", "perpy":"0.621685"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873886,33.776455]
+      },
+      "properties": {"street":"S OF 22", "color":"lime", "perpx":"0.783267", "perpy":"0.621685"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878226,33.781151]
+      },
+      "properties": {"street":"LA VETA", "color":"lime", "perpx":"0.58161", "perpy":"0.813468"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879468,33.782039]
+      },
+      "properties": {"street":"N OF 57", "color":"lime", "perpx":"0.544875", "perpy":"0.838517"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880773,33.782887]
+      },
+      "properties": {"street":"N OF 57*", "color":"lime", "perpx":"0.668811", "perpy":"0.743433"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883174,33.785047]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.668811", "perpy":"0.743433"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888724,33.790771]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"0.673354", "perpy":"0.73932"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887536,33.789689]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891888,33.793754]
+      },
+      "properties": {"street":"ORANGEWOOD 1", "color":"lime", "perpx":"0.700471", "perpy":"0.713681"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 3.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.624486,33.440202]
+      },
+      "properties": {"street":"PICO 2", "color":"lime", "perpx":"0.498751", "perpy":"0.866745"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893833,33.795663]
+      },
+      "properties": {"street":"GENE AUTRY", "color":"lime", "perpx":"0.700471", "perpy":"0.713681"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902246,33.803764]
+      },
+      "properties": {"street":"ORANGEWOOD 2", "color":"lime", "perpx":"0.641147", "perpy":"0.767418"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.903814,33.805074]
+      },
+      "properties": {"street":"KATELLA", "color":"lime", "perpx":"0.614618", "perpy":"0.788825"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905829,33.806644]
+      },
+      "properties": {"street":"ANAHEIM 2", "color":"lime", "perpx":"0.614618", "perpy":"0.788825"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.910643,33.811147]
+      },
+      "properties": {"street":"S OF HARBOR", "color":"lime", "perpx":"0.690175", "perpy":"0.723642"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915054,33.815354]
+      },
+      "properties": {"street":"HARBOR", "color":"lime", "perpx":"0.700541", "perpy":"0.713613"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918657,33.818891]
+      },
+      "properties": {"street":"BALL", "color":"lime", "perpx":"0.696671", "perpy":"0.717391"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.923123,33.823323]
+      },
+      "properties": {"street":"SOUTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.92205,33.822186]
+      },
+      "properties": {"street":"SOUTH 1", "color":"lime", "perpx":"0.727279", "perpy":"0.686342"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.931513,33.832016]
+      },
+      "properties": {"street":"LINCOLN", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.934272,33.833722]
+      },
+      "properties": {"street":"LINCOLN", "color":"lime", "perpx":"0.276022", "perpy":"0.961151"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938078,33.834815]
+      },
+      "properties": {"street":"EUCLID 1", "color":"lime", "perpx":"0.36034", "perpy":"0.932821"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943038,33.836731]
+      },
+      "properties": {"street":"EUCLID 2", "color":"lime", "perpx":"0.478822", "perpy":"0.877912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.949259,33.840124]
+      },
+      "properties": {"street":"CRESCENT", "color":"lime", "perpx":"0.478822", "perpy":"0.877912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.630415,33.44466]
+      },
+      "properties": {"street":"HERMOSA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955716,33.843721]
+      },
+      "properties": {"street":"BROOKHURST 1", "color":"lime", "perpx":"0.541489", "perpy":"0.840708"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.958388,33.845442]
+      },
+      "properties": {"street":"BROOKHURST 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.962444,33.847549]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.442245", "perpy":"0.896895"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.631445,33.445434]
+      },
+      "properties": {"street":"HERMOSA 2", "color":"lime", "perpx":"0.600745", "perpy":"0.799441"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.968011,33.850294]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"0.442245", "perpy":"0.896895"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.974766,33.854226]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"0.61619", "perpy":"0.787597"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976025,33.855211]
+      },
+      "properties": {"street":"MAGNOLIA 2", "color":"lime", "perpx":"0.61619", "perpy":"0.787597"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 42.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.98503,33.859271]
+      },
+      "properties": {"street":"ORANGETHORPE 2", "color":"lime", "perpx":"0.456565", "perpy":"0.88969"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 42.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.987649,33.860615]
+      },
+      "properties": {"street":"N OF ORANGETHORPE", "color":"lime", "perpx":"0.456565", "perpy":"0.88969"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991902,33.863248]
+      },
+      "properties": {"street":"STANTON", "color":"lime", "perpx":"0.437215", "perpy":"0.899357"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.28",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995907,33.865195]
+      },
+      "properties": {"street":"BEACH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.996199,33.865349]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.466495", "perpy":"0.884524"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.00058,33.867724]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"0.460988", "perpy":"0.887406"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.005021,33.870031]
+      },
+      "properties": {"street":"Western", "color":"lime", "perpx":"0.460988", "perpy":"0.887406"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 44.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.011177,33.874466]
+      },
+      "properties": {"street":"ARTESIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.639897,33.450411]
+      },
+      "properties": {"street":"S OF VAQUERO", "color":"lime", "perpx":"0.480833", "perpy":"0.876812"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647864,33.45478]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"0.393632", "perpy":"0.919268"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.650183,33.455773]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"0.393632", "perpy":"0.919268"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.655008,33.458342]
+      },
+      "properties": {"street":"ESTRELLA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.657305,33.459637]
+      },
+      "properties": {"street":"ESTRELLA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.665509,33.464404]
+      },
+      "properties": {"street":"SACRAMENTO", "color":"lime", "perpx":"0.523797", "perpy":"0.851843"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6701,33.467227]
+      },
+      "properties": {"street":"5NB PCH 3 OFF RAMPS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671714,33.468032]
+      },
+      "properties": {"street":"LAS RAMBLAS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 7.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674271,33.475073]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"0.816519", "perpy":"-0.577318"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 7.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669596,33.481685]
+      },
+      "properties": {"street":"AEROPUERTO", "color":"lime", "perpx":"0.816519", "perpy":"-0.577318"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 8.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663255,33.489561]
+      },
+      "properties": {"street":"S JUAN CREEK", "color":"lime", "perpx":"0.839468", "perpy":"-0.54341"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.659127,33.495938]
+      },
+      "properties": {"street":"PLAZA", "color":"lime", "perpx":"0.972984", "perpy":"-0.230873"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658278,33.499516]
+      },
+      "properties": {"street":"ORTEGA  1", "color":"lime", "perpx":"0.972984", "perpy":"-0.230873"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.67",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658516,33.503442]
+      },
+      "properties": {"street":"ORTEGA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658585,33.503727]
+      },
+      "properties": {"street":"ORTEGA  2", "color":"lime", "perpx":"0.971921", "perpy":"0.235307"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 0.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598167,33.404943]
+      },
+      "properties": {"street":"S LUIS REY", "color":"lime", "perpx":"-0.892883", "perpy":"-0.450288"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599923,33.408425]
+      },
+      "properties": {"street":"CALAFIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.661127,33.5093]
+      },
+      "properties": {"street":"EL HORNO", "color":"lime", "perpx":"-0.918881", "perpy":"-0.394535"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.662905,33.513441]
+      },
+      "properties": {"street":"SERRA PARK", "color":"lime", "perpx":"-0.920608", "perpy":"-0.390487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664664,33.517588]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"-0.920608", "perpy":"-0.390487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6667,33.522341]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"-0.878964", "perpy":"-0.476887"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.668912,33.526418]
+      },
+      "properties": {"street":"TRABUCO", "color":"lime", "perpx":"-0.878964", "perpy":"-0.476887"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674919,33.53231]
+      },
+      "properties": {"street":"WILDWOOD", "color":"lime", "perpx":"-0.999508", "perpy":"0.03137"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 12.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674695,33.539447]
+      },
+      "properties": {"street":"S of 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.602338,33.41325]
+      },
+      "properties": {"street":"MAGDALENA", "color":"lime", "perpx":"-0.9013", "perpy":"-0.433194"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 12.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673404,33.545217]
+      },
+      "properties": {"street":"AVERY 1", "color":"lime", "perpx":"-0.993564", "perpy":"0.113275"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672993,33.548822]
+      },
+      "properties": {"street":"AVERY PARK", "color":"lime", "perpx":"-0.993564", "perpy":"0.113275"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673131,33.556667]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"-0.999988", "perpy":"0.004899"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673112,33.560545]
+      },
+      "properties": {"street":"CROWN VA2", "color":"lime", "perpx":"-0.999988", "perpy":"0.004899"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 14.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67216,33.569098]
+      },
+      "properties": {"street":"Faircourt", "color":"lime", "perpx":"-0.999773", "perpy":"0.021323"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 1.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.603827,33.416348]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671983,33.577397]
+      },
+      "properties": {"street":"OSO PARK1", "color":"lime", "perpx":"-0.999891", "perpy":"0.014798"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671925,33.581316]
+      },
+      "properties": {"street":"OSO PARK2", "color":"lime", "perpx":"-0.999911", "perpy":"0.013321"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671829,33.588522]
+      },
+      "properties": {"street":"CERVANTES", "color":"lime", "perpx":"-0.999911", "perpy":"0.013321"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 16.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673779,33.595354]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"-0.688838", "perpy":"-0.724915"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 16.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67615,33.597607]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"lime", "perpx":"-0.688838", "perpy":"-0.724915"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 17.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.687691,33.602645]
+      },
+      "properties": {"street":"ALICIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 17.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.69087,33.604617]
+      },
+      "properties": {"street":"ALICIA 2", "color":"lime", "perpx":"-0.527137", "perpy":"-0.849781"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.700998,33.609505]
+      },
+      "properties": {"street":"ANKERTON", "color":"lime", "perpx":"-0.573702", "perpy":"-0.819064"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705361,33.612561]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.647397", "perpy":"-0.762153"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.707825,33.614654]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"-0.647397", "perpy":"-0.762153"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714838,33.621819]
+      },
+      "properties": {"street":"RED ROBIN", "color":"lime", "perpx":"-0.735437", "perpy":"-0.677593"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719875,33.627286]
+      },
+      "properties": {"street":"LAKE FOR1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720919,33.628454]
+      },
+      "properties": {"street":"LAKE FOR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724695,33.631888]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"-0.650261", "perpy":"-0.759711"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724813,33.631989]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"-0.737725", "perpy":"-0.675102"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728446,33.635959]
+      },
+      "properties": {"street":"BAKE 1", "color":"lime", "perpx":"-0.737725", "perpy":"-0.675102"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731896,33.640308]
+      },
+      "properties": {"street":"BAKE 2", "color":"lime", "perpx":"-0.792319", "perpy":"-0.610107"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 21.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734722,33.643978]
+      },
+      "properties": {"street":"At 405", "color":"lime", "perpx":"-0.792319", "perpy":"-0.610107"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 2.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.609039,33.424652]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 21.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741205,33.652076]
+      },
+      "properties": {"street":"ALTON 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74294,33.654255]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"-0.78542", "perpy":"-0.618963"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743323,33.654741]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"-0.78542", "perpy":"-0.618963"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749253,33.662021]
+      },
+      "properties": {"street":"BARRANCA", "color":"lime", "perpx":"-0.788481", "perpy":"-0.615059"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75203,33.665581]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"-0.781645", "perpy":"-0.623724"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7525,33.66617]
+      },
+      "properties": {"street":"N OF 133", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753539,33.667502]
+      },
+      "properties": {"street":"5S TO 133S/BARA", "color":"lime", "perpx":"-0.809521", "perpy":"-0.587091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.754476,33.668794]
+      },
+      "properties": {"street":"TEST MVDS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755616,33.6716]
+      },
+      "properties": {"street":"S OF SAND CNYN", "color":"lime", "perpx":"-0.975596", "perpy":"-0.219572"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756223,33.674297]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"-0.809826", "perpy":"-0.58667"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759362,33.67863]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"-0.809826", "perpy":"-0.58667"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764425,33.683599]
+      },
+      "properties": {"street":"N OF SAND CNYN", "color":"lime", "perpx":"-0.835705", "perpy":"-0.549178"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.767277,33.687939]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 25.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.775267,33.700148]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"-0.828715", "perpy":"-0.559671"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.779935,33.70706]
+      },
+      "properties": {"street":"CULVER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.783134,33.710634]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.654674", "perpy":"-0.755912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784926,33.712186]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.654674", "perpy":"-0.755912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793071,33.717966]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 27.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796638,33.72047]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"-0.574555", "perpy":"-0.818466"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 28.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801999,33.724136]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"lime", "perpx":"-0.556796", "perpy":"-0.83065"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.615724,33.432273]
+      },
+      "properties": {"street":"PALIZADA", "color":"lime", "perpx":"-0.768234", "perpy":"-0.640169"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 28.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.805381,33.726403]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814369,33.732587]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"-0.566824", "perpy":"-0.823839"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.824499,33.737386]
+      },
+      "properties": {"street":"NEWPORT*", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.825947,33.737856]
+      },
+      "properties": {"street":"NEWPORT", "color":"lime", "perpx":"-0.30873", "perpy":"-0.95115"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827716,33.738432]
+      },
+      "properties": {"street":"B ST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828362,33.738636]
+      },
+      "properties": {"street":"NEWPORT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832494,33.740098]
+      },
+      "properties": {"street":"S OF 55*", "color":"lime", "perpx":"-0.326161", "perpy":"-0.945314"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835743,33.741219]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"-0.33389", "perpy":"-0.942612"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839015,33.742378]
+      },
+      "properties": {"street":"WILLIAMS (VIADUCT)", "color":"lime", "perpx":"-0.33389", "perpy":"-0.942612"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842538,33.745553]
+      },
+      "properties": {"street":"1ST", "color":"lime", "perpx":"-0.927915", "perpy":"-0.372793"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.844652,33.749928]
+      },
+      "properties": {"street":"4TH", "color":"lime", "perpx":"-0.697138", "perpy":"-0.716937"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843088,33.746922]
+      },
+      "properties": {"street":"S5 to S55 HOV VIA", "color":"lime", "perpx":"-0.927915", "perpy":"-0.372793"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846535,33.751759]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"-0.504083", "perpy":"-0.863655"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.849326,33.753388]
+      },
+      "properties": {"street":"GRAND 1", "color":"lime", "perpx":"-0.504083", "perpy":"-0.863655"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.853795,33.755475]
+      },
+      "properties": {"street":"GRAND 2", "color":"lime", "perpx":"-0.382512", "perpy":"-0.923951"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859225,33.757943]
+      },
+      "properties": {"street":"17TH 1", "color":"lime", "perpx":"-0.583453", "perpy":"-0.812147"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 3.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.619943,33.437336]
+      },
+      "properties": {"street":"PICO 1", "color":"lime", "perpx":"-0.498994", "perpy":"-0.866606"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855324,33.756108]
+      },
+      "properties": {"street":"GRAND 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863625,33.761104]
+      },
+      "properties": {"street":"17TH 2", "color":"lime", "perpx":"-0.583453", "perpy":"-0.812147"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868373,33.768742]
+      },
+      "properties": {"street":"MAIN 2", "color":"lime", "perpx":"-0.830562", "perpy":"-0.556927"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.869238,33.770032]
+      },
+      "properties": {"street":"BROADWAY", "color":"lime", "perpx":"-0.830562", "perpy":"-0.556927"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866976,33.766429]
+      },
+      "properties": {"street":"MAIN 1", "color":"lime", "perpx":"-0.855987", "perpy":"-0.516997"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872316,33.773768]
+      },
+      "properties": {"street":"SANTIAGO", "color":"lime", "perpx":"-0.780234", "perpy":"-0.625487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874337,33.776289]
+      },
+      "properties": {"street":"S OF 22", "color":"lime", "perpx":"-0.780234", "perpy":"-0.625487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87776,33.779824]
+      },
+      "properties": {"street":"LA VETA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878897,33.780805]
+      },
+      "properties": {"street":"LA VETA", "color":"lime", "perpx":"-0.617542", "perpy":"-0.786538"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880014,33.781682]
+      },
+      "properties": {"street":"N OF 57", "color":"lime", "perpx":"-0.575376", "perpy":"-0.817889"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876548,33.778694]
+      },
+      "properties": {"street":"5N&S La Veta", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881218,33.782529]
+      },
+      "properties": {"street":"N OF 57*", "color":"lime", "perpx":"-0.675711", "perpy":"-0.737167"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883653,33.784761]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.675711", "perpy":"-0.737167"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.890222,33.791651]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"-0.670989", "perpy":"-0.741468"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892284,33.793517]
+      },
+      "properties": {"street":"ORANGEWOOD 1", "color":"lime", "perpx":"-0.668203", "perpy":"-0.743979"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 3.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.624646,33.440044]
+      },
+      "properties": {"street":"PICO 2", "color":"lime", "perpx":"-0.605568", "perpy":"-0.795794"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894336,33.79536]
+      },
+      "properties": {"street":"GENE AUTRY", "color":"lime", "perpx":"-0.668203", "perpy":"-0.743979"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.901359,33.802101]
+      },
+      "properties": {"street":"KATELLA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902924,33.803614]
+      },
+      "properties": {"street":"HOV GENE AUTRY OFF", "color":"lime", "perpx":"-0.661771", "perpy":"-0.749706"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.904254,33.804788]
+      },
+      "properties": {"street":"ANAHEIM 1", "color":"lime", "perpx":"-0.654355", "perpy":"-0.756187"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.906207,33.806478]
+      },
+      "properties": {"street":"ANAHEIM 2", "color":"lime", "perpx":"-0.688863", "perpy":"-0.724891"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.910895,33.810933]
+      },
+      "properties": {"street":"S OF HARBOR", "color":"lime", "perpx":"-0.688863", "perpy":"-0.724891"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.916397,33.816263]
+      },
+      "properties": {"street":"HARBOR", "color":"lime", "perpx":"-0.689841", "perpy":"-0.723961"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918922,33.818669]
+      },
+      "properties": {"street":"BALL", "color":"lime", "perpx":"-0.697036", "perpy":"-0.717036"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922328,33.82198]
+      },
+      "properties": {"street":"SOUTH 1", "color":"lime", "perpx":"-0.750414", "perpy":"-0.660968"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 38.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.927279,33.827601]
+      },
+      "properties": {"street":"PEPPER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938264,33.834594]
+      },
+      "properties": {"street":"EUCLID 1", "color":"lime", "perpx":"-0.361622", "perpy":"-0.932325"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933068,33.832791]
+      },
+      "properties": {"street":"LINCOLN", "color":"lime", "perpx":"-0.327822", "perpy":"-0.944739"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943178,33.8365]
+      },
+      "properties": {"street":"EUCLID 2", "color":"lime", "perpx":"-0.471004", "perpy":"-0.882131"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.949454,33.839851]
+      },
+      "properties": {"street":"CRESCENT", "color":"lime", "perpx":"-0.48436", "perpy":"-0.874869"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955942,33.843443]
+      },
+      "properties": {"street":"BROOKHURST 1", "color":"lime", "perpx":"-0.48436", "perpy":"-0.874869"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.96276,33.847169]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"-0.460852", "perpy":"-0.887477"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 4.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.631557,33.445303]
+      },
+      "properties": {"street":"HERMOSA 2", "color":"lime", "perpx":"-0.605568", "perpy":"-0.795794"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.968231,33.85001]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.460852", "perpy":"-0.887477"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.975069,33.854064]
+      },
+      "properties": {"street":"MAGNOLIA 91E OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.97494,33.853961]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.623956", "perpy":"-0.781459"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976235,33.854882]
+      },
+      "properties": {"street":"MAGNOLIA 2", "color":"lime", "perpx":"-0.57431", "perpy":"-0.818638"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 42.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.985205,33.859063]
+      },
+      "properties": {"street":"ORANGETHORPE 2", "color":"lime", "perpx":"-0.473855", "perpy":"-0.880603"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 42.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.987777,33.860447]
+      },
+      "properties": {"street":"N OF ORANGETHORPE", "color":"lime", "perpx":"-0.473855", "perpy":"-0.880603"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992155,33.862901]
+      },
+      "properties": {"street":"STANTON", "color":"lime", "perpx":"-0.493087", "perpy":"-0.86998"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.996273,33.865235]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.493087", "perpy":"-0.86998"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992016,33.86282]
+      },
+      "properties": {"street":"SB 5 to EB 91", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.000667,33.867596]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.455465", "perpy":"-0.890254"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.005145,33.869887]
+      },
+      "properties": {"street":"Western", "color":"lime", "perpx":"-0.455465", "perpy":"-0.890254"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 44.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.009266,33.872567]
+      },
+      "properties": {"street":"ARTESIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640023,33.450269]
+      },
+      "properties": {"street":"S OF VAQUERO", "color":"lime", "perpx":"-0.478189", "perpy":"-0.878257"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.648005,33.454615]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"-0.395835", "perpy":"-0.918322"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.650318,33.455612]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"-0.443289", "perpy":"-0.896379"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.653153,33.457014]
+      },
+      "properties": {"street":"ESTRELLA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 6.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.665631,33.464281]
+      },
+      "properties": {"street":"SACRAMENTO", "color":"lime", "perpx":"-0.56275", "perpy":"-0.826627"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 6.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.667379,33.465471]
+      },
+      "properties": {"street":"RTE 1 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 7.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674584,33.475102]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"-0.815879", "perpy":"0.578222"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 7.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669881,33.481738]
+      },
+      "properties": {"street":"AEROPUERTO", "color":"lime", "perpx":"-0.815879", "perpy":"0.578222"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663917,33.489176]
+      },
+      "properties": {"street":"S JUAN CREEK", "color":"lime", "perpx":"-0.836267", "perpy":"0.548322"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.659442,33.496001]
+      },
+      "properties": {"street":"PLAZA", "color":"lime", "perpx":"-0.971491", "perpy":"0.237077"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658583,33.499521]
+      },
+      "properties": {"street":"ORTEGA 1", "color":"lime", "perpx":"-0.996721", "perpy":"-0.080919"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.65892,33.503672]
+      },
+      "properties": {"street":"ORTEGA  2", "color":"lime", "perpx":"-0.996721", "perpy":"-0.080919"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 0.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.093885,33.774295]
+      },
+      "properties": {"street":"COLLEGE PARK", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882341,33.778903]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"0.009671", "perpy":"-0.999953"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878722,33.778938]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.018208", "perpy":"-0.999834"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875647,33.778882]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.163762", "perpy":"-0.9865"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872382,33.77834]
+      },
+      "properties": {"street":"E OF 5", "color":"lime", "perpx":"-0.163762", "perpy":"-0.9865"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034947,33.774261]
+      },
+      "properties": {"street":"VALLEY V2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 11.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862808,33.778206]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"-0.226291", "perpy":"-0.97406"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855753,33.776567]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"-0.249497", "perpy":"-0.968376"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850292,33.77516]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"0.111941", "perpy":"-0.993715"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846173,33.775624]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"0.111941", "perpy":"-0.993715"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838553,33.776625]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.029233,33.774239]
+      },
+      "properties": {"street":"VIA LOS ALISOS", "color":"lime", "perpx":"-0.00385", "perpy":"-0.999993"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023517,33.774214]
+      },
+      "properties": {"street":"SPRINGDALE CENSUS", "color":"lime", "perpx":"0.0", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023344,33.774214]
+      },
+      "properties": {"street":"SPRINGDALE", "color":"lime", "perpx":"-0.000902", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.0178,33.774209]
+      },
+      "properties": {"street":"YUMA", "color":"lime", "perpx":"-0.000902", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.010537,33.774494]
+      },
+      "properties": {"street":"KNOTT 1", "color":"lime", "perpx":"-0.13051", "perpy":"-0.991447"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.006807,33.774003]
+      },
+      "properties": {"street":"GARDEN GROV", "color":"lime", "perpx":"-0.410336", "perpy":"-0.911934"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004149,33.772807]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"-0.410336", "perpy":"-0.911934"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 3.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.994688,33.771171]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.057103", "perpy":"-0.998368"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 3.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.989845,33.770894]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.058722", "perpy":"-0.998274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984626,33.770587]
+      },
+      "properties": {"street":"WILSON", "color":"lime", "perpx":"-0.058722", "perpy":"-0.998274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.979526,33.769467]
+      },
+      "properties": {"street":"NEWLAND", "color":"lime", "perpx":"-0.583276", "perpy":"-0.812274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976135,33.767032]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"-0.198967", "perpy":"-0.980006"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969658,33.765717]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"lime", "perpx":"-0.198967", "perpy":"-0.980006"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.959406,33.765798]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"0.009319", "perpy":"-0.999957"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.958333,33.765808]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955835,33.765809]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"lime", "perpx":"0.010191", "perpy":"-0.999948"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.951027,33.765858]
+      },
+      "properties": {"street":"HOPE", "color":"lime", "perpx":"0.010191", "perpy":"-0.999948"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.946095,33.76591]
+      },
+      "properties": {"street":"WARD", "color":"lime", "perpx":"0.008461", "perpy":"-0.999964"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.941486,33.765949]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"0.008037", "perpy":"-0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.935763,33.765995]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.008037", "perpy":"-0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929691,33.766038]
+      },
+      "properties": {"street":"NEWHOPE", "color":"lime", "perpx":"-0.00578", "perpy":"-0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929518,33.766037]
+      },
+      "properties": {"street":"NEWHOPE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"-0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922361,33.76705]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"0.32366", "perpy":"-0.946173"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.917517,33.768707]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"0.34339", "perpy":"-0.939193"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913078,33.77033]
+      },
+      "properties": {"street":"PEARCE", "color":"lime", "perpx":"0.34339", "perpy":"-0.939193"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907372,33.773077]
+      },
+      "properties": {"street":"GARDEN G1", "color":"lime", "perpx":"0.456112", "perpy":"-0.889922"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.901985,33.775838]
+      },
+      "properties": {"street":"GARDEN GROVE 2", "color":"lime", "perpx":"0.456112", "perpy":"-0.889922"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895881,33.778512]
+      },
+      "properties": {"street":"LEWIS", "color":"lime", "perpx":"0.063537", "perpy":"-0.997979"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889394,33.778925]
+      },
+      "properties": {"street":"THE CITY DRIVE", "color":"lime", "perpx":"-0.007156", "perpy":"-0.999974"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88618,33.778902]
+      },
+      "properties": {"street":"HESPERIAN", "color":"lime", "perpx":"-0.007156", "perpy":"-0.999974"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 0.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.093888,33.774472]
+      },
+      "properties": {"street":"COLLEGE PARK", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 0.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.038174,33.774686]
+      },
+      "properties": {"street":"VALLEY V1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882183,33.779081]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"-0.00667", "perpy":"0.999978"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878735,33.779104]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.021147", "perpy":"0.999776"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875662,33.779039]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.174163", "perpy":"0.984717"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872394,33.778461]
+      },
+      "properties": {"street":"E OF 5", "color":"lime", "perpx":"0.174163", "perpy":"0.984717"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 11.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863135,33.778348]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"0.219291", "perpy":"0.97566"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855696,33.776676]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"0.249721", "perpy":"0.968318"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850279,33.775279]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"-0.113292", "perpy":"0.993562"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846201,33.775744]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"-0.113292", "perpy":"0.993562"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838554,33.776862]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036302,33.774521]
+      },
+      "properties": {"street":"VALLEY V2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.029216,33.774397]
+      },
+      "properties": {"street":"VIA LOS ALISOS", "color":"lime", "perpx":"0.001402", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.02351,33.774389]
+      },
+      "properties": {"street":"SPRINGDALE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023337,33.77439]
+      },
+      "properties": {"street":"SPRINGDALE", "color":"lime", "perpx":"0.003425", "perpy":"0.999994"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.017789,33.774371]
+      },
+      "properties": {"street":"YUMA", "color":"lime", "perpx":"0.003425", "perpy":"0.999994"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.010501,33.774652]
+      },
+      "properties": {"street":"KNOTT 1", "color":"lime", "perpx":"0.127522", "perpy":"0.991836"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.006721,33.774166]
+      },
+      "properties": {"street":"GARDEN GROV", "color":"lime", "perpx":"0.421869", "perpy":"0.906657"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004084,33.772939]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"0.421869", "perpy":"0.906657"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 3.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.994525,33.771348]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.061692", "perpy":"0.998095"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 3.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.989817,33.771057]
+      },
+      "properties": {"street":"BEACH2", "color":"lime", "perpx":"0.055628", "perpy":"0.998452"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984576,33.770765]
+      },
+      "properties": {"street":"WILSON", "color":"lime", "perpx":"0.055628", "perpy":"0.998452"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.979437,33.769612]
+      },
+      "properties": {"street":"NEWLAND", "color":"lime", "perpx":"0.582785", "perpy":"0.812626"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976011,33.767155]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"0.196678", "perpy":"0.980468"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.96964,33.765877]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"lime", "perpx":"0.196678", "perpy":"0.980468"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 5.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.959407,33.765954]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"-0.004759", "perpy":"0.999989"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 5.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955835,33.765971]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"lime", "perpx":"-0.006239", "perpy":"0.999981"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.951027,33.766001]
+      },
+      "properties": {"street":"HOPE", "color":"lime", "perpx":"-0.006239", "perpy":"0.999981"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.946098,33.76605]
+      },
+      "properties": {"street":"WARD", "color":"lime", "perpx":"-0.006293", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94149,33.766079]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"-0.011359", "perpy":"0.999935"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.935768,33.766144]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"-0.011359", "perpy":"0.999935"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929696,33.766181]
+      },
+      "properties": {"street":"NEWHOPE", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929523,33.766182]
+      },
+      "properties": {"street":"NEWHOPE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922445,33.767174]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.323962", "perpy":"0.94607"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.919037,33.768341]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"-0.337825", "perpy":"0.941209"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 8.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.91315,33.770454]
+      },
+      "properties": {"street":"PEARCE", "color":"lime", "perpx":"-0.337825", "perpy":"0.941209"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 8.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907475,33.773193]
+      },
+      "properties": {"street":"GARDEN G1", "color":"lime", "perpx":"-0.456614", "perpy":"0.889665"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902076,33.775964]
+      },
+      "properties": {"street":"GARDEN G2", "color":"lime", "perpx":"-0.456614", "perpy":"0.889665"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895924,33.77865]
+      },
+      "properties": {"street":"LEWIS", "color":"lime", "perpx":"-0.068365", "perpy":"0.99766"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889576,33.779085]
+      },
+      "properties": {"street":"CITY DRIVE", "color":"lime", "perpx":"0.007955", "perpy":"0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.886182,33.779058]
+      },
+      "properties": {"street":"HESPERIAN", "color":"lime", "perpx":"0.007955", "perpy":"0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833583,33.737088]
+      },
+      "properties": {"street":"N OF 5 OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833528,33.734423]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"0.999787", "perpy":"0.020634"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83368,33.739982]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.999923", "perpy":"0.012439"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833698,33.741429]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0.97478", "perpy":"-0.22317"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 11.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831768,33.749859]
+      },
+      "properties": {"street":"FOURTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 11.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830994,33.759105]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830905,33.767287]
+      },
+      "properties": {"street":"SANTA CLARA", "color":"lime", "perpx":"0.999999", "perpy":"0.001196"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830834,33.762898]
+      },
+      "properties": {"street":"17TH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830912,33.773139]
+      },
+      "properties": {"street":"FAIRHAVEN", "color":"lime", "perpx":"0.999999", "perpy":"0.001196"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830884,33.790409]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831045,33.797732]
+      },
+      "properties": {"street":"Walnut", "color":"lime", "perpx":"0.994412", "perpy":"0.105571"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831355,33.800652]
+      },
+      "properties": {"street":"COLLINS", "color":"lime", "perpx":"0.994412", "perpy":"0.105571"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831849,33.809608]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0.999767", "perpy":"0.021575"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831905,33.812203]
+      },
+      "properties": {"street":"KATELLA  2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831919,33.817981]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83192,33.823807]
+      },
+      "properties": {"street":"MEATS", "color":"lime", "perpx":"1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 17.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.834992,33.837111]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 2.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.909275,33.650995]
+      },
+      "properties": {"street":"VICTORIA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 2.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.908497,33.651784]
+      },
+      "properties": {"street":"VICTORIA1", "color":"lime", "perpx":"0.712053", "perpy":"-0.702126"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905264,33.655235]
+      },
+      "properties": {"street":"VICTORIA2", "color":"lime", "perpx":"0.7454", "perpy":"-0.666618"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.091",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905044,33.655481]
+      },
+      "properties": {"street":"VICTORIA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899494,33.661052]
+      },
+      "properties": {"street":"FAIR 1", "color":"lime", "perpx":"0.711701", "perpy":"-0.702482"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895303,33.665298]
+      },
+      "properties": {"street":"FAIR 2", "color":"lime", "perpx":"0.711701", "perpy":"-0.702482"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 4.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888101,33.671785]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"0.612685", "perpy":"-0.790327"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.886575,33.672968]
+      },
+      "properties": {"street":"BAKER 1", "color":"lime", "perpx":"0.649874", "perpy":"-0.760042"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882208,33.676702]
+      },
+      "properties": {"street":"BAKER 2", "color":"lime", "perpx":"0.649874", "perpy":"-0.760042"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877327,33.681801]
+      },
+      "properties": {"street":"PAULARINO 1", "color":"lime", "perpx":"0.73612", "perpy":"-0.676851"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874255,33.685142]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"0.725068", "perpy":"-0.688678"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873498,33.685939]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"0.719864", "perpy":"-0.694115"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870964,33.688567]
+      },
+      "properties": {"street":"AIRPORT AT 55 NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868181,33.691451]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"0.719595", "perpy":"-0.694394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861831,33.698026]
+      },
+      "properties": {"street":"MACARTHU1", "color":"lime", "perpx":"0.740557", "perpy":"-0.671994"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860155,33.699873]
+      },
+      "properties": {"street":"MACARTHU2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8595,33.70056]
+      },
+      "properties": {"street":"MACARTHU2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85183,33.708364]
+      },
+      "properties": {"street":"DYER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 8.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848847,33.711314]
+      },
+      "properties": {"street":"DYER 2", "color":"lime", "perpx":"0.71172", "perpy":"-0.702463"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843611,33.716619]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"0.71172", "perpy":"-0.702463"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 9.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83503,33.726049]
+      },
+      "properties": {"street":"EDINGER 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 9.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833555,33.732101]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"0.999932", "perpy":"-0.011627"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83402,33.734422]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"-0.999946", "perpy":"-0.010425"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833908,33.739982]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.999756", "perpy":"0.022109"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833876,33.741429]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.987616", "perpy":"0.156888"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83311,33.746251]
+      },
+      "properties": {"street":"FOURTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 11.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831392,33.75738]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 12.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83108,33.767289]
+      },
+      "properties": {"street":"SANTA CLARA", "color":"lime", "perpx":"-0.999999", "perpy":"-0.001368"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831088,33.773138]
+      },
+      "properties": {"street":"FAIRHAVEN", "color":"lime", "perpx":"-0.999999", "perpy":"-0.001368"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 13.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831128,33.784755]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 13.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831081,33.788212]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831223,33.797729]
+      },
+      "properties": {"street":"Walnut", "color":"lime", "perpx":"-0.994624", "perpy":"-0.10355"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831527,33.800649]
+      },
+      "properties": {"street":"COLLINS", "color":"lime", "perpx":"-0.994624", "perpy":"-0.10355"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 15.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832031,33.809605]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"-0.999968", "perpy":"-0.008001"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832098,33.817979]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"-1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832097,33.823807]
+      },
+      "properties": {"street":"MEATS", "color":"lime", "perpx":"-1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 16.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.834539,33.830875]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 17.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835146,33.837162]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"-0.995372", "perpy":"-0.096102"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 2.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.908673,33.651901]
+      },
+      "properties": {"street":"VICTORIA1", "color":"lime", "perpx":"-0.732846", "perpy":"0.680394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905456,33.655366]
+      },
+      "properties": {"street":"VICTORIA2", "color":"lime", "perpx":"-0.732846", "perpy":"0.680394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899681,33.661183]
+      },
+      "properties": {"street":"FAIR 1", "color":"lime", "perpx":"-0.712081", "perpy":"0.702098"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895602,33.66532]
+      },
+      "properties": {"street":"FAIR 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895493,33.665433]
+      },
+      "properties": {"street":"FAIR 2", "color":"lime", "perpx":"-0.719731", "perpy":"0.694253"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 4.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888309,33.671928]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"-0.612257", "perpy":"0.790659"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88678,33.673112]
+      },
+      "properties": {"street":"BAKER 1", "color":"lime", "perpx":"-0.639107", "perpy":"0.769118"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882355,33.676789]
+      },
+      "properties": {"street":"BAKER 2", "color":"lime", "perpx":"-0.639107", "perpy":"0.769118"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87755,33.681935]
+      },
+      "properties": {"street":"PAULARINO 1", "color":"lime", "perpx":"-0.722093", "perpy":"0.691796"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874399,33.685224]
+      },
+      "properties": {"street":"N405 to S55", "color":"lime", "perpx":"-0.719715", "perpy":"0.69427"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873635,33.686016]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"-0.725185", "perpy":"0.688554"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868353,33.691579]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"-0.725185", "perpy":"0.688554"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 6.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862677,33.697495]
+      },
+      "properties": {"street":"MACARTHU1", "color":"lime", "perpx":"-0.710326", "perpy":"0.703873"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 7.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861041,33.699146]
+      },
+      "properties": {"street":"MACARTHU2", "color":"lime", "perpx":"-0.710326", "perpy":"0.703873"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 7.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.854598,33.705879]
+      },
+      "properties": {"street":"DYER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 8.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.849099,33.711451]
+      },
+      "properties": {"street":"DYER 2", "color":"lime", "perpx":"-0.708914", "perpy":"0.705295"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843837,33.71674]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"-0.711107", "perpy":"0.703084"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 9.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837265,33.723387]
+      },
+      "properties": {"street":"EDINGER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 9.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833996,33.73212]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"-0.999946", "perpy":"-0.010425"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 10.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873418,33.779069]
+      },
+      "properties": {"street":"RTE 22 & 5 NB", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879424,33.78435]
+      },
+      "properties": {"street":"AT CHAPMAN OFF", "color":"lime", "perpx":"0.991811", "perpy":"0.127713"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879769,33.787426]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879753,33.786905]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.999529", "perpy":"0.030696"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879807,33.788781]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879799,33.790105]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878448,33.794121]
+      },
+      "properties": {"street":"ORANGEWO1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877848,33.795482]
+      },
+      "properties": {"street":"ORANGEWO2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880058,33.805531]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0.984745", "perpy":"-0.174004"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879559,33.808355]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879353,33.808904]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878472,33.811084]
+      },
+      "properties": {"street":"DOUGLASS", "color":"lime", "perpx":"0.927151", "perpy":"-0.374688"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876479,33.816586]
+      },
+      "properties": {"street":"BALL 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876254,33.81772]
+      },
+      "properties": {"street":"BALL 1", "color":"lime", "perpx":"0.980879", "perpy":"-0.194619"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87605,33.819435]
+      },
+      "properties": {"street":"BALL 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875999,33.820297]
+      },
+      "properties": {"street":"BALL 2", "color":"lime", "perpx":"0.999993", "perpy":"-0.00368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875981,33.825188]
+      },
+      "properties": {"street":"Wagner", "color":"lime", "perpx":"0.999993", "perpy":"-0.00368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875965,33.83238]
+      },
+      "properties": {"street":"South", "color":"lime", "perpx":"0.999995", "perpy":"-0.003244"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87595,33.837126]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"lime", "perpx":"0.999982", "perpy":"-0.00608"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875951,33.836695]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875935,33.839593]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"0.999936", "perpy":"-0.011332"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875902,33.842505]
+      },
+      "properties": {"street":"UNDERHILL", "color":"lime", "perpx":"0.999936", "perpy":"-0.011332"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875931,33.846873]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.996618", "perpy":"-0.082174"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875572,33.851227]
+      },
+      "properties": {"street":"N of 91", "color":"lime", "perpx":"0.996618", "perpy":"-0.082174"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 16.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875678,33.857169]
+      },
+      "properties": {"street":"LA JOLLA", "color":"lime", "perpx":"0.947346", "perpy":"0.320213"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 16.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877557,33.862728]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"lime", "perpx":"0.95802", "perpy":"0.286703"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879677,33.869812]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"0.95802", "perpy":"0.286703"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880294,33.879813]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88031,33.880532]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880484,33.888435]
+      },
+      "properties": {"street":"YORBA LI1", "color":"lime", "perpx":"0.999634", "perpy":"0.027056"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880559,33.891206]
+      },
+      "properties": {"street":"YORBA LI2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880561,33.891352]
+      },
+      "properties": {"street":"YORBA LI2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880822,33.896472]
+      },
+      "properties": {"street":"Bastanchury", "color":"lime", "perpx":"0.997832", "perpy":"0.065812"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 19.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881063,33.900126]
+      },
+      "properties": {"street":"ROLLING  HILLS", "color":"lime", "perpx":"0.997832", "perpy":"0.065812"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883309,33.909962]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.998732", "perpy":"-0.050333"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 20.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882887,33.913565]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"0.93136", "perpy":"-0.364101"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 20",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883163,33.912859]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879984,33.928813]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 21.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879881,33.929701]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875138,33.940872]
+      },
+      "properties": {"street":"TONNER", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 10.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874735,33.777415]
+      },
+      "properties": {"street":"RTE 22 & 5", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880197,33.783256]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.99935", "perpy":"0.036044"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880073,33.786694]
+      },
+      "properties": {"street":"AT CHAPMAN OFF", "color":"lime", "perpx":"-0.996864", "perpy":"0.079133"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879621,33.792388]
+      },
+      "properties": {"street":"ORANGEWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88008,33.804096]
+      },
+      "properties": {"street":"KATELLA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880243,33.806677]
+      },
+      "properties": {"street":"KATELLA 2", "color":"lime", "perpx":"-0.945662", "perpy":"0.325152"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878726,33.811089]
+      },
+      "properties": {"street":"DOUGLASS", "color":"lime", "perpx":"-0.945662", "perpy":"0.325152"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876814,33.816163]
+      },
+      "properties": {"street":"BALL 1", "color":"lime", "perpx":"-0.983876", "perpy":"0.178852"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876349,33.818721]
+      },
+      "properties": {"street":"BALL 2", "color":"lime", "perpx":"-0.999897", "perpy":"0.01437"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876256,33.825192]
+      },
+      "properties": {"street":"Wagner", "color":"lime", "perpx":"-0.999897", "perpy":"0.01437"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876232,33.832386]
+      },
+      "properties": {"street":"South", "color":"lime", "perpx":"-0.999935", "perpy":"0.011398"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876191,33.835983]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"lime", "perpx":"-0.999998", "perpy":"0.001928"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876186,33.838577]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"-0.999986", "perpy":"-0.005368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876207,33.842489]
+      },
+      "properties": {"street":"UNDERHILL", "color":"lime", "perpx":"-0.999986", "perpy":"-0.005368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876202,33.846832]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"-0.996812", "perpy":"0.079791"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875855,33.851167]
+      },
+      "properties": {"street":"N of 91", "color":"lime", "perpx":"-0.996812", "perpy":"0.079791"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 16.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876106,33.857092]
+      },
+      "properties": {"street":"LA JOLLA", "color":"lime", "perpx":"-0.960098", "perpy":"-0.279663"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 16.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87757,33.862118]
+      },
+      "properties": {"street":"ORANGETHOR", "color":"lime", "perpx":"-0.960098", "perpy":"-0.279663"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880462,33.872312]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879875,33.869773]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"-0.974301", "perpy":"-0.225252"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880503,33.87562]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880716,33.886705]
+      },
+      "properties": {"street":"YORBA LI1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880785,33.889447]
+      },
+      "properties": {"street":"YORBA LI2", "color":"lime", "perpx":"-0.999684", "perpy":"-0.025156"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881094,33.896472]
+      },
+      "properties": {"street":"Bastanchury", "color":"lime", "perpx":"-0.99801", "perpy":"-0.063058"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881325,33.900128]
+      },
+      "properties": {"street":"ROLLING HILLS", "color":"lime", "perpx":"-0.99801", "perpy":"-0.063058"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883224,33.90899]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"-0.986464", "perpy":"-0.163975"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883726,33.91201]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.953779", "perpy":"0.30051"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 20.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880298,33.92289]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 22.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874675,33.94149]
+      },
+      "properties": {"street":"TONNER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875322,33.940956]
+      },
+      "properties": {"street":"TONNER", "color":"lime", "perpx":"-0.636543", "perpy":"0.771242"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 10.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674552,33.545677]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"0.971174", "perpy":"0.238373"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675644,33.550126]
+      },
+      "properties": {"street":"SORRENTO", "color":"lime", "perpx":"0.940629", "perpy":"0.339435"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.677239,33.554546]
+      },
+      "properties": {"street":"CABOT", "color":"lime", "perpx":"0.940629", "perpy":"0.339435"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683209,33.557803]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"0.198325", "perpy":"0.980136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68611,33.55839]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"0.198325", "perpy":"0.980136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690855,33.559873]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"0.471098", "perpy":"0.882081"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.693351,33.562029]
+      },
+      "properties": {"street":"ROCKRIDGE", "color":"lime", "perpx":"0.802439", "perpy":"0.596734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689417,33.559105]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"0.471098", "perpy":"0.882081"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695254,33.564588]
+      },
+      "properties": {"street":"WESTRIDGE", "color":"lime", "perpx":"0.701895", "perpy":"0.712281"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.698683,33.567967]
+      },
+      "properties": {"street":"MOULTON", "color":"lime", "perpx":"0.701895", "perpy":"0.712281"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.702528,33.571095]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"0.63793", "perpy":"0.770095"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.703268,33.571708]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"0.577247", "perpy":"0.816569"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705711,33.573435]
+      },
+      "properties": {"street":"LA PAZ  1", "color":"lime", "perpx":"0.577247", "perpy":"0.816569"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70902,33.574966]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.710558,33.575554]
+      },
+      "properties": {"street":"ALICIA", "color":"lime", "perpx":"0.357106", "perpy":"0.934064"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713695,33.576682]
+      },
+      "properties": {"street":"ALICIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714614,33.577091]
+      },
+      "properties": {"street":"ALISO 1", "color":"lime", "perpx":"0.4066", "perpy":"0.913606"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720958,33.580619]
+      },
+      "properties": {"street":"ALISO 3", "color":"lime", "perpx":"0.580052", "perpy":"0.81458"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724921,33.583441]
+      },
+      "properties": {"street":"ALISO 4", "color":"lime", "perpx":"0.578216", "perpy":"0.815884"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72822,33.585779]
+      },
+      "properties": {"street":"LAGUNA HILLS", "color":"lime", "perpx":"0.329384", "perpy":"0.944196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733096,33.58748]
+      },
+      "properties": {"street":"GLENWOOD 1", "color":"lime", "perpx":"0.329384", "perpy":"0.944196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740639,33.588223]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.158104", "perpy":"0.987422"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744024,33.588765]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.32185", "perpy":"0.946791"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744983,33.589091]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"0.321018", "perpy":"0.947073"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749665,33.590678]
+      },
+      "properties": {"street":"EL TORO 3", "color":"lime", "perpx":"0.321018", "perpy":"0.947073"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755573,33.591624]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"0.151183", "perpy":"0.988506"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755743,33.59165]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"0.151183", "perpy":"0.988506"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76171,33.593909]
+      },
+      "properties": {"street":"RTE 133 3", "color":"lime", "perpx":"0.57864", "perpy":"0.815583"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764653,33.595997]
+      },
+      "properties": {"street":"RTE 133 4", "color":"lime", "perpx":"0.57864", "perpy":"0.815583"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770961,33.598966]
+      },
+      "properties": {"street":"S OF PM 18", "color":"lime", "perpx":"0.126344", "perpy":"0.991986"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.776669,33.599693]
+      },
+      "properties": {"street":"AT PM 18", "color":"lime", "perpx":"0.126344", "perpy":"0.991986"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782151,33.601969]
+      },
+      "properties": {"street":"WILDLIFE", "color":"lime", "perpx":"0.16463", "perpy":"0.986355"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 18.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.786992,33.602777]
+      },
+      "properties": {"street":"CATALINA 1", "color":"lime", "perpx":"0.16463", "perpy":"0.986355"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 19.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801253,33.607825]
+      },
+      "properties": {"street":"CATALINA 2", "color":"lime", "perpx":"0.300702", "perpy":"0.953718"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806039,33.609334]
+      },
+      "properties": {"street":"CATALINA 3", "color":"lime", "perpx":"0.300702", "perpy":"0.953718"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812765,33.610446]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.469891", "perpy":"0.882724"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.815658,33.611986]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"0.469891", "perpy":"0.882724"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.817786,33.614224]
+      },
+      "properties": {"street":"SAND CANYON 3", "color":"lime", "perpx":"0.871209", "perpy":"0.490912"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.819255,33.616831]
+      },
+      "properties": {"street":"SAND CANYON 4", "color":"lime", "perpx":"0.796595", "perpy":"0.604514"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.822056,33.620522]
+      },
+      "properties": {"street":"SAND CANYON 5", "color":"lime", "perpx":"0.796595", "perpy":"0.604514"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828171,33.623392]
+      },
+      "properties": {"street":"NEWPORT COAST 1", "color":"lime", "perpx":"0.622803", "perpy":"0.782378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831907,33.626366]
+      },
+      "properties": {"street":"NEWPORT COAST 2", "color":"lime", "perpx":"0.622803", "perpy":"0.782378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837358,33.629759]
+      },
+      "properties": {"street":"S OF BONITA", "color":"lime", "perpx":"0.284483", "perpy":"0.958681"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842241,33.631208]
+      },
+      "properties": {"street":"BONITA 1", "color":"lime", "perpx":"0.292278", "perpy":"0.956333"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847113,33.632697]
+      },
+      "properties": {"street":"BONITA 2", "color":"lime", "perpx":"0.292278", "perpy":"0.956333"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.852976,33.635664]
+      },
+      "properties": {"street":"N OF BONITA", "color":"lime", "perpx":"0.589389", "perpy":"0.80785"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856881,33.638513]
+      },
+      "properties": {"street":"BISON 1", "color":"lime", "perpx":"0.800308", "perpy":"0.599589"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.858984,33.64132]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"0.934342", "perpy":"0.356378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859875,33.643656]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"0.976131", "perpy":"0.217185"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860508,33.646501]
+      },
+      "properties": {"street":"MACARTHUR 2", "color":"lime", "perpx":"0.976131", "perpy":"0.217185"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8614,33.650823]
+      },
+      "properties": {"street":"UNIVERSITY SOUT", "color":"lime", "perpx":"0.853282", "perpy":"0.52145"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863578,33.654387]
+      },
+      "properties": {"street":"MACARTHUR BLVD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864027,33.654806]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"lime", "perpx":"0.635445", "perpy":"0.772146"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86475,33.655401]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"0.635445", "perpy":"0.772146"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 25.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870921,33.659804]
+      },
+      "properties": {"street":"ORCHID", "color":"lime", "perpx":"0.565437", "perpy":"0.824792"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 25.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87634,33.663519]
+      },
+      "properties": {"street":"CAMPUS", "color":"lime", "perpx":"0.565437", "perpy":"0.824792"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883175,33.67012]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"0.756677", "perpy":"0.653789"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887299,33.674893]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"0.76071", "perpy":"0.649092"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.791",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888212,33.675963]
+      },
+      "properties": {"street":"N55 TO N73 On", "color":"lime", "perpx":"0.76071", "perpy":"0.649092"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892318,33.680652]
+      },
+      "properties": {"street":"BEAR 1", "color":"lime", "perpx":"0.737613", "perpy":"0.675223"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894515,33.683052]
+      },
+      "properties": {"street":"BEAR 2", "color":"lime", "perpx":"0.737613", "perpy":"0.675223"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897754,33.686594]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 10.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674915,33.545627]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"-0.969543", "perpy":"-0.244923"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676025,33.550021]
+      },
+      "properties": {"street":"SORRENTO", "color":"lime", "perpx":"-0.942619", "perpy":"-0.333871"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.677553,33.554335]
+      },
+      "properties": {"street":"CABOT", "color":"lime", "perpx":"-0.942619", "perpy":"-0.333871"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683347,33.557463]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"-0.204557", "perpy":"-0.978855"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.686199,33.558059]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"-0.204557", "perpy":"-0.978855"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.69095,33.559525]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"-0.452101", "perpy":"-0.891967"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.693516,33.56161]
+      },
+      "properties": {"street":"ROCKRIDGE", "color":"lime", "perpx":"-0.799245", "perpy":"-0.601005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689492,33.558786]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"-0.452101", "perpy":"-0.891967"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695429,33.564154]
+      },
+      "properties": {"street":"WESTRIDGE", "color":"lime", "perpx":"-0.799245", "perpy":"-0.601005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.698836,33.567532]
+      },
+      "properties": {"street":"MOULTON", "color":"lime", "perpx":"-0.62128", "perpy":"-0.783589"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699705,33.568221]
+      },
+      "properties": {"street":"MOULTON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.702926,33.570836]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"-0.631459", "perpy":"-0.775409"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.703734,33.571494]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"-0.587164", "perpy":"-0.809468"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706028,33.573158]
+      },
+      "properties": {"street":"LA PAZ  1", "color":"lime", "perpx":"-0.587164", "perpy":"-0.809468"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71075,33.575244]
+      },
+      "properties": {"street":"ALICIA", "color":"lime", "perpx":"-0.354891", "perpy":"-0.934908"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714799,33.576781]
+      },
+      "properties": {"street":"ALISO 1", "color":"lime", "perpx":"-0.354891", "perpy":"-0.934908"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721195,33.580299]
+      },
+      "properties": {"street":"ALISO 3", "color":"lime", "perpx":"-0.578216", "perpy":"-0.815884"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725184,33.583126]
+      },
+      "properties": {"street":"ALISO 4", "color":"lime", "perpx":"-0.56863", "perpy":"-0.822593"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728504,33.585421]
+      },
+      "properties": {"street":"LAGUNA HILLS", "color":"lime", "perpx":"-0.332032", "perpy":"-0.943268"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733325,33.587118]
+      },
+      "properties": {"street":"GLENWOOD 1", "color":"lime", "perpx":"-0.332032", "perpy":"-0.943268"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740964,33.587924]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.173867", "perpy":"-0.984769"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744385,33.588528]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.317685", "perpy":"-0.948196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745361,33.588855]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"-0.317685", "perpy":"-0.948196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749258,33.590166]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.750156,33.590342]
+      },
+      "properties": {"street":"EL TORO 3", "color":"lime", "perpx":"-0.192332", "perpy":"-0.98133"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755882,33.59118]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"-0.141421", "perpy":"-0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756043,33.591203]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"-0.141421", "perpy":"-0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761968,33.593514]
+      },
+      "properties": {"street":"RTE 133 3", "color":"lime", "perpx":"-0.569484", "perpy":"-0.822002"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764927,33.595564]
+      },
+      "properties": {"street":"RTE 133 4", "color":"lime", "perpx":"-0.569484", "perpy":"-0.822002"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.771217,33.59849]
+      },
+      "properties": {"street":"S OF PM 18", "color":"lime", "perpx":"-0.12791", "perpy":"-0.991786"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.776885,33.599221]
+      },
+      "properties": {"street":"AT PM 18", "color":"lime", "perpx":"-0.12791", "perpy":"-0.991786"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.78232,33.601523]
+      },
+      "properties": {"street":"WILDLIFE", "color":"lime", "perpx":"-0.168311", "perpy":"-0.985734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 18.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.787181,33.602353]
+      },
+      "properties": {"street":"CATALINA 1", "color":"lime", "perpx":"-0.168311", "perpy":"-0.985734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 19.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801595,33.607237]
+      },
+      "properties": {"street":"CATALINA 2", "color":"lime", "perpx":"-0.309175", "perpy":"-0.951005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806455,33.608817]
+      },
+      "properties": {"street":"CATALINA 3", "color":"lime", "perpx":"-0.309175", "perpy":"-0.951005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813251,33.610123]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"-0.472863", "perpy":"-0.881136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816184,33.611697]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"-0.472863", "perpy":"-0.881136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8183,33.614005]
+      },
+      "properties": {"street":"SAND CANYON 3", "color":"lime", "perpx":"-0.879015", "perpy":"-0.476793"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.819745,33.616669]
+      },
+      "properties": {"street":"SAND CANYON 4", "color":"lime", "perpx":"-0.795225", "perpy":"-0.606314"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.822441,33.620205]
+      },
+      "properties": {"street":"SAND CANYON 5", "color":"lime", "perpx":"-0.795225", "perpy":"-0.606314"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828338,33.623005]
+      },
+      "properties": {"street":"NEWPORT COAST 1", "color":"lime", "perpx":"-0.61327", "perpy":"-0.789873"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832171,33.625981]
+      },
+      "properties": {"street":"NEWPORT COAST 2", "color":"lime", "perpx":"-0.61327", "perpy":"-0.789873"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837662,33.629475]
+      },
+      "properties": {"street":"S OF BONITA", "color":"lime", "perpx":"-0.283058", "perpy":"-0.959103"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842609,33.630935]
+      },
+      "properties": {"street":"BONITA 1", "color":"lime", "perpx":"-0.294979", "perpy":"-0.955504"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847497,33.632444]
+      },
+      "properties": {"street":"BONITA 2", "color":"lime", "perpx":"-0.294979", "perpy":"-0.955504"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.853396,33.635399]
+      },
+      "properties": {"street":"N OF BONITA", "color":"lime", "perpx":"-0.600727", "perpy":"-0.799454"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.857266,33.638307]
+      },
+      "properties": {"street":"BISON 1", "color":"lime", "perpx":"-0.780647", "perpy":"-0.624972"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859193,33.640714]
+      },
+      "properties": {"street":"MACARTHUR 1", "color":"lime", "perpx":"-0.924825", "perpy":"-0.380393"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86032,33.643454]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"-0.974437", "perpy":"-0.22466"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860978,33.646308]
+      },
+      "properties": {"street":"MACARTHUR 2", "color":"lime", "perpx":"-0.977116", "perpy":"-0.212707"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861933,33.650695]
+      },
+      "properties": {"street":"UNIVERSITY SOUT", "color":"lime", "perpx":"-0.977116", "perpy":"-0.212707"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864335,33.65462]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"lime", "perpx":"-0.633861", "perpy":"-0.773447"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865011,33.655174]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"-0.633861", "perpy":"-0.773447"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 25.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871215,33.659515]
+      },
+      "properties": {"street":"ORCHID", "color":"lime", "perpx":"-0.566542", "perpy":"-0.824033"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 25.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876633,33.66324]
+      },
+      "properties": {"street":"CAMPUS", "color":"lime", "perpx":"-0.566542", "perpy":"-0.824033"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88342,33.669908]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"-0.750726", "perpy":"-0.660614"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887796,33.674875]
+      },
+      "properties": {"street":"S73 TO S55", "color":"lime", "perpx":"-0.742508", "perpy":"-0.669837"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887584,33.67464]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"-0.742508", "perpy":"-0.669837"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892743,33.68058]
+      },
+      "properties": {"street":"BEAR 1", "color":"lime", "perpx":"-0.749261", "perpy":"-0.662275"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894753,33.682854]
+      },
+      "properties": {"street":"BEAR 2", "color":"lime", "perpx":"-0.749261", "perpy":"-0.662275"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.898045,33.686456]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 0.241",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654478,33.503721]
+      },
+      "properties": {"street":"Rancho Viejo", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647923,33.508745]
+      },
+      "properties": {"street":"74 EB SUNDANCE DRIVE", "color":"lime", "perpx":"0.490721", "perpy":"-0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 10.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.544319,33.567766]
+      },
+      "properties": {"street":"LOCATION 25", "color":"lime", "perpx":"0.920786", "perpy":"-0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.644505,33.51067]
+      },
+      "properties": {"street":"CALLE ENTRADERO", "color":"lime", "perpx":"0.490721", "perpy":"-0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.277",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640482,33.512477]
+      },
+      "properties": {"street":"Via Cordova", "color":"lime", "perpx":"0.250148", "perpy":"-0.968208"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.639615,33.512701]
+      },
+      "properties": {"street":"LOCATION 14", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.503",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.63683,33.513581]
+      },
+      "properties": {"street":"74 WB STRAWBERRY LN", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 3.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.60673,33.522498]
+      },
+      "properties": {"street":"LOCATION 15", "color":"lime", "perpx":"-0.434313", "perpy":"-0.900762"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 3.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598125,33.518349]
+      },
+      "properties": {"street":"LOCATION 16", "color":"lime", "perpx":"-0.277019", "perpy":"-0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.585038,33.514576]
+      },
+      "properties": {"street":"LOCATION 17", "color":"lime", "perpx":"-0.277019", "perpy":"-0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 5.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.565581,33.515135]
+      },
+      "properties": {"street":"LOCATION 18", "color":"lime", "perpx":"0.66599", "perpy":"-0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.560917,33.519299]
+      },
+      "properties": {"street":"LOCATION 19", "color":"lime", "perpx":"0.66599", "perpy":"-0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 6.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.55384,33.525739]
+      },
+      "properties": {"street":"LOCATION 20", "color":"lime", "perpx":"0.918082", "perpy":"-0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 7.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.551809,33.530443]
+      },
+      "properties": {"street":"LOCATION 21", "color":"lime", "perpx":"0.918082", "perpy":"-0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548668,33.540039]
+      },
+      "properties": {"street":"LOCATION 22", "color":"lime", "perpx":"0.996899", "perpy":"0.078698"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.54873,33.539611]
+      },
+      "properties": {"street":"NICHOLS INSTITUTE", "color":"lime", "perpx":"0.98967", "perpy":"-0.143363"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.549113,33.545676]
+      },
+      "properties": {"street":"LOCATION 23", "color":"lime", "perpx":"0.996899", "perpy":"0.078698"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.546105,33.56355]
+      },
+      "properties": {"street":"LOCATION 24", "color":"lime", "perpx":"0.920786", "perpy":"-0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 0.241",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654477,33.503721]
+      },
+      "properties": {"street":"Rancho Viejo", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647923,33.508745]
+      },
+      "properties": {"street":"74 EB SUNDANCE DRIVE", "color":"lime", "perpx":"-0.490721", "perpy":"0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 10.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.544319,33.567766]
+      },
+      "properties": {"street":"LOCATION 25", "color":"lime", "perpx":"-0.920786", "perpy":"0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 1.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.644505,33.51067]
+      },
+      "properties": {"street":"CALLE ENTRADERO", "color":"lime", "perpx":"-0.409922", "perpy":"0.912121"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 1.277",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640482,33.512478]
+      },
+      "properties": {"street":"Via Cordova", "color":"lime", "perpx":"-0.409922", "perpy":"0.912121"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 3.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606729,33.522498]
+      },
+      "properties": {"street":"LOCATION 15", "color":"lime", "perpx":"0.434354", "perpy":"0.900742"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 3.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598125,33.518349]
+      },
+      "properties": {"street":"LOCATION 16", "color":"lime", "perpx":"0.277019", "perpy":"0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.585038,33.514576]
+      },
+      "properties": {"street":"LOCATION 17", "color":"lime", "perpx":"0.277019", "perpy":"0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 5.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.565581,33.515135]
+      },
+      "properties": {"street":"74 EB GIBBY ROAD", "color":"lime", "perpx":"-0.66599", "perpy":"0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.560917,33.519299]
+      },
+      "properties": {"street":"LOCATION 19", "color":"lime", "perpx":"-0.66599", "perpy":"0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 6.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.55384,33.525739]
+      },
+      "properties": {"street":"LOCATION 20", "color":"lime", "perpx":"-0.918082", "perpy":"0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 7.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.551809,33.530443]
+      },
+      "properties": {"street":"LOCATION 21", "color":"lime", "perpx":"-0.918082", "perpy":"0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548667,33.540039]
+      },
+      "properties": {"street":"LOCATION 22", "color":"lime", "perpx":"-0.996885", "perpy":"-0.078874"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548729,33.539611]
+      },
+      "properties": {"street":"NICHOLS INSTITUTE", "color":"lime", "perpx":"-0.98967", "perpy":"0.143363"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.549113,33.545676]
+      },
+      "properties": {"street":"LOCATION 23", "color":"lime", "perpx":"-0.996885", "perpy":"-0.078874"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.546105,33.56355]
+      },
+      "properties": {"street":"LOCATION 24", "color":"lime", "perpx":"-0.920786", "perpy":"0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034919,33.85912]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.383803", "perpy":"-0.923415"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.032578,33.858147]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.967371,33.854376]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.057735", "perpy":"-0.998332"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814377,33.850669]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"lime", "perpx":"0.643266", "perpy":"-0.765643"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814133,33.850874]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"lime", "perpx":"0.613864", "perpy":"-0.789412"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.811988,33.852542]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.80262,33.85429]
+      },
+      "properties": {"street":"W OF IMPERIAL", "color":"lime", "perpx":"0.183427", "perpy":"-0.983033"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.961156,33.853799]
+      },
+      "properties": {"street":"BROOKHURST", "color":"lime", "perpx":"-0.035152", "perpy":"-0.999382"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791386,33.854176]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.098358", "perpy":"-0.995151"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791214,33.854193]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.257772", "perpy":"-0.966206"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.787923,33.855071]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"0.431464", "perpy":"-0.90213"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 12.175",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780743,33.858505]
+      },
+      "properties": {"street":"E OF IMPERIAL", "color":"lime", "perpx":"0.43844", "perpy":"-0.898761"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 12.762",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.771912,33.862813]
+      },
+      "properties": {"street":"MIDPOINT", "color":"lime", "perpx":"0.436887", "perpy":"-0.899516"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020532,33.855843]
+      },
+      "properties": {"street":"HOLDER", "color":"lime", "perpx":"-0.030437", "perpy":"-0.999537"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 13.349",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763071,33.867107]
+      },
+      "properties": {"street":"W OF SCALES", "color":"lime", "perpx":"0.436887", "perpy":"-0.899516"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.026091,33.856083]
+      },
+      "properties": {"street":"VALLEY VIEW", "color":"lime", "perpx":"-0.035152", "perpy":"-0.999382"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.95679,33.853902]
+      },
+      "properties": {"street":"BROOKHURST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744781,33.870278]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"lime", "perpx":"0.155667", "perpy":"-0.98781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745295,33.870197]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"lime", "perpx":"0.155667", "perpy":"-0.98781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741504,33.870757]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74185,33.870709]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 15.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73308,33.869894]
+      },
+      "properties": {"street":"East OF WEIR", "color":"lime", "perpx":"-0.101912", "perpy":"-0.994793"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 15.793",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722179,33.866822]
+      },
+      "properties": {"street":"West OF GYPSUM", "color":"lime", "perpx":"-0.008286", "perpy":"-0.999966"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 16.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71168,33.866735]
+      },
+      "properties": {"street":"GYPSUM 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.708584,33.868014]
+      },
+      "properties": {"street":"GYPSUM 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 17.044",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701858,33.871104]
+      },
+      "properties": {"street":"E OF GYPSUM", "color":"lime", "perpx":"0.417464", "perpy":"-0.908693"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6845,33.870739]
+      },
+      "properties": {"street":"COAL", "color":"lime", "perpx":"-0.376251", "perpy":"-0.926518"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.011986,33.855903]
+      },
+      "properties": {"street":"KNOTT 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68647,33.871539]
+      },
+      "properties": {"street":"W of COAL", "color":"lime", "perpx":"-0.376251", "perpy":"-0.926518"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18.435",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68015,33.869165]
+      },
+      "properties": {"street":"E OF COAL", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.008847,33.855926]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"-0.02939", "perpy":"-0.999568"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943921,33.854017]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"-0.02939", "perpy":"-0.999568"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938876,33.854029]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.032946", "perpy":"0.999457"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.998577,33.855997]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.008629", "perpy":"-0.999963"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995448,33.856024]
+      },
+      "properties": {"street":"BEACH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.926206,33.853691]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"0.044312", "perpy":"0.999018"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991253,33.856035]
+      },
+      "properties": {"street":"E OF STANTON", "color":"lime", "perpx":"-0.036012", "perpy":"-0.999351"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984237,33.856265]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.044312", "perpy":"0.999018"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.912688,33.853681]
+      },
+      "properties": {"street":"LEMON", "color":"lime", "perpx":"0.01578", "perpy":"-0.999875"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907999,33.853755]
+      },
+      "properties": {"street":"EAST", "color":"lime", "perpx":"0.004058", "perpy":"-0.999992"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905042,33.853767]
+      },
+      "properties": {"street":"EAST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897738,33.853874]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"0.011516", "perpy":"-0.999934"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897217,33.85388]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"0.011516", "perpy":"-0.999934"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891311,33.854108]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"-0.031896", "perpy":"-0.999491"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887676,33.853992]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.885166,33.853485]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"-0.197993", "perpy":"-0.980203"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876605,33.850044]
+      },
+      "properties": {"street":"W OF 57", "color":"lime", "perpx":"-0.41458", "perpy":"-0.910013"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872812,33.848316]
+      },
+      "properties": {"street":"E OF 57", "color":"lime", "perpx":"-0.41458", "perpy":"-0.910013"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864299,33.846226]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.171763", "perpy":"-0.985138"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856212,33.847636]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"0.242383", "perpy":"-0.970181"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85323,33.848381]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"0.242318", "perpy":"-0.970197"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846936,33.849953]
+      },
+      "properties": {"street":"GROVE", "color":"lime", "perpx":"0.143226", "perpy":"-0.98969"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 8.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838568,33.851164]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0.143226", "perpy":"-0.98969"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.035622,33.85962]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.972391,33.856235]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.045438", "perpy":"-0.998967"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034214,33.859047]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.967351,33.854549]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.028816", "perpy":"-0.999585"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814374,33.851107]
+      },
+      "properties": {"street":"LAKEVIEW 2", "color":"lime", "perpx":"-0.654394", "perpy":"0.756154"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813891,33.851525]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"lime", "perpx":"-0.654394", "perpy":"0.756154"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.802756,33.854556]
+      },
+      "properties": {"street":"W OF IMPERIAL", "color":"lime", "perpx":"0.020315", "perpy":"0.999794"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.961157,33.853951]
+      },
+      "properties": {"street":"BROOKHURST", "color":"lime", "perpx":"-0.034899", "perpy":"-0.999391"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794734,33.854393]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793339,33.854368]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791255,33.854451]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"-0.168785", "perpy":"0.985653"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789725,33.854713]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.310943", "perpy":"0.950429"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789563,33.854766]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.416479", "perpy":"0.909145"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 12.175",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780816,33.858773]
+      },
+      "properties": {"street":"E OF IMPERIAL", "color":"lime", "perpx":"-0.438994", "perpy":"0.89849"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 12.762",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.772007,33.863077]
+      },
+      "properties": {"street":"MIDPOINT", "color":"lime", "perpx":"-0.437889", "perpy":"0.899029"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020493,33.856023]
+      },
+      "properties": {"street":"HOLDER", "color":"lime", "perpx":"-0.034899", "perpy":"-0.999391"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 13.349",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763191,33.867371]
+      },
+      "properties": {"street":"W OF SCALES", "color":"lime", "perpx":"-0.437889", "perpy":"0.899029"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.026045,33.856241]
+      },
+      "properties": {"street":"VALLEY VIEW", "color":"lime", "perpx":"0.03527", "perpy":"0.999378"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74891,33.869973]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747893,33.870169]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744997,33.870661]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"lime", "perpx":"-0.177649", "perpy":"0.984094"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743806,33.870876]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"lime", "perpx":"0.048587", "perpy":"0.998819"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 15.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733445,33.870372]
+      },
+      "properties": {"street":"East OF WEIR", "color":"lime", "perpx":"0.048587", "perpy":"0.998819"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 15.793",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722277,33.867126]
+      },
+      "properties": {"street":"West OF GYPSUM", "color":"lime", "perpx":"0.08815", "perpy":"0.996107"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.715237,33.866503]
+      },
+      "properties": {"street":"GYPSUM 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.014055,33.856065]
+      },
+      "properties": {"street":"KNOTT 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 17.044",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701993,33.871439]
+      },
+      "properties": {"street":"E OF GYPSUM", "color":"lime", "perpx":"-0.129654", "perpy":"0.991559"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 17.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689053,33.873131]
+      },
+      "properties": {"street":"COAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.685149,33.871434]
+      },
+      "properties": {"street":"COAL", "color":"lime", "perpx":"0.402928", "perpy":"0.915232"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.686605,33.872075]
+      },
+      "properties": {"street":"W of COAL", "color":"lime", "perpx":"0.402928", "perpy":"0.915232"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18.435",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.680194,33.869436]
+      },
+      "properties": {"street":"E OF COAL", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.008835,33.856125]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"0.029813", "perpy":"0.999556"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943925,33.854189]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.029813", "perpy":"0.999556"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.001703,33.856174]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.000863", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.998227,33.856177]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.000863", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.926204,33.853907]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.05087", "perpy":"-0.998705"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991257,33.85622]
+      },
+      "properties": {"street":"E OF STANTON", "color":"lime", "perpx":"0.035533", "perpy":"0.999368"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984356,33.856869]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.05087", "perpy":"-0.998705"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976502,33.857654]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.912686,33.853895]
+      },
+      "properties": {"street":"LEMON", "color":"lime", "perpx":"-0.00639", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907991,33.853925]
+      },
+      "properties": {"street":"EAST", "color":"lime", "perpx":"-0.00639", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897729,33.854035]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"-0.017239", "perpy":"0.999851"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897207,33.854044]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"-0.04484", "perpy":"0.998994"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 5.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891303,33.854309]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"0.073866", "perpy":"0.997268"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.885106,33.85385]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"0.073866", "perpy":"0.997268"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87661,33.850258]
+      },
+      "properties": {"street":"W OF 57", "color":"lime", "perpx":"0.417273", "perpy":"0.908781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875092,33.849561]
+      },
+      "properties": {"street":"W OF 57", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872819,33.848505]
+      },
+      "properties": {"street":"E OF 57", "color":"lime", "perpx":"0.397217", "perpy":"0.917725"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870973,33.847706]
+      },
+      "properties": {"street":"LA PALMA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864265,33.84645]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.184041", "perpy":"0.982919"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855999,33.847931]
+      },
+      "properties": {"street":"KRAEMER 1", "color":"lime", "perpx":"-0.238718", "perpy":"0.971089"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.854502,33.848299]
+      },
+      "properties": {"street":"KRAEMER 2", "color":"lime", "perpx":"-0.241819", "perpy":"0.970321"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846854,33.850205]
+      },
+      "properties": {"street":"GROVE", "color":"lime", "perpx":"-0.13485", "perpy":"0.990866"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 8.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838448,33.851349]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"-0.13485", "perpy":"0.990866"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816715,33.849084]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 9.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816135,33.849591]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.752421,33.676181]
+      },
+      "properties": {"street":"MARINE WAY", "color":"lime", "perpx":"0.971108", "perpy":"-0.23864"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748819,33.680812]
+      },
+      "properties": {"street":"N OF MARINE", "color":"lime", "perpx":"0.780739", "perpy":"-0.624857"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.746935,33.683166]
+      },
+      "properties": {"street":"S OF PM 11", "color":"lime", "perpx":"0.780739", "perpy":"-0.624857"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743737,33.687048]
+      },
+      "properties": {"street":"AT PM 11", "color":"lime", "perpx":"0.766025", "perpy":"-0.642811"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741045,33.690256]
+      },
+      "properties": {"street":"N OF PM 11", "color":"lime", "perpx":"0.764276", "perpy":"-0.64489"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.738544,33.69322]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.737541,33.694404]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"0.763019", "perpy":"-0.646375"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733959,33.698464]
+      },
+      "properties": {"street":"IRVINE BLVD 3", "color":"lime", "perpx":"0.72056", "perpy":"-0.693393"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734495,33.697907]
+      },
+      "properties": {"street":"IRVINE BLVD 3 (loop)", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72971,33.70238]
+      },
+      "properties": {"street":"S OF PORTOLA", "color":"lime", "perpx":"0.731326", "perpy":"-0.682028"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.726196,33.706148]
+      },
+      "properties": {"street":"133NB to 241NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 13.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724497,33.709447]
+      },
+      "properties": {"street":"ORANGE 1", "color":"lime", "perpx":"0.889028", "perpy":"-0.457853"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 13.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721749,33.71555]
+      },
+      "properties": {"street":"ORANGE 2", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760506,33.596159]
+      },
+      "properties": {"street":"LOCATION 26", "color":"lime", "perpx":"0.962924", "perpy":"0.269774"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761133,33.598397]
+      },
+      "properties": {"street":"AT 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760884,33.602492]
+      },
+      "properties": {"street":"LOCATION 27", "color":"lime", "perpx":"0.974473", "perpy":"-0.224504"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 5.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759225,33.609693]
+      },
+      "properties": {"street":"LOCATION 28", "color":"lime", "perpx":"0.974473", "perpy":"-0.224504"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 5.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756717,33.616805]
+      },
+      "properties": {"street":"LOCATION 29", "color":"lime", "perpx":"0.975925", "perpy":"-0.218108"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75607,33.6197]
+      },
+      "properties": {"street":"AT LAKE FOREST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757397,33.625088]
+      },
+      "properties": {"street":"LOCATION 30", "color":"lime", "perpx":"0.80608", "perpy":"0.591806"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761167,33.630223]
+      },
+      "properties": {"street":"LOCATION 31", "color":"lime", "perpx":"0.80608", "perpy":"0.591806"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760626,33.637439]
+      },
+      "properties": {"street":"LOCATION 32", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761812,33.64216]
+      },
+      "properties": {"street":"LOCATION 34", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761973,33.642699]
+      },
+      "properties": {"street":"LOCATION 33", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 8.732",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757636,33.657392]
+      },
+      "properties": {"street":"BARRANCA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 8.866",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756294,33.659542]
+      },
+      "properties": {"street":"BARRANCA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753976,33.663305]
+      },
+      "properties": {"street":"BARRANCA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.754967,33.661697]
+      },
+      "properties": {"street":"BARRANCA1", "color":"lime", "perpx":"0.851313", "perpy":"-0.524659"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753044,33.667495]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.976143", "perpy":"-0.217128"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753243,33.672836]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0.971108", "perpy":"-0.23864"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.752844,33.676396]
+      },
+      "properties": {"street":"MARINE WAY", "color":"lime", "perpx":"-0.974264", "perpy":"0.225409"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74924,33.68106]
+      },
+      "properties": {"street":"N OF MARINE", "color":"lime", "perpx":"-0.764221", "perpy":"0.644955"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747277,33.683386]
+      },
+      "properties": {"street":"S OF PM 11", "color":"lime", "perpx":"-0.764221", "perpy":"0.644955"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744014,33.687243]
+      },
+      "properties": {"street":"AT PM 11", "color":"lime", "perpx":"-0.767026", "perpy":"0.641617"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741328,33.690454]
+      },
+      "properties": {"street":"N OF PM 11", "color":"lime", "perpx":"-0.764252", "perpy":"0.644918"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.737826,33.694604]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"-0.756644", "perpy":"0.653828"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 12.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734303,33.698681]
+      },
+      "properties": {"street":"IRVINE BLVD 3", "color":"lime", "perpx":"-0.679098", "perpy":"0.734047"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 12.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730095,33.702574]
+      },
+      "properties": {"street":"S OF PORTOLA", "color":"lime", "perpx":"-0.679098", "perpy":"0.734047"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 13.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72449,33.710914]
+      },
+      "properties": {"street":"ORANGE 1", "color":"lime", "perpx":"-0.898001", "perpy":"0.439993"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 13.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722121,33.715749]
+      },
+      "properties": {"street":"ORANGE 2", "color":"lime", "perpx":"-0.898001", "perpy":"0.439993"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759529,33.591062]
+      },
+      "properties": {"street":"N of 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760662,33.596721]
+      },
+      "properties": {"street":"LOCATION 40", "color":"lime", "perpx":"-0.980541", "perpy":"-0.196316"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7608,33.602769]
+      },
+      "properties": {"street":"LOCATION 39", "color":"lime", "perpx":"-0.948647", "perpy":"0.316336"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760843,33.60263]
+      },
+      "properties": {"street":"AT LAKE FOREST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759202,33.609099]
+      },
+      "properties": {"street":"LOCATION 38", "color":"lime", "perpx":"-0.951762", "perpy":"0.306837"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759925,33.605393]
+      },
+      "properties": {"street":"AT 73 (BLUETOOTH)", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756718,33.616804]
+      },
+      "properties": {"street":"LOCATION 37", "color":"lime", "perpx":"-0.951762", "perpy":"0.306837"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 6.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75749,33.625214]
+      },
+      "properties": {"street":"LOCATION 36", "color":"lime", "perpx":"-0.805163", "perpy":"-0.593053"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761094,33.630107]
+      },
+      "properties": {"street":"LOCATION 35", "color":"lime", "perpx":"-0.805163", "perpy":"-0.593053"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7553,33.66184]
+      },
+      "properties": {"street":"BARRANCA2", "color":"lime", "perpx":"-0.952044", "perpy":"0.305962"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753428,33.667665]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.952044", "perpy":"0.305962"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753623,33.673029]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.974264", "perpy":"0.225409"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 0.753",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85227,33.90979]
+      },
+      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"lime", "perpx":"0.843501", "perpy":"-0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 0.975",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850473,33.912612]
+      },
+      "properties": {"street":"Nasa ST", "color":"lime", "perpx":"0.843501", "perpy":"-0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847872,33.918427]
+      },
+      "properties": {"street":"BRIRCH ST & VALENCIA", "color":"lime", "perpx":"0.99709", "perpy":"-0.076235"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 1.768",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847455,33.923881]
+      },
+      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"lime", "perpx":"-0.116472", "perpy":"-0.993194"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839661,33.922967]
+      },
+      "properties": {"street":"LOCATION 44", "color":"lime", "perpx":"-0.277876", "perpy":"-0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838254,33.92256]
+      },
+      "properties": {"street":"CARB CNYN @ SANTA FE", "color":"lime", "perpx":"-0.277876", "perpy":"-0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828619,33.921188]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"-0.288898", "perpy":"-0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827996,33.921]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"-0.288898", "perpy":"-0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816185,33.922015]
+      },
+      "properties": {"street":"LOCATION 46", "color":"lime", "perpx":"0.307112", "perpy":"-0.951673"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812985,33.92304]
+      },
+      "properties": {"street":"LOCATION 47", "color":"lime", "perpx":"0.295298", "perpy":"-0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813142,33.922997]
+      },
+      "properties": {"street":"CARBO CNYN& REBEY RD", "color":"lime", "perpx":"0.264157", "perpy":"-0.96448"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806951,33.924905]
+      },
+      "properties": {"street":"LOCATION 48", "color":"lime", "perpx":"0.295298", "perpy":"-0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797865,33.929088]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"0.753367", "perpy":"-0.6576"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797762,33.929206]
+      },
+      "properties": {"street":"LOCATION 49", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797555,33.929441]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"0.750397", "perpy":"-0.660988"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 5.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791973,33.937043]
+      },
+      "properties": {"street":"LOCATION 51", "color":"lime", "perpx":"0.981109", "perpy":"-0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791945,33.937185]
+      },
+      "properties": {"street":"LOCATION 50", "color":"lime", "perpx":"0.981109", "perpy":"-0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.78641,33.942293]
+      },
+      "properties": {"street":"LOCATION 52", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 0.753",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85227,33.90979]
+      },
+      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"lime", "perpx":"-0.843501", "perpy":"0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 0.975",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850473,33.912612]
+      },
+      "properties": {"street":"Nasa ST", "color":"lime", "perpx":"-0.843501", "perpy":"0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847872,33.918427]
+      },
+      "properties": {"street":"BRIRCH ST & VALENCIA", "color":"lime", "perpx":"-0.998431", "perpy":"0.055999"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847567,33.923865]
+      },
+      "properties": {"street":"LOCATION 43", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.768",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847455,33.923881]
+      },
+      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"lime", "perpx":"-0.141421", "perpy":"0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839661,33.922967]
+      },
+      "properties": {"street":"LOCATION 44", "color":"lime", "perpx":"0.277876", "perpy":"0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838254,33.92256]
+      },
+      "properties": {"street":"CARB CNYN @ SANTA FE", "color":"lime", "perpx":"0.277876", "perpy":"0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831553,33.922131]
+      },
+      "properties": {"street":"LOCATION 45", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828619,33.921188]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"0.288898", "perpy":"0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827996,33.921]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"0.288898", "perpy":"0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816184,33.922015]
+      },
+      "properties": {"street":"LOCATION 46", "color":"lime", "perpx":"-0.307112", "perpy":"0.951673"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812984,33.92304]
+      },
+      "properties": {"street":"LOCATION 47", "color":"lime", "perpx":"-0.295298", "perpy":"0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813141,33.922997]
+      },
+      "properties": {"street":"CARBO CNYN& REBEY RD", "color":"lime", "perpx":"-0.264157", "perpy":"0.96448"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.80695,33.924905]
+      },
+      "properties": {"street":"LOCATION 48", "color":"lime", "perpx":"-0.295298", "perpy":"0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797865,33.929089]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"-0.750334", "perpy":"0.661059"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797554,33.929442]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"-0.750334", "perpy":"0.661059"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 5.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791973,33.937043]
+      },
+      "properties": {"street":"LOCATION 51", "color":"lime", "perpx":"-0.981109", "perpy":"0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791945,33.937185]
+      },
+      "properties": {"street":"LOCATION 50", "color":"lime", "perpx":"-0.981109", "perpy":"0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 17.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599074,33.63353]
+      },
+      "properties": {"street":"ANTONIO 2", "color":"lime", "perpx":"0.94076", "perpy":"0.339073"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 17.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599584,33.634945]
+      },
+      "properties": {"street":"SOLAR ANTONIO 2", "color":"lime", "perpx":"0.894427", "perpy":"0.447214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.600814,33.637405]
+      },
+      "properties": {"street":"BANDERAS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605062,33.645877]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"lime", "perpx":"0.90141", "perpy":"0.432966"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605721,33.647249]
+      },
+      "properties": {"street":"TRABUCO CREEK", "color":"lime", "perpx":"0.90141", "perpy":"0.432966"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.612216,33.651938]
+      },
+      "properties": {"street":"MELINDA", "color":"lime", "perpx":"0.193918", "perpy":"0.981018"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.620027,33.653482]
+      },
+      "properties": {"street":"LOS ALISOS 1", "color":"lime", "perpx":"0.32691", "perpy":"0.945056"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.621643,33.654041]
+      },
+      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"lime", "perpx":"0.323887", "perpy":"0.946096"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 20.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.62601,33.655536]
+      },
+      "properties": {"street":"LOS ALISOS 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 20.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.632286,33.658363]
+      },
+      "properties": {"street":"UPPER OSO", "color":"lime", "perpx":"0.410703", "perpy":"0.911769"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 21.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647778,33.666889]
+      },
+      "properties": {"street":"PORTOLA S 1", "color":"lime", "perpx":"0.3701", "perpy":"0.928992"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 21.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.652743,33.668867]
+      },
+      "properties": {"street":"PORTOLA S 2", "color":"lime", "perpx":"0.3701", "perpy":"0.928992"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663113,33.672946]
+      },
+      "properties": {"street":"LAKE FOREST", "color":"lime", "perpx":"0.37314", "perpy":"0.927775"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664667,33.673571]
+      },
+      "properties": {"street":"SOLAR LAKE FOREST", "color":"lime", "perpx":"0.383214", "perpy":"0.92366"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666212,33.674212]
+      },
+      "properties": {"street":"BAKE", "color":"lime", "perpx":"0.42005", "perpy":"0.907501"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.66772,33.67491]
+      },
+      "properties": {"street":"SOLAR BAKE", "color":"lime", "perpx":"0.42005", "perpy":"0.907501"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671424,33.677671]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"0.787657", "perpy":"0.616114"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672365,33.678874]
+      },
+      "properties": {"street":"SOLAR ALTON 1", "color":"lime", "perpx":"0.787657", "perpy":"0.616114"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67436,33.681906]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"0.8", "perpy":"0.6"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675368,33.68325]
+      },
+      "properties": {"street":"SOLAR ALTON 2", "color":"lime", "perpx":"0.8", "perpy":"0.6"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.681661,33.688336]
+      },
+      "properties": {"street":"N OF ALTON", "color":"lime", "perpx":"0.567343", "perpy":"0.823482"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.682992,33.689253]
+      },
+      "properties": {"street":"SOLAR N OF ALTON", "color":"lime", "perpx":"0.567343", "perpy":"0.823482"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690124,33.694263]
+      },
+      "properties": {"street":"SOUTH OF PORTOLA", "color":"lime", "perpx":"0.483192", "perpy":"0.875514"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695163,33.697044]
+      },
+      "properties": {"street":"PORTOLA N2", "color":"lime", "perpx":"0.436189", "perpy":"0.899855"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699355,33.699076]
+      },
+      "properties": {"street":"TOMATO 1", "color":"lime", "perpx":"0.434917", "perpy":"0.900471"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.700854,33.6998]
+      },
+      "properties": {"street":"SOLAR TOMATO 1", "color":"lime", "perpx":"0.434917", "perpy":"0.900471"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.707184,33.702783]
+      },
+      "properties": {"street":"TOMATO 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.708703,33.703475]
+      },
+      "properties": {"street":"SOLAR TOMATO 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713171,33.70568]
+      },
+      "properties": {"street":"TOMATO 4", "color":"lime", "perpx":"0.38021", "perpy":"0.9249"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713947,33.705999]
+      },
+      "properties": {"street":"SOLAR TOMATO 4", "color":"lime", "perpx":"0.487943", "perpy":"0.872876"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716523,33.707439]
+      },
+      "properties": {"street":"133-1", "color":"lime", "perpx":"0.690231", "perpy":"0.723589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718562,33.709384]
+      },
+      "properties": {"street":"133-2", "color":"lime", "perpx":"0.690231", "perpy":"0.723589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720349,33.714309]
+      },
+      "properties": {"street":"133-3", "color":"lime", "perpx":"0.999048", "perpy":"-0.043617"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720286,33.715752]
+      },
+      "properties": {"street":"SOLAR 133-3", "color":"lime", "perpx":"0.999048", "perpy":"-0.043617"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719917,33.718783]
+      },
+      "properties": {"street":"BEE CANYON", "color":"lime", "perpx":"0.991505", "perpy":"-0.130067"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719726,33.720239]
+      },
+      "properties": {"street":"SOLAR BEE CANYON", "color":"lime", "perpx":"0.991505", "perpy":"-0.130067"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719302,33.723299]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.991174", "perpy":"-0.132564"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719107,33.724757]
+      },
+      "properties": {"street":"SOLAR N OF 133", "color":"lime", "perpx":"0.991174", "perpy":"-0.132564"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71867,33.728406]
+      },
+      "properties": {"street":"S OF JEFFREY", "color":"lime", "perpx":"0.991789", "perpy":"-0.127885"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718482,33.729864]
+      },
+      "properties": {"street":"SOLAR S OF JEFFREY", "color":"lime", "perpx":"0.991828", "perpy":"-0.127583"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718013,33.73351]
+      },
+      "properties": {"street":"N OF JEFFREY", "color":"lime", "perpx":"0.991828", "perpy":"-0.127583"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71751,33.737751]
+      },
+      "properties": {"street":"N OF HAUL ROAD", "color":"lime", "perpx":"0.99277", "perpy":"0.120036"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717935,33.741266]
+      },
+      "properties": {"street":"HAUL-CULVER", "color":"lime", "perpx":"0.99277", "perpy":"0.120036"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 29.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720909,33.746087]
+      },
+      "properties": {"street":"S OF CULVER S", "color":"lime", "perpx":"0.544008", "perpy":"0.83908"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 29.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725783,33.749247]
+      },
+      "properties": {"street":"N OF CULVER S", "color":"lime", "perpx":"0.51441", "perpy":"0.857544"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731261,33.753089]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"lime", "perpx":"0.749117", "perpy":"0.662437"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732601,33.756276]
+      },
+      "properties": {"street":"CULVER-CULVER 2", "color":"lime", "perpx":"0.999169", "perpy":"0.040755"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730214,33.751905]
+      },
+      "properties": {"street":"CULVER-CULVER 1", "color":"lime", "perpx":"0.749117", "perpy":"0.662437"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732661,33.757747]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"lime", "perpx":"0.999169", "perpy":"0.040755"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732107,33.76201]
+      },
+      "properties": {"street":"S OF CULVER N", "color":"lime", "perpx":"0.994307", "perpy":"0.106557"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732264,33.763475]
+      },
+      "properties": {"street":"SOLAR S OF CULVER N", "color":"lime", "perpx":"0.994307", "perpy":"0.106557"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733568,33.766355]
+      },
+      "properties": {"street":"N OF CULVER N", "color":"lime", "perpx":"0.738172", "perpy":"0.674612"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73464,33.767528]
+      },
+      "properties": {"street":"SOLAR N OF CULVER N", "color":"lime", "perpx":"0.738172", "perpy":"0.674612"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.738882,33.770424]
+      },
+      "properties": {"street":"S OF EOC OC", "color":"lime", "perpx":"0.546231", "perpy":"0.837634"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740279,33.771335]
+      },
+      "properties": {"street":"SOLAR S OF EOC OC", "color":"lime", "perpx":"0.572437", "perpy":"0.819949"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744897,33.774559]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.572437", "perpy":"0.819949"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747616,33.780001]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"lime", "perpx":"0.997824", "perpy":"-0.065933"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747519,33.781469]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lime", "perpx":"0.997824", "perpy":"-0.065933"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745126,33.785685]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"lime", "perpx":"0.6879", "perpy":"-0.725806"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743958,33.786792]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 3", "color":"lime", "perpx":"0.563196", "perpy":"-0.826323"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741766,33.788286]
+      },
+      "properties": {"street":"CHAPMAN 4", "color":"lime", "perpx":"0.563196", "perpy":"-0.826323"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.736347,33.791626]
+      },
+      "properties": {"street":"N OF CHAPMAN", "color":"lime", "perpx":"0.530321", "perpy":"-0.847797"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734929,33.792513]
+      },
+      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"lime", "perpx":"0.530321", "perpy":"-0.847797"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731726,33.794622]
+      },
+      "properties": {"street":"S OF SANT CREEK", "color":"lime", "perpx":"0.51738", "perpy":"-0.855756"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730244,33.795518]
+      },
+      "properties": {"street":"SOLAR S OF SANT CK", "color":"lime", "perpx":"0.632614", "perpy":"-0.774467"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72693,33.798225]
+      },
+      "properties": {"street":"N OF SANT CR1", "color":"lime", "perpx":"0.632614", "perpy":"-0.774467"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724852,33.803371]
+      },
+      "properties": {"street":"N OF SANT CR2", "color":"lime", "perpx":"0.937209", "perpy":"-0.348768"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722969,33.808431]
+      },
+      "properties": {"street":"S OF OAK", "color":"lime", "perpx":"0.843058", "perpy":"-0.537823"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722088,33.809812]
+      },
+      "properties": {"street":"SOLAR S OF OAK", "color":"lime", "perpx":"0.825697", "perpy":"-0.564113"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719677,33.813341]
+      },
+      "properties": {"street":"N OF OAK", "color":"lime", "perpx":"0.916423", "perpy":"-0.400211"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717431,33.818484]
+      },
+      "properties": {"street":"S OF SCE OC", "color":"lime", "perpx":"0.916423", "perpy":"-0.400211"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.715964,33.824439]
+      },
+      "properties": {"street":"WINDY RIDGE 1", "color":"lime", "perpx":"0.994559", "perpy":"0.104175"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716485,33.829413]
+      },
+      "properties": {"street":"WINDY RIDGE 2", "color":"lime", "perpx":"0.986289", "perpy":"0.165028"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717081,33.832975]
+      },
+      "properties": {"street":"WINDY RIDGE 3", "color":"lime", "perpx":"0.986289", "perpy":"0.165028"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717671,33.839984]
+      },
+      "properties": {"street":"W R WILDLIFE", "color":"lime", "perpx":"0.987599", "perpy":"-0.156997"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716931,33.844639]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 1", "color":"lime", "perpx":"0.999335", "perpy":"-0.036462"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71672,33.850422]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 2", "color":"lime", "perpx":"0.999335", "perpy":"-0.036462"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716773,33.856526]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 3", "color":"lime", "perpx":"0.997345", "perpy":"-0.072816"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 38.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716374,33.861991]
+      },
+      "properties": {"street":"241N TO 91E ADVANCE", "color":"lime", "perpx":"0.960705", "perpy":"0.277572"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 38.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716721,33.863192]
+      },
+      "properties": {"street":"N241 TO E91 RT 91OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 17.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599491,33.633478]
+      },
+      "properties": {"street":"ANTONIO 2", "color":"lime", "perpx":"-0.933905", "perpy":"-0.357521"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 17.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.600017,33.634852]
+      },
+      "properties": {"street":"SOLAR ANTONIO 2", "color":"lime", "perpx":"-0.933905", "perpy":"-0.357521"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.602781,33.640172]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605479,33.645513]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"lime", "perpx":"-0.899199", "perpy":"-0.437539"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606132,33.646855]
+      },
+      "properties": {"street":"TRABUCO CREEK", "color":"lime", "perpx":"-0.899199", "perpy":"-0.437539"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.612415,33.651498]
+      },
+      "properties": {"street":"MELINDA", "color":"lime", "perpx":"-0.198462", "perpy":"-0.980109"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.620208,33.653076]
+      },
+      "properties": {"street":"LOS ALISOS 1", "color":"lime", "perpx":"-0.333218", "perpy":"-0.94285"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.621818,33.653645]
+      },
+      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"lime", "perpx":"-0.376202", "perpy":"-0.926538"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 20.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.632465,33.657968]
+      },
+      "properties": {"street":"UPPER OSO", "color":"lime", "perpx":"-0.376202", "perpy":"-0.926538"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 21.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647927,33.666554]
+      },
+      "properties": {"street":"PORTOLA S 1", "color":"lime", "perpx":"-0.342636", "perpy":"-0.939468"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 21.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.649531,33.667139]
+      },
+      "properties": {"street":"SOLAR PORTOLA S1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654243,33.669094]
+      },
+      "properties": {"street":"PORTOLA S 2", "color":"lime", "perpx":"-0.353878", "perpy":"-0.935292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.655768,33.669671]
+      },
+      "properties": {"street":"SOLAR PORTOLA S2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663291,33.67261]
+      },
+      "properties": {"street":"LAKE FOREST", "color":"lime", "perpx":"-0.360927", "perpy":"-0.932594"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664862,33.673218]
+      },
+      "properties": {"street":"SOLAR LAKE FOREST", "color":"lime", "perpx":"-0.371493", "perpy":"-0.928436"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666424,33.673843]
+      },
+      "properties": {"street":"BAKE", "color":"lime", "perpx":"-0.418678", "perpy":"-0.908135"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.667938,33.674541]
+      },
+      "properties": {"street":"SOLAR BAKE", "color":"lime", "perpx":"-0.418678", "perpy":"-0.908135"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671674,33.677298]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"-0.779725", "perpy":"-0.626123"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672636,33.678496]
+      },
+      "properties": {"street":"SOLAR ALTON 1", "color":"lime", "perpx":"-0.779725", "perpy":"-0.626123"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674584,33.681564]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"-0.800996", "perpy":"-0.59867"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675593,33.682914]
+      },
+      "properties": {"street":"SOLAR ALTON 2", "color":"lime", "perpx":"-0.800996", "perpy":"-0.59867"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.681883,33.688049]
+      },
+      "properties": {"street":"N OF ALTON", "color":"lime", "perpx":"-0.574042", "perpy":"-0.818826"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683211,33.68898]
+      },
+      "properties": {"street":"SOLAR N OF ALTON", "color":"lime", "perpx":"-0.574042", "perpy":"-0.818826"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690369,33.694005]
+      },
+      "properties": {"street":"SOUTH OF PORTOLA", "color":"lime", "perpx":"-0.481939", "perpy":"-0.876205"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695456,33.696803]
+      },
+      "properties": {"street":"PORTOLA N2", "color":"lime", "perpx":"-0.435805", "perpy":"-0.900041"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699698,33.698857]
+      },
+      "properties": {"street":"TOMATO 1", "color":"lime", "perpx":"-0.432673", "perpy":"-0.901551"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701217,33.699586]
+      },
+      "properties": {"street":"SOLAR TOMATO 1", "color":"lime", "perpx":"-0.432673", "perpy":"-0.901551"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.704109,33.700961]
+      },
+      "properties": {"street":"TOMATO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705642,33.70167]
+      },
+      "properties": {"street":"SOLAR TOMATO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71368,33.705538]
+      },
+      "properties": {"street":"TOMATO 4", "color":"lime", "perpx":"-0.356385", "perpy":"-0.934339"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714477,33.705842]
+      },
+      "properties": {"street":"SOLAR TOMATO 4", "color":"lime", "perpx":"-0.480566", "perpy":"-0.876958"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717092,33.707275]
+      },
+      "properties": {"street":"133-1", "color":"lime", "perpx":"-0.712032", "perpy":"-0.702147"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719081,33.709292]
+      },
+      "properties": {"street":"133-2", "color":"lime", "perpx":"-0.712032", "perpy":"-0.702147"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720884,33.714276]
+      },
+      "properties": {"street":"133-3", "color":"lime", "perpx":"-0.999239", "perpy":"0.039011"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720827,33.715736]
+      },
+      "properties": {"street":"SOLAR 133-3", "color":"lime", "perpx":"-0.999239", "perpy":"0.039011"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72046,33.718798]
+      },
+      "properties": {"street":"BEE CANYON", "color":"lime", "perpx":"-0.99165", "perpy":"0.128962"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72027,33.720259]
+      },
+      "properties": {"street":"SOLAR BEE CANYON", "color":"lime", "perpx":"-0.99165", "perpy":"0.128962"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719567,33.723287]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"-0.98462", "perpy":"0.174712"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719309,33.724741]
+      },
+      "properties": {"street":"SOLAR N OF 133", "color":"lime", "perpx":"-0.98462", "perpy":"0.174712"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718803,33.728394]
+      },
+      "properties": {"street":"S OF JEFFREY", "color":"lime", "perpx":"-0.991031", "perpy":"0.13363"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718606,33.729855]
+      },
+      "properties": {"street":"SOLAR S OF JEFFREY", "color":"lime", "perpx":"-0.991631", "perpy":"0.129107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71813,33.733511]
+      },
+      "properties": {"street":"N OF JEFFREY", "color":"lime", "perpx":"-0.991631", "perpy":"0.129107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717633,33.73777]
+      },
+      "properties": {"street":"N OF HAUL ROAD", "color":"lime", "perpx":"-0.992127", "perpy":"-0.125239"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718081,33.741319]
+      },
+      "properties": {"street":"HAUL-CULVER", "color":"lime", "perpx":"-0.992127", "perpy":"-0.125239"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 29.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721164,33.746148]
+      },
+      "properties": {"street":"S OF CULVER S", "color":"lime", "perpx":"-0.534518", "perpy":"-0.845157"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 29.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.726132,33.74929]
+      },
+      "properties": {"street":"N OF CULVER S", "color":"lime", "perpx":"-0.530397", "perpy":"-0.84775"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73154,33.753272]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"lime", "perpx":"-0.773985", "perpy":"-0.633203"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732805,33.756517]
+      },
+      "properties": {"street":"CULVER-CULVER 2", "color":"lime", "perpx":"-0.999994", "perpy":"0.00336"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730537,33.752046]
+      },
+      "properties": {"street":"CULVER-CULVER 1", "color":"lime", "perpx":"-0.773985", "perpy":"-0.633203"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7328,33.758005]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"lime", "perpx":"-0.999994", "perpy":"0.00336"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732284,33.762314]
+      },
+      "properties": {"street":"S OF CULVER N", "color":"lime", "perpx":"-0.986194", "perpy":"-0.165595"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732531,33.763785]
+      },
+      "properties": {"street":"SOLAR S OF CULVER N", "color":"lime", "perpx":"-0.986194", "perpy":"-0.165595"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734012,33.766637]
+      },
+      "properties": {"street":"N OF CULVER N", "color":"lime", "perpx":"-0.712957", "perpy":"-0.701208"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.735146,33.76779]
+      },
+      "properties": {"street":"SOLAR N OF CULVER N", "color":"lime", "perpx":"-0.712957", "perpy":"-0.701208"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.739531,33.770618]
+      },
+      "properties": {"street":"S OF EOC OC", "color":"lime", "perpx":"-0.547969", "perpy":"-0.836499"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74094,33.771541]
+      },
+      "properties": {"street":"SOLAR S OF EOC OC", "color":"lime", "perpx":"-0.550286", "perpy":"-0.834976"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745706,33.774682]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.550286", "perpy":"-0.834976"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7482,33.780289]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"lime", "perpx":"-0.997214", "perpy":"0.074589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748089,33.781773]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lime", "perpx":"-0.997214", "perpy":"0.074589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745698,33.786034]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"lime", "perpx":"-0.656814", "perpy":"0.754052"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744465,33.787108]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 3", "color":"lime", "perpx":"-0.536155", "perpy":"0.84412"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74219,33.788553]
+      },
+      "properties": {"street":"CHAPMAN 4", "color":"lime", "perpx":"-0.536155", "perpy":"0.84412"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73675,33.791961]
+      },
+      "properties": {"street":"N OF CHAPMAN", "color":"lime", "perpx":"-0.511805", "perpy":"0.859102"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.735293,33.792829]
+      },
+      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"lime", "perpx":"-0.511805", "perpy":"0.859102"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732055,33.794954]
+      },
+      "properties": {"street":"S OF SANT CREEK", "color":"lime", "perpx":"-0.521007", "perpy":"0.853552"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730574,33.795858]
+      },
+      "properties": {"street":"SOLAR S OF SANT CK", "color":"lime", "perpx":"-0.634504", "perpy":"0.77292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.727285,33.798558]
+      },
+      "properties": {"street":"N OF SANT CR1", "color":"lime", "perpx":"-0.634504", "perpy":"0.77292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725304,33.803726]
+      },
+      "properties": {"street":"N OF SANT CR2", "color":"lime", "perpx":"-0.931918", "perpy":"0.36267"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72335,33.808747]
+      },
+      "properties": {"street":"S OF OAK", "color":"lime", "perpx":"-0.84356", "perpy":"0.537034"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722474,33.810123]
+      },
+      "properties": {"street":"SOLAR S OF OAK", "color":"lime", "perpx":"-0.828928", "perpy":"0.559356"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720094,33.81365]
+      },
+      "properties": {"street":"N OF OAK", "color":"lime", "perpx":"-0.915178", "perpy":"0.40305"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71784,33.818768]
+      },
+      "properties": {"street":"S OF SCE OC", "color":"lime", "perpx":"-0.915178", "perpy":"0.40305"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717155,33.824805]
+      },
+      "properties": {"street":"WINDY RIDGE 1", "color":"lime", "perpx":"-0.999904", "perpy":"-0.013843"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717224,33.829789]
+      },
+      "properties": {"street":"WINDY RIDGE 2", "color":"lime", "perpx":"-0.990694", "perpy":"-0.136107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717841,33.83428]
+      },
+      "properties": {"street":"WINDY RIDGE 3", "color":"lime", "perpx":"-0.990694", "perpy":"-0.136107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718159,33.840335]
+      },
+      "properties": {"street":"W R WILDLIFE", "color":"lime", "perpx":"-0.985859", "perpy":"0.167575"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717372,33.844965]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 1", "color":"lime", "perpx":"-0.999815", "perpy":"0.019254"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717261,33.850729]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 2", "color":"lime", "perpx":"-0.999815", "perpy":"0.019254"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717346,33.856811]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 3", "color":"lime", "perpx":"-0.999884", "perpy":"-0.015214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 38.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717429,33.862266]
+      },
+      "properties": {"street":"S OF 91", "color":"lime", "perpx":"-0.999884", "perpy":"-0.015214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 38.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722022,33.866619]
+      },
+      "properties": {"street":"E91 TO S241 RT 91 ON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.800349,33.712252]
+      },
+      "properties": {"street":"JAMBOREE", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797696,33.715376]
+      },
+      "properties": {"street":"WALNUT 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795181,33.717083]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.493349", "perpy":"-0.869832"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789435,33.720342]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"lime", "perpx":"0.493349", "perpy":"-0.869832"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 1.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782735,33.72367]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"0.607612", "perpy":"-0.794234"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777645,33.727564]
+      },
+      "properties": {"street":"IRVINE BLVD 2", "color":"lime", "perpx":"0.607612", "perpy":"-0.794234"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 2.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.772751,33.733387]
+      },
+      "properties": {"street":"IRVINE RANCH FSTRK", "color":"lime", "perpx":"0.766466", "perpy":"-0.642285"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768065,33.738979]
+      },
+      "properties": {"street":"PORTOLA  1", "color":"lime", "perpx":"0.904237", "perpy":"-0.42703"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.765231,33.74498]
+      },
+      "properties": {"street":"PORTOLA 2", "color":"lime", "perpx":"0.983838", "perpy":"-0.179058"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764319,33.749991]
+      },
+      "properties": {"street":"PORTOLA 3", "color":"lime", "perpx":"0.984423", "perpy":"-0.175816"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763603,33.754]
+      },
+      "properties": {"street":"PORTOLA 4", "color":"lime", "perpx":"0.984423", "perpy":"-0.175816"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76135,33.758685]
+      },
+      "properties": {"street":"S OF UTILITY", "color":"lime", "perpx":"0.885102", "perpy":"-0.465397"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759099,33.762966]
+      },
+      "properties": {"street":"N OF UTILITY", "color":"lime", "perpx":"0.980133", "perpy":"-0.198343"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758414,33.766351]
+      },
+      "properties": {"street":"HANDY 1", "color":"lime", "perpx":"0.999501", "perpy":"-0.031586"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75831,33.769642]
+      },
+      "properties": {"street":"HANDY 2", "color":"lime", "perpx":"0.997022", "perpy":"-0.077121"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 5.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757935,33.77449]
+      },
+      "properties": {"street":"HANDY 3", "color":"lime", "perpx":"0.997022", "perpy":"-0.077121"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 5.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75497,33.779145]
+      },
+      "properties": {"street":"CHAPMAN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.800638,33.7124]
+      },
+      "properties": {"street":"JAMBOREE", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795434,33.717315]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.497099", "perpy":"0.867694"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789693,33.720604]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"lime", "perpx":"-0.497099", "perpy":"0.867694"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 1.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782999,33.723902]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"-0.601686", "perpy":"0.798733"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777924,33.727725]
+      },
+      "properties": {"street":"IRVINE BLVD 2", "color":"lime", "perpx":"-0.601686", "perpy":"0.798733"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 2.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.773023,33.733529]
+      },
+      "properties": {"street":"IRVINE RANCH FSTRK", "color":"lime", "perpx":"-0.769852", "perpy":"0.638223"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768378,33.739132]
+      },
+      "properties": {"street":"PORTOLA  1", "color":"lime", "perpx":"-0.910548", "perpy":"0.413404"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.765643,33.745156]
+      },
+      "properties": {"street":"PORTOLA 2", "color":"lime", "perpx":"-0.982145", "perpy":"0.188125"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764687,33.750147]
+      },
+      "properties": {"street":"PORTOLA 3", "color":"lime", "perpx":"-0.984863", "perpy":"0.173336"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763983,33.754147]
+      },
+      "properties": {"street":"PORTOLA 4", "color":"lime", "perpx":"-0.984863", "perpy":"0.173336"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761762,33.758827]
+      },
+      "properties": {"street":"S OF UTILITY", "color":"lime", "perpx":"-0.884264", "perpy":"0.466987"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759498,33.763114]
+      },
+      "properties": {"street":"N OF UTILITY", "color":"lime", "perpx":"-0.980989", "perpy":"0.194064"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758825,33.766516]
+      },
+      "properties": {"street":"HANDY 1", "color":"lime", "perpx":"-0.999193", "perpy":"0.040173"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758692,33.769824]
+      },
+      "properties": {"street":"HANDY 2", "color":"lime", "perpx":"-0.997492", "perpy":"0.070782"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 5.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758346,33.7747]
+      },
+      "properties": {"street":"HANDY 3", "color":"lime", "perpx":"-0.997492", "perpy":"0.070782"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 5.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75529,33.779357]
+      },
+      "properties": {"street":"CHAPMAN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741156,33.646486]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 0.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.746598,33.64809]
+      },
+      "properties": {"street":"IRVINE C1", "color":"lime", "perpx":"0.282096", "perpy":"0.959386"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895773,33.687683]
+      },
+      "properties": {"street":"N OF 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902375,33.687846]
+      },
+      "properties": {"street":"N OF 73", "color":"lime", "perpx":"0.024682", "perpy":"0.999695"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.909664,33.688017]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74955,33.648958]
+      },
+      "properties": {"street":"IRVINE C2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.247",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915651,33.688281]
+      },
+      "properties": {"street":"TEMP 1 NB", "color":"lime", "perpx":"0.226201", "perpy":"0.974081"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918196,33.688872]
+      },
+      "properties": {"street":"HARBOR 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.921335,33.690091]
+      },
+      "properties": {"street":"HYLAND", "color":"lime", "perpx":"0.362002", "perpy":"0.932177"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.930032,33.693692]
+      },
+      "properties": {"street":"HAMPSHIRE", "color":"lime", "perpx":"0.384478", "perpy":"0.923134"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.712",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938594,33.697258]
+      },
+      "properties": {"street":"TEMP 2 NB", "color":"lime", "perpx":"0.389175", "perpy":"0.921164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.940729,33.69816]
+      },
+      "properties": {"street":"EUCLID", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.122",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94495,33.699916]
+      },
+      "properties": {"street":"LOCATION 5013 NB", "color":"lime", "perpx":"0.384103", "perpy":"0.92329"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.953701,33.704947]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"0.642988", "perpy":"0.765876"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.956518,33.707312]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 14.571",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.963904,33.71347]
+      },
+      "properties": {"street":"TMS 5014 NB", "color":"lime", "perpx":"0.641837", "perpy":"0.766841"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 14.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.966959,33.716027]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"0.643494", "perpy":"0.765452"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.971245,33.719628]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"0.639234", "perpy":"0.769012"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969162,33.717879]
+      },
+      "properties": {"street":"405 TEST", "color":"lime", "perpx":"0.643037", "perpy":"0.765835"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.973953,33.721879]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.977379,33.724553]
+      },
+      "properties": {"street":"TMS 5015 NB", "color":"lime", "perpx":"0.568448", "perpy":"0.822719"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757101,33.651141]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.202053", "perpy":"0.979375"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.025",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.982268,33.727931]
+      },
+      "properties": {"street":"TMS 5016 NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.988885,33.732527]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.571725", "perpy":"0.820445"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992088,33.734759]
+      },
+      "properties": {"street":"BEACH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759796,33.651697]
+      },
+      "properties": {"street":"AT 133 N405 to S133", "color":"lime", "perpx":"0.147572", "perpy":"0.989051"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 17.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.00667,33.746378]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"lime", "perpx":"0.642886", "perpy":"0.765962"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 18.696",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.016167,33.754349]
+      },
+      "properties": {"street":"TMC 5017 NB", "color":"lime", "perpx":"0.64006", "perpy":"0.768325"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 19.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.022852,33.759918]
+      },
+      "properties": {"street":"WESTMINISTER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763194,33.652204]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"0.206915", "perpy":"0.978359"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 19.631",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.027646,33.763926]
+      },
+      "properties": {"street":"TMS 5018 NB", "color":"lime", "perpx":"0.641411", "perpy":"0.767197"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 20.341",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036355,33.771206]
+      },
+      "properties": {"street":"TMS 2240 NB", "color":"lime", "perpx":"0.313135", "perpy":"0.949709"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.039",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.046955,33.774701]
+      },
+      "properties": {"street":"TMS 2417 NB", "color":"lime", "perpx":"-0.025163", "perpy":"0.999683"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.552",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.055894,33.774476]
+      },
+      "properties": {"street":"TMS 5020 NB", "color":"lime", "perpx":"-0.001431", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.912",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.062183,33.774467]
+      },
+      "properties": {"street":"TMS 5021 NB", "color":"lime", "perpx":"-0.001431", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 22.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.073325,33.774552]
+      },
+      "properties": {"street":"SEAL BEACH 1", "color":"lime", "perpx":"-0.000845", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 22.887",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.079243,33.774547]
+      },
+      "properties": {"street":"TMS 268", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083341,33.774556]
+      },
+      "properties": {"street":"S OF 7TH ST", "color":"lime", "perpx":"0.026307", "perpy":"0.999654"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.133",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083569,33.774562]
+      },
+      "properties": {"street":"TMS 2241 NB", "color":"lime", "perpx":"0.114396", "perpy":"0.993435"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084559,33.774676]
+      },
+      "properties": {"street":"N OF 7TH ST", "color":"lime", "perpx":"0.114396", "perpy":"0.993435"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.08123,33.774554]
+      },
+      "properties": {"street":"S OF OLD RANCH PKWY", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770173,33.65368]
+      },
+      "properties": {"street":"LAGUNA CANYON RD", "color":"lime", "perpx":"0.206915", "perpy":"0.978359"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089644,33.778545]
+      },
+      "properties": {"street":"SALMON", "color":"lime", "perpx":"0.941439", "perpy":"0.337182"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.641",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089745,33.778827]
+      },
+      "properties": {"street":"TMS 2218 NB", "color":"lime", "perpx":"0.941439", "perpy":"0.337182"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090834,33.782737]
+      },
+      "properties": {"street":"S OF 605", "color":"lime", "perpx":"0.96041", "perpy":"0.278592"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.929",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090872,33.782868]
+      },
+      "properties": {"street":"TMS 2542 NB", "color":"lime", "perpx":"0.96041", "perpy":"0.278592"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 24.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.092441,33.785381]
+      },
+      "properties": {"street":"N OF 605", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777952,33.657928]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.494902", "perpy":"0.868949"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.77939,33.658747]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780107,33.659163]
+      },
+      "properties": {"street":"SAND CANYON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784046,33.661319]
+      },
+      "properties": {"street":"N OF SAND CANYON", "color":"lime", "perpx":"0.480131", "perpy":"0.877197"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793258,33.663379]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"lime", "perpx":"0.142134", "perpy":"0.989847"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796176,33.663798]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"lime", "perpx":"0.142134", "perpy":"0.989847"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812902,33.666407]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"0.267568", "perpy":"0.963539"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813561,33.66659]
+      },
+      "properties": {"street":"SPRUCE", "color":"lime", "perpx":"0.267568", "perpy":"0.963539"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.821657,33.669218]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"0.332642", "perpy":"0.943053"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.824699,33.670291]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"0.320278", "perpy":"0.947323"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 6.21",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832271,33.672851]
+      },
+      "properties": {"street":"HARVARD", "color":"lime", "perpx":"0.320278", "perpy":"0.947323"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 6.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842488,33.676465]
+      },
+      "properties": {"street":"JAMBOREE1", "color":"lime", "perpx":"0.400805", "perpy":"0.916164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 7.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845871,33.677945]
+      },
+      "properties": {"street":"JAMBOREE2", "color":"lime", "perpx":"0.400805", "perpy":"0.916164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 7.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85598,33.682442]
+      },
+      "properties": {"street":"MACARTHUR 1", "color":"lime", "perpx":"0.408917", "perpy":"0.912572"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864081,33.686072]
+      },
+      "properties": {"street":"AIRPORT", "color":"lime", "perpx":"0.321527", "perpy":"0.9469"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865527,33.686563]
+      },
+      "properties": {"street":"HOV AT 55N FLYOVER**", "color":"lime", "perpx":"0.271933", "perpy":"0.962316"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866348,33.686795]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"0.126754", "perpy":"0.991934"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871466,33.687449]
+      },
+      "properties": {"street":"ANTON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880139,33.687519]
+      },
+      "properties": {"street":"AVE. OF ART", "color":"lime", "perpx":"0.000886", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.884653,33.687523]
+      },
+      "properties": {"street":"BRISTOL 1", "color":"lime", "perpx":"0.0", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887956,33.687523]
+      },
+      "properties": {"street":"BRISTOL 2", "color":"lime", "perpx":"0.0", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8923,33.687569]
+      },
+      "properties": {"street":"BEAR", "color":"lime", "perpx":"0.032807", "perpy":"0.999462"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741301,33.646186]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.284825", "perpy":"-0.958579"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744091,33.647015]
+      },
+      "properties": {"street":"IRVINE C1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747203,33.64795]
+      },
+      "properties": {"street":"IRVINE C2", "color":"lime", "perpx":"-0.287743", "perpy":"-0.957708"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.28",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899035,33.68748]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899383,33.687494]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902507,33.687582]
+      },
+      "properties": {"street":"N OF 73", "color":"lime", "perpx":"-0.028158", "perpy":"-0.999603"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915002,33.687942]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.248611", "perpy":"-0.968603"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.92042,33.689396]
+      },
+      "properties": {"street":"TEMP 1 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.91995,33.689212]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"-0.364549", "perpy":"-0.931184"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.930222,33.693448]
+      },
+      "properties": {"street":"HAMPSHIRE", "color":"lime", "perpx":"-0.385484", "perpy":"-0.922714"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.9355,33.695653]
+      },
+      "properties": {"street":"EUCLID", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.937506,33.696514]
+      },
+      "properties": {"street":"TEMP 2 SB", "color":"lime", "perpx":"-0.394417", "perpy":"-0.918932"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.123",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94515,33.699731]
+      },
+      "properties": {"street":"LOCATION 5013 SB", "color":"lime", "perpx":"-0.37653", "perpy":"-0.926404"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.947913,33.700854]
+      },
+      "properties": {"street":"TALBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.954762,33.705479]
+      },
+      "properties": {"street":"BROOKHURST2", "color":"lime", "perpx":"-0.559633", "perpy":"-0.828741"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 14.539",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.963712,33.712977]
+      },
+      "properties": {"street":"TMS 5014 SB", "color":"lime", "perpx":"-0.642116", "perpy":"-0.766608"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 14.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.965935,33.714839]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"-0.642116", "perpy":"-0.766608"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.971343,33.71936]
+      },
+      "properties": {"street":"MAGNOLIA 1", "color":"lime", "perpx":"-0.644821", "perpy":"-0.764334"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969386,33.717709]
+      },
+      "properties": {"street":"405 TEST", "color":"lime", "perpx":"-0.644821", "perpy":"-0.764334"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15.722",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.978434,33.724961]
+      },
+      "properties": {"street":"TMS 5015 SB", "color":"lime", "perpx":"-0.570833", "perpy":"-0.821066"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757205,33.650789]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"-0.197097", "perpy":"-0.980384"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.98561,33.72995]
+      },
+      "properties": {"street":"EDINGER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.990146,33.733102]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.580003", "perpy":"-0.814614"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.978",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995139,33.736657]
+      },
+      "properties": {"street":"TMS 5016 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759896,33.65133]
+      },
+      "properties": {"street":"AT 133", "color":"lime", "perpx":"-0.146685", "perpy":"-0.989183"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 17.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.003642,33.743534]
+      },
+      "properties": {"street":"BOLSA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 17.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.007585,33.7468]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"lime", "perpx":"-0.646922", "perpy":"-0.762556"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.007829,33.747007]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 18.689",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.016295,33.754062]
+      },
+      "properties": {"street":"TMS 5017 SB", "color":"lime", "perpx":"-0.6442", "perpy":"-0.764857"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 19.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020707,33.757778]
+      },
+      "properties": {"street":"WESTMINSTER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763315,33.651837]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"-0.209415", "perpy":"-0.977827"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 19.641",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.02796,33.763839]
+      },
+      "properties": {"street":"TMS 5018 SB", "color":"lime", "perpx":"-0.641235", "perpy":"-0.767345"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 20.336",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036509,33.770948]
+      },
+      "properties": {"street":"TMS 2240 SB", "color":"lime", "perpx":"-0.541255", "perpy":"-0.840859"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 20.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.041297,33.77403]
+      },
+      "properties": {"street":"BOLSA CHICA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.032",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.047045,33.774412]
+      },
+      "properties": {"street":"TMS 2417 SB", "color":"lime", "perpx":"-0.066312", "perpy":"-0.997799"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.519",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.055374,33.774204]
+      },
+      "properties": {"street":"TMS 5020 SB", "color":"lime", "perpx":"0.002321", "perpy":"-0.999997"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.864",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.061407,33.77419]
+      },
+      "properties": {"street":"TMS 5021 SB", "color":"lime", "perpx":"0.002321", "perpy":"-0.999997"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 22.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.073289,33.774257]
+      },
+      "properties": {"street":"SEAL BEACH 1", "color":"lime", "perpx":"-0.007511", "perpy":"-0.999972"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.093",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083008,33.77433]
+      },
+      "properties": {"street":"TMS 2241 SB", "color":"lime", "perpx":"-0.0", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083482,33.77433]
+      },
+      "properties": {"street":"S OF 7TH ST", "color":"lime", "perpx":"-0.111511", "perpy":"-0.993763"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084694,33.774466]
+      },
+      "properties": {"street":"N OF 7TH ST", "color":"lime", "perpx":"-0.224563", "perpy":"-0.974459"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.262",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.085896,33.774743]
+      },
+      "properties": {"street":"TMS 5022 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 2.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770361,33.653346]
+      },
+      "properties": {"street":"LAGUNA CANYON RD", "color":"lime", "perpx":"-0.209415", "perpy":"-0.977827"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089913,33.778421]
+      },
+      "properties": {"street":"SALMON", "color":"lime", "perpx":"-0.946836", "perpy":"-0.321715"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.646",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090036,33.778783]
+      },
+      "properties": {"street":"TMS 2218 SB", "color":"lime", "perpx":"-0.965604", "perpy":"-0.260019"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090242,33.779548]
+      },
+      "properties": {"street":"E22-N405", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.919",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.091096,33.782664]
+      },
+      "properties": {"street":"TMS 2542 SB", "color":"lime", "perpx":"-0.966235", "perpy":"-0.257663"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.0911,33.782679]
+      },
+      "properties": {"street":"S OF 605", "color":"lime", "perpx":"-0.966235", "perpy":"-0.257663"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 24.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.092624,33.785289]
+      },
+      "properties": {"street":"N OF 605", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.778085,33.657534]
+      },
+      "properties": {"street":"SAND CANYON", "color":"lime", "perpx":"-0.484045", "perpy":"-0.875043"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 3.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784273,33.660957]
+      },
+      "properties": {"street":"N OF SAND CANYON", "color":"lime", "perpx":"-0.484045", "perpy":"-0.875043"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 3.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793047,33.66293]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"lime", "perpx":"-0.144931", "perpy":"-0.989442"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796283,33.663404]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"lime", "perpx":"-0.144931", "perpy":"-0.989442"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.81298,33.666093]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"-0.29192", "perpy":"-0.956443"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813632,33.666292]
+      },
+      "properties": {"street":"SPRUCE", "color":"lime", "perpx":"-0.29192", "perpy":"-0.956443"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.820882,33.668738]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"-0.30889", "perpy":"-0.951098"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.823958,33.669737]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.30889", "perpy":"-0.951098"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830554,33.671983]
+      },
+      "properties": {"street":"HARVARD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.21",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832329,33.672571]
+      },
+      "properties": {"street":"HARVARD", "color":"lime", "perpx":"-0.314462", "perpy":"-0.94927"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.84179,33.675863]
+      },
+      "properties": {"street":"JAMBOREE1", "color":"lime", "perpx":"-0.402558", "perpy":"-0.915394"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 7.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845019,33.677283]
+      },
+      "properties": {"street":"JAMBOREE2", "color":"lime", "perpx":"-0.402558", "perpy":"-0.915394"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 7.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855449,33.681922]
+      },
+      "properties": {"street":"MACARTHUR1", "color":"lime", "perpx":"-0.399707", "perpy":"-0.916643"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86423,33.685751]
+      },
+      "properties": {"street":"AIRPORT", "color":"lime", "perpx":"-0.358185", "perpy":"-0.933651"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865648,33.686295]
+      },
+      "properties": {"street":"HOV 55S to 405S", "color":"lime", "perpx":"-0.259554", "perpy":"-0.965729"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866474,33.686517]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"-0.259554", "perpy":"-0.965729"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875063,33.687245]
+      },
+      "properties": {"street":"N OF 55", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880276,33.687254]
+      },
+      "properties": {"street":"AVE. OF ART", "color":"lime", "perpx":"0.000508", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88618,33.687251]
+      },
+      "properties": {"street":"BRISTOL 1", "color":"lime", "perpx":"-0.013748", "perpy":"-0.999905"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892435,33.687337]
+      },
+      "properties": {"street":"BEAR", "color":"lime", "perpx":"-0.013748", "perpy":"-0.999905"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 N 1.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084562,33.799174]
+      },
+      "properties": {"street":"N OF 405", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 N 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.082822,33.80097]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084891,33.799259]
+      },
+      "properties": {"street":"N OF 405", "color":"lime", "perpx":"-0.712287", "perpy":"0.701888"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083136,33.80104]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"-0.712287", "perpy":"0.701888"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.081675,33.804047]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  }
+ ]
+}
Index: trunk/webapps/cptms/data_layers/highways_startup_fromVDS.json
===================================================================
--- trunk/webapps/cptms/data_layers/highways_startup_fromVDS.json	(revision 352)
+++ trunk/webapps/cptms/data_layers/highways_startup_fromVDS.json	(revision 352)
@@ -0,0 +1,12155 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+  {
+  "type": "Feature",
+  "id": "1 N 12.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828018,33.565462]
+      },
+      "properties": {"street":"1 SB REEF POINT DR", "color":"lime", "perpx":"0.547592", "perpy":"0.836745"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 12.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833412,33.568992]
+      },
+      "properties": {"street":"1 SB CRYSTAL HEIGHTS", "color":"lime", "perpx":"0.71338", "perpy":"0.700778"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 13.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839807,33.575502]
+      },
+      "properties": {"street":"1 SB LOS TRANCOS", "color":"lime", "perpx":"0.71338", "perpy":"0.700778"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 16.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875914,33.605811]
+      },
+      "properties": {"street":"1 NB AVOCADO AVE", "color":"lime", "perpx":"0.565236", "perpy":"0.82493"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 17.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883525,33.611026]
+      },
+      "properties": {"street":"1 NB IRVINE TERRACE", "color":"lime", "perpx":"0.565236", "perpy":"0.82493"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893777,33.613432]
+      },
+      "properties": {"street":"1 NB PROMONTORY PT", "color":"lime", "perpx":"0.37769", "perpy":"0.925932"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 18.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900661,33.61624]
+      },
+      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"lime", "perpx":"0.37769", "perpy":"0.925932"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913843,33.616119]
+      },
+      "properties": {"street":"1 NB BALBOA BAY", "color":"lime", "perpx":"0.380476", "perpy":"0.924791"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 19.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.924387,33.620457]
+      },
+      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"lime", "perpx":"0.140764", "perpy":"0.990043"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 N 20.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933242,33.621716]
+      },
+      "properties": {"street":"1 NB S OF 55", "color":"lime", "perpx":"0.140764", "perpy":"0.990043"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 12.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828018,33.565462]
+      },
+      "properties": {"street":"1 SB REEF POINT DR", "color":"lime", "perpx":"-0.547592", "perpy":"-0.836745"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 12.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833412,33.568992]
+      },
+      "properties": {"street":"1 SB CRYSTAL HEIGHTS", "color":"lime", "perpx":"-0.713433", "perpy":"-0.700723"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 13.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839807,33.575503]
+      },
+      "properties": {"street":"1 SB LOS TRANCOS", "color":"lime", "perpx":"-0.713433", "perpy":"-0.700723"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 16.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876053,33.605675]
+      },
+      "properties": {"street":"1 NB AVOCADO AVE", "color":"lime", "perpx":"-0.566243", "perpy":"-0.824239"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 17.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883631,33.610881]
+      },
+      "properties": {"street":"1 NB IRVINE TERRACE", "color":"lime", "perpx":"-0.566243", "perpy":"-0.824239"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893843,33.613228]
+      },
+      "properties": {"street":"1 NB PROMONTORY PT", "color":"lime", "perpx":"-0.399609", "perpy":"-0.916686"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 18.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900679,33.616208]
+      },
+      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"lime", "perpx":"-0.399609", "perpy":"-0.916686"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913849,33.61612]
+      },
+      "properties": {"street":"1 NB BALBOA BAY", "color":"lime", "perpx":"-0.371678", "perpy":"-0.928362"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 19.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.924432,33.620357]
+      },
+      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"lime", "perpx":"-0.133399", "perpy":"-0.991062"}
+  },
+  {
+  "type": "Feature",
+  "id": "1 S 20.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933258,33.621545]
+      },
+      "properties": {"street":"1 NB S OF 55", "color":"lime", "perpx":"-0.133399", "perpy":"-0.991062"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 0.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.597992,33.40516]
+      },
+      "properties": {"street":"S. LUIS REY", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.660803,33.50939]
+      },
+      "properties": {"street":"EL HORNO", "color":"lime", "perpx":"0.920027", "perpy":"0.391855"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.662568,33.513534]
+      },
+      "properties": {"street":"SERRA PARK", "color":"lime", "perpx":"0.919833", "perpy":"0.392311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 10.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664335,33.517677]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"0.919833", "perpy":"0.392311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666382,33.52247]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"0.924678", "perpy":"0.38075"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666438,33.522606]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.66866,33.526621]
+      },
+      "properties": {"street":"TRABUCO", "color":"lime", "perpx":"0.874948", "perpy":"0.484218"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 11.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674488,33.53247]
+      },
+      "properties": {"street":"WILDWOOD", "color":"lime", "perpx":"0.999898", "perpy":"-0.014276"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 12.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674416,33.537513]
+      },
+      "properties": {"street":"S OF 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.601964,33.413051]
+      },
+      "properties": {"street":"MAGDALENA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6021,33.413319]
+      },
+      "properties": {"street":"MAGDALENA", "color":"lime", "perpx":"0.891749", "perpy":"0.45253"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 12.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673098,33.545242]
+      },
+      "properties": {"street":"AVERY 1", "color":"lime", "perpx":"0.993425", "perpy":"-0.114487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672686,33.548817]
+      },
+      "properties": {"street":"AVERY PARK", "color":"lime", "perpx":"0.999609", "perpy":"-0.027961"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672682,33.54896]
+      },
+      "properties": {"street":"AVERY PARK", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672812,33.556241]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"0.999812", "perpy":"0.019403"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672849,33.558239]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"0.999976", "perpy":"0.006993"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672848,33.558096]
+      },
+      "properties": {"street":"CROWN VA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672791,33.560549]
+      },
+      "properties": {"street":"CROWN VA2", "color":"lime", "perpx":"0.996005", "perpy":"-0.089297"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 13.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672778,33.560694]
+      },
+      "properties": {"street":"CROWN VA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 14.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671844,33.569099]
+      },
+      "properties": {"street":"FAIRCOURT", "color":"lime", "perpx":"0.993882", "perpy":"-0.110445"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67162,33.578849]
+      },
+      "properties": {"street":"OSO PARK 1", "color":"lime", "perpx":"0.999789", "perpy":"-0.020544"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671617,33.578995]
+      },
+      "properties": {"street":"OSO PARK1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67157,33.582052]
+      },
+      "properties": {"street":"OSO PARK2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671571,33.582197]
+      },
+      "properties": {"street":"OSO PARK2", "color":"lime", "perpx":"0.999908", "perpy":"-0.01358"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671484,33.588603]
+      },
+      "properties": {"street":"CERVANTES", "color":"lime", "perpx":"0.999908", "perpy":"-0.01358"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674275,33.596326]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"0.652225", "perpy":"0.758026"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676059,33.597861]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676194,33.597965]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"0.610278", "perpy":"0.792187"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.678685,33.599252]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 16.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.678839,33.599314]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68984,33.604242]
+      },
+      "properties": {"street":"ALICIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689974,33.604332]
+      },
+      "properties": {"street":"ALICIA 1", "color":"lime", "perpx":"0.557556", "perpy":"0.830139"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692734,33.606025]
+      },
+      "properties": {"street":"ALICIA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 17.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692884,33.606111]
+      },
+      "properties": {"street":"ALICIA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70083,33.60972]
+      },
+      "properties": {"street":"ANKERTON", "color":"lime", "perpx":"0.59407", "perpy":"0.804413"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606498,33.420685]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 1.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6066,33.420802]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706467,33.613883]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.647648", "perpy":"0.761939"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706587,33.613985]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.647648", "perpy":"0.761939"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70901,33.616112]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 18.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.709128,33.616217]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 19.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714379,33.621929]
+      },
+      "properties": {"street":"RED ROBIN", "color":"lime", "perpx":"0.73619", "perpy":"0.676774"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724216,33.631998]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"0.651823", "perpy":"0.758371"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724337,33.632102]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"0.735536", "perpy":"0.677486"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721491,33.629553]
+      },
+      "properties": {"street":"LAKE FOR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72806,33.636144]
+      },
+      "properties": {"street":"BAKE 1", "color":"lime", "perpx":"0.735536", "perpy":"0.677486"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 20.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731437,33.640323]
+      },
+      "properties": {"street":"BAKE 2", "color":"lime", "perpx":"0.77975", "perpy":"0.626091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 21.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734444,33.644068]
+      },
+      "properties": {"street":"At 405", "color":"lime", "perpx":"0.77975", "perpy":"0.626091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.742629,33.654371]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"0.780869", "perpy":"0.624695"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743597,33.655581]
+      },
+      "properties": {"street":"ALTON 3", "color":"lime", "perpx":"0.780869", "perpy":"0.624695"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 22.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748817,33.662274]
+      },
+      "properties": {"street":"BARRANCA", "color":"lime", "perpx":"0.770018", "perpy":"0.638022"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.751722,33.66578]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"0.776343", "perpy":"0.630311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753237,33.667646]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.776343", "perpy":"0.630311"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755266,33.671657]
+      },
+      "properties": {"street":"S OF SAND CNYN", "color":"lime", "perpx":"0.972906", "perpy":"0.2312"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 23.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75591,33.674367]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.813783", "perpy":"0.581169"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 24.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759083,33.67881]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"0.701651", "perpy":"0.712521"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6116,33.428587]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 24.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76413,33.68378]
+      },
+      "properties": {"street":"N OF SAND CNYN", "color":"lime", "perpx":"0.701651", "perpy":"0.712521"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.611817,33.428811]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768954,33.691182]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.769532,33.692068]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 25.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.774934,33.700287]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"0.835661", "perpy":"0.549245"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 26.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.781713,33.709761]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"0.673811", "perpy":"0.738904"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 26.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784619,33.712411]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"0.673811", "perpy":"0.738904"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794408,33.719297]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794541,33.719391]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 27.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796397,33.720695]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"0.570509", "perpy":"0.821292"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 28.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801722,33.724394]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"lime", "perpx":"0.570509", "perpy":"0.821292"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.615519,33.432425]
+      },
+      "properties": {"street":"PALIZADA", "color":"lime", "perpx":"0.698551", "perpy":"0.71556"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 28.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813606,33.732444]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"0.577035", "perpy":"0.816719"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 29.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.817068,33.73489]
+      },
+      "properties": {"street":"RED HILL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 29.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.825811,33.738115]
+      },
+      "properties": {"street":"NEWPORT*", "color":"lime", "perpx":"0.29944", "perpy":"0.954115"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832416,33.740283]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"0.333225", "perpy":"0.942847"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.829214,33.739183]
+      },
+      "properties": {"street":"B ST.", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835585,33.741403]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"0.333225", "perpy":"0.942847"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838695,33.742605]
+      },
+      "properties": {"street":"WILLIAMS", "color":"lime", "perpx":"0.572697", "perpy":"0.819767"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.841283,33.744413]
+      },
+      "properties": {"street":"1ST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 30.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842095,33.745655]
+      },
+      "properties": {"street":"1ST", "color":"lime", "perpx":"0.928052", "perpy":"0.372451"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.844061,33.750124]
+      },
+      "properties": {"street":"4TH", "color":"lime", "perpx":"0.715791", "perpy":"0.698315"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.84264,33.747013]
+      },
+      "properties": {"street":"N55 to N5 HOV VIA", "color":"lime", "perpx":"0.928052", "perpy":"0.372451"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845939,33.752049]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"0.715791", "perpy":"0.698315"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.602",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848819,33.753768]
+      },
+      "properties": {"street":"GRAND 1 HOV OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848788,33.753753]
+      },
+      "properties": {"street":"GRAND 1", "color":"lime", "perpx":"0.435561", "perpy":"0.900159"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850781,33.754689]
+      },
+      "properties": {"street":"GRAND 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 31.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85344,33.755834]
+      },
+      "properties": {"street":"GRAND 2", "color":"lime", "perpx":"0.395503", "perpy":"0.918465"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.858902,33.758263]
+      },
+      "properties": {"street":"17TH 1", "color":"lime", "perpx":"0.447214", "perpy":"0.894427"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 3.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.619773,33.43749]
+      },
+      "properties": {"street":"PICO 1", "color":"lime", "perpx":"0.498751", "perpy":"0.866745"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859664,33.758644]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862379,33.760465]
+      },
+      "properties": {"street":"17TH 2", "color":"lime", "perpx":"0.753317", "perpy":"0.657658"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 32.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863369,33.761599]
+      },
+      "properties": {"street":"17TH 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86784,33.76901]
+      },
+      "properties": {"street":"MAIN 2", "color":"lime", "perpx":"0.824993", "perpy":"0.565143"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868723,33.770299]
+      },
+      "properties": {"street":"BROADWAY", "color":"lime", "perpx":"0.824993", "perpy":"0.565143"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866456,33.766579]
+      },
+      "properties": {"street":"MAIN 1", "color":"lime", "perpx":"0.869034", "perpy":"0.494752"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871893,33.773944]
+      },
+      "properties": {"street":"SANTIAGO", "color":"lime", "perpx":"0.783267", "perpy":"0.621685"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 33.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873886,33.776455]
+      },
+      "properties": {"street":"S OF 22", "color":"lime", "perpx":"0.783267", "perpy":"0.621685"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878226,33.781151]
+      },
+      "properties": {"street":"LA VETA", "color":"lime", "perpx":"0.58161", "perpy":"0.813468"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879468,33.782039]
+      },
+      "properties": {"street":"N OF 57", "color":"lime", "perpx":"0.544875", "perpy":"0.838517"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880773,33.782887]
+      },
+      "properties": {"street":"N OF 57*", "color":"lime", "perpx":"0.668811", "perpy":"0.743433"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 34.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883174,33.785047]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.668811", "perpy":"0.743433"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888724,33.790771]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"0.673354", "perpy":"0.73932"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887536,33.789689]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891888,33.793754]
+      },
+      "properties": {"street":"ORANGEWOOD 1", "color":"lime", "perpx":"0.700471", "perpy":"0.713681"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 3.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.624486,33.440202]
+      },
+      "properties": {"street":"PICO 2", "color":"lime", "perpx":"0.498751", "perpy":"0.866745"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 35.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.893833,33.795663]
+      },
+      "properties": {"street":"GENE AUTRY", "color":"lime", "perpx":"0.700471", "perpy":"0.713681"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902246,33.803764]
+      },
+      "properties": {"street":"ORANGEWOOD 2", "color":"lime", "perpx":"0.641147", "perpy":"0.767418"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.903814,33.805074]
+      },
+      "properties": {"street":"KATELLA", "color":"lime", "perpx":"0.614618", "perpy":"0.788825"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 36.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905829,33.806644]
+      },
+      "properties": {"street":"ANAHEIM 2", "color":"lime", "perpx":"0.614618", "perpy":"0.788825"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.910643,33.811147]
+      },
+      "properties": {"street":"S OF HARBOR", "color":"lime", "perpx":"0.690175", "perpy":"0.723642"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915054,33.815354]
+      },
+      "properties": {"street":"HARBOR", "color":"lime", "perpx":"0.700541", "perpy":"0.713613"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 37.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918657,33.818891]
+      },
+      "properties": {"street":"BALL", "color":"lime", "perpx":"0.696671", "perpy":"0.717391"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.923123,33.823323]
+      },
+      "properties": {"street":"SOUTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.92205,33.822186]
+      },
+      "properties": {"street":"SOUTH 1", "color":"lime", "perpx":"0.727279", "perpy":"0.686342"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 38.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.931513,33.832016]
+      },
+      "properties": {"street":"LINCOLN", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.934272,33.833722]
+      },
+      "properties": {"street":"LINCOLN", "color":"lime", "perpx":"0.276022", "perpy":"0.961151"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938078,33.834815]
+      },
+      "properties": {"street":"EUCLID 1", "color":"lime", "perpx":"0.36034", "perpy":"0.932821"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 39.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943038,33.836731]
+      },
+      "properties": {"street":"EUCLID 2", "color":"lime", "perpx":"0.478822", "perpy":"0.877912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.949259,33.840124]
+      },
+      "properties": {"street":"CRESCENT", "color":"lime", "perpx":"0.478822", "perpy":"0.877912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.630415,33.44466]
+      },
+      "properties": {"street":"HERMOSA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955716,33.843721]
+      },
+      "properties": {"street":"BROOKHURST 1", "color":"lime", "perpx":"0.541489", "perpy":"0.840708"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.958388,33.845442]
+      },
+      "properties": {"street":"BROOKHURST 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 40.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.962444,33.847549]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.442245", "perpy":"0.896895"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.631445,33.445434]
+      },
+      "properties": {"street":"HERMOSA 2", "color":"lime", "perpx":"0.600745", "perpy":"0.799441"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.968011,33.850294]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"0.442245", "perpy":"0.896895"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.974766,33.854226]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"0.61619", "perpy":"0.787597"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 41.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976025,33.855211]
+      },
+      "properties": {"street":"MAGNOLIA 2", "color":"lime", "perpx":"0.61619", "perpy":"0.787597"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 42.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.98503,33.859271]
+      },
+      "properties": {"street":"ORANGETHORPE 2", "color":"lime", "perpx":"0.456565", "perpy":"0.88969"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 42.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.987649,33.860615]
+      },
+      "properties": {"street":"N OF ORANGETHORPE", "color":"lime", "perpx":"0.456565", "perpy":"0.88969"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991902,33.863248]
+      },
+      "properties": {"street":"STANTON", "color":"lime", "perpx":"0.437215", "perpy":"0.899357"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.28",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995907,33.865195]
+      },
+      "properties": {"street":"BEACH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.996199,33.865349]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.466495", "perpy":"0.884524"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.00058,33.867724]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"0.460988", "perpy":"0.887406"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 43.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.005021,33.870031]
+      },
+      "properties": {"street":"Western", "color":"lime", "perpx":"0.460988", "perpy":"0.887406"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 44.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.011177,33.874466]
+      },
+      "properties": {"street":"ARTESIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.639897,33.450411]
+      },
+      "properties": {"street":"S OF VAQUERO", "color":"lime", "perpx":"0.480833", "perpy":"0.876812"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647864,33.45478]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"0.393632", "perpy":"0.919268"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.650183,33.455773]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"0.393632", "perpy":"0.919268"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.655008,33.458342]
+      },
+      "properties": {"street":"ESTRELLA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 5.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.657305,33.459637]
+      },
+      "properties": {"street":"ESTRELLA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.665509,33.464404]
+      },
+      "properties": {"street":"SACRAMENTO", "color":"lime", "perpx":"0.523797", "perpy":"0.851843"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6701,33.467227]
+      },
+      "properties": {"street":"5NB PCH 3 OFF RAMPS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 6.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671714,33.468032]
+      },
+      "properties": {"street":"LAS RAMBLAS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 7.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674271,33.475073]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"0.816519", "perpy":"-0.577318"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 7.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669596,33.481685]
+      },
+      "properties": {"street":"AEROPUERTO", "color":"lime", "perpx":"0.816519", "perpy":"-0.577318"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 8.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663255,33.489561]
+      },
+      "properties": {"street":"S JUAN CREEK", "color":"lime", "perpx":"0.839468", "perpy":"-0.54341"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.659127,33.495938]
+      },
+      "properties": {"street":"PLAZA", "color":"lime", "perpx":"0.972984", "perpy":"-0.230873"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658278,33.499516]
+      },
+      "properties": {"street":"ORTEGA  1", "color":"lime", "perpx":"0.972984", "perpy":"-0.230873"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.67",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658516,33.503442]
+      },
+      "properties": {"street":"ORTEGA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 N 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658585,33.503727]
+      },
+      "properties": {"street":"ORTEGA  2", "color":"lime", "perpx":"0.971921", "perpy":"0.235307"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 0.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598167,33.404943]
+      },
+      "properties": {"street":"S LUIS REY", "color":"lime", "perpx":"-0.892883", "perpy":"-0.450288"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599923,33.408425]
+      },
+      "properties": {"street":"CALAFIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.661127,33.5093]
+      },
+      "properties": {"street":"EL HORNO", "color":"lime", "perpx":"-0.918881", "perpy":"-0.394535"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.662905,33.513441]
+      },
+      "properties": {"street":"SERRA PARK", "color":"lime", "perpx":"-0.920608", "perpy":"-0.390487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 10.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664664,33.517588]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"-0.920608", "perpy":"-0.390487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6667,33.522341]
+      },
+      "properties": {"street":"JUNIPERO SERRA", "color":"lime", "perpx":"-0.878964", "perpy":"-0.476887"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.668912,33.526418]
+      },
+      "properties": {"street":"TRABUCO", "color":"lime", "perpx":"-0.878964", "perpy":"-0.476887"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 11.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674919,33.53231]
+      },
+      "properties": {"street":"WILDWOOD", "color":"lime", "perpx":"-0.999508", "perpy":"0.03137"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 12.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674695,33.539447]
+      },
+      "properties": {"street":"S of 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.602338,33.41325]
+      },
+      "properties": {"street":"MAGDALENA", "color":"lime", "perpx":"-0.9013", "perpy":"-0.433194"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 12.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673404,33.545217]
+      },
+      "properties": {"street":"AVERY 1", "color":"lime", "perpx":"-0.993564", "perpy":"0.113275"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672993,33.548822]
+      },
+      "properties": {"street":"AVERY PARK", "color":"lime", "perpx":"-0.993564", "perpy":"0.113275"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673131,33.556667]
+      },
+      "properties": {"street":"CROWN VA1", "color":"lime", "perpx":"-0.999988", "perpy":"0.004899"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 13.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673112,33.560545]
+      },
+      "properties": {"street":"CROWN VA2", "color":"lime", "perpx":"-0.999988", "perpy":"0.004899"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 14.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67216,33.569098]
+      },
+      "properties": {"street":"Faircourt", "color":"lime", "perpx":"-0.999773", "perpy":"0.021323"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 1.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.603827,33.416348]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671983,33.577397]
+      },
+      "properties": {"street":"OSO PARK1", "color":"lime", "perpx":"-0.999891", "perpy":"0.014798"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671925,33.581316]
+      },
+      "properties": {"street":"OSO PARK2", "color":"lime", "perpx":"-0.999911", "perpy":"0.013321"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671829,33.588522]
+      },
+      "properties": {"street":"CERVANTES", "color":"lime", "perpx":"-0.999911", "perpy":"0.013321"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 16.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.673779,33.595354]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"lime", "perpx":"-0.688838", "perpy":"-0.724915"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 16.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67615,33.597607]
+      },
+      "properties": {"street":"LA PAZ 2", "color":"lime", "perpx":"-0.688838", "perpy":"-0.724915"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 17.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.687691,33.602645]
+      },
+      "properties": {"street":"ALICIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 17.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.69087,33.604617]
+      },
+      "properties": {"street":"ALICIA 2", "color":"lime", "perpx":"-0.527137", "perpy":"-0.849781"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.700998,33.609505]
+      },
+      "properties": {"street":"ANKERTON", "color":"lime", "perpx":"-0.573702", "perpy":"-0.819064"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705361,33.612561]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.647397", "perpy":"-0.762153"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.707825,33.614654]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"-0.647397", "perpy":"-0.762153"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714838,33.621819]
+      },
+      "properties": {"street":"RED ROBIN", "color":"lime", "perpx":"-0.735437", "perpy":"-0.677593"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719875,33.627286]
+      },
+      "properties": {"street":"LAKE FOR1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 19.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720919,33.628454]
+      },
+      "properties": {"street":"LAKE FOR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724695,33.631888]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"-0.650261", "perpy":"-0.759711"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724813,33.631989]
+      },
+      "properties": {"street":"OLDFIELD", "color":"lime", "perpx":"-0.737725", "perpy":"-0.675102"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728446,33.635959]
+      },
+      "properties": {"street":"BAKE 1", "color":"lime", "perpx":"-0.737725", "perpy":"-0.675102"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 20.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731896,33.640308]
+      },
+      "properties": {"street":"BAKE 2", "color":"lime", "perpx":"-0.792319", "perpy":"-0.610107"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 21.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734722,33.643978]
+      },
+      "properties": {"street":"At 405", "color":"lime", "perpx":"-0.792319", "perpy":"-0.610107"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 2.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.609039,33.424652]
+      },
+      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 21.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741205,33.652076]
+      },
+      "properties": {"street":"ALTON 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74294,33.654255]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"-0.78542", "perpy":"-0.618963"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743323,33.654741]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"-0.78542", "perpy":"-0.618963"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 22.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749253,33.662021]
+      },
+      "properties": {"street":"BARRANCA", "color":"lime", "perpx":"-0.788481", "perpy":"-0.615059"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75203,33.665581]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"-0.781645", "perpy":"-0.623724"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7525,33.66617]
+      },
+      "properties": {"street":"N OF 133", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753539,33.667502]
+      },
+      "properties": {"street":"5S TO 133S/BARA", "color":"lime", "perpx":"-0.809521", "perpy":"-0.587091"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.754476,33.668794]
+      },
+      "properties": {"street":"TEST MVDS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755616,33.6716]
+      },
+      "properties": {"street":"S OF SAND CNYN", "color":"lime", "perpx":"-0.975596", "perpy":"-0.219572"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 23.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756223,33.674297]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"-0.809826", "perpy":"-0.58667"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759362,33.67863]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"-0.809826", "perpy":"-0.58667"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764425,33.683599]
+      },
+      "properties": {"street":"N OF SAND CNYN", "color":"lime", "perpx":"-0.835705", "perpy":"-0.549178"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 24.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.767277,33.687939]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 25.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.775267,33.700148]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"-0.828715", "perpy":"-0.559671"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.779935,33.70706]
+      },
+      "properties": {"street":"CULVER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.783134,33.710634]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.654674", "perpy":"-0.755912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 26.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784926,33.712186]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.654674", "perpy":"-0.755912"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793071,33.717966]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 27.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796638,33.72047]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"-0.574555", "perpy":"-0.818466"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 28.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801999,33.724136]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"lime", "perpx":"-0.556796", "perpy":"-0.83065"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.615724,33.432273]
+      },
+      "properties": {"street":"PALIZADA", "color":"lime", "perpx":"-0.768234", "perpy":"-0.640169"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 28.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.805381,33.726403]
+      },
+      "properties": {"street":"TUSTIN RANCH", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814369,33.732587]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"-0.566824", "perpy":"-0.823839"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.824499,33.737386]
+      },
+      "properties": {"street":"NEWPORT*", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.825947,33.737856]
+      },
+      "properties": {"street":"NEWPORT", "color":"lime", "perpx":"-0.30873", "perpy":"-0.95115"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827716,33.738432]
+      },
+      "properties": {"street":"B ST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 29.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828362,33.738636]
+      },
+      "properties": {"street":"NEWPORT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832494,33.740098]
+      },
+      "properties": {"street":"S OF 55*", "color":"lime", "perpx":"-0.326161", "perpy":"-0.945314"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835743,33.741219]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"-0.33389", "perpy":"-0.942612"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839015,33.742378]
+      },
+      "properties": {"street":"WILLIAMS (VIADUCT)", "color":"lime", "perpx":"-0.33389", "perpy":"-0.942612"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 30.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842538,33.745553]
+      },
+      "properties": {"street":"1ST", "color":"lime", "perpx":"-0.927915", "perpy":"-0.372793"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.844652,33.749928]
+      },
+      "properties": {"street":"4TH", "color":"lime", "perpx":"-0.697138", "perpy":"-0.716937"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843088,33.746922]
+      },
+      "properties": {"street":"S5 to S55 HOV VIA", "color":"lime", "perpx":"-0.927915", "perpy":"-0.372793"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846535,33.751759]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"-0.504083", "perpy":"-0.863655"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.849326,33.753388]
+      },
+      "properties": {"street":"GRAND 1", "color":"lime", "perpx":"-0.504083", "perpy":"-0.863655"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 31.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.853795,33.755475]
+      },
+      "properties": {"street":"GRAND 2", "color":"lime", "perpx":"-0.382512", "perpy":"-0.923951"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859225,33.757943]
+      },
+      "properties": {"street":"17TH 1", "color":"lime", "perpx":"-0.583453", "perpy":"-0.812147"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 3.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.619943,33.437336]
+      },
+      "properties": {"street":"PICO 1", "color":"lime", "perpx":"-0.498994", "perpy":"-0.866606"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855324,33.756108]
+      },
+      "properties": {"street":"GRAND 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 32.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863625,33.761104]
+      },
+      "properties": {"street":"17TH 2", "color":"lime", "perpx":"-0.583453", "perpy":"-0.812147"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868373,33.768742]
+      },
+      "properties": {"street":"MAIN 2", "color":"lime", "perpx":"-0.830562", "perpy":"-0.556927"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.869238,33.770032]
+      },
+      "properties": {"street":"BROADWAY", "color":"lime", "perpx":"-0.830562", "perpy":"-0.556927"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866976,33.766429]
+      },
+      "properties": {"street":"MAIN 1", "color":"lime", "perpx":"-0.855987", "perpy":"-0.516997"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872316,33.773768]
+      },
+      "properties": {"street":"SANTIAGO", "color":"lime", "perpx":"-0.780234", "perpy":"-0.625487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 33.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874337,33.776289]
+      },
+      "properties": {"street":"S OF 22", "color":"lime", "perpx":"-0.780234", "perpy":"-0.625487"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87776,33.779824]
+      },
+      "properties": {"street":"LA VETA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878897,33.780805]
+      },
+      "properties": {"street":"LA VETA", "color":"lime", "perpx":"-0.617542", "perpy":"-0.786538"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880014,33.781682]
+      },
+      "properties": {"street":"N OF 57", "color":"lime", "perpx":"-0.575376", "perpy":"-0.817889"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876548,33.778694]
+      },
+      "properties": {"street":"5N&S La Veta", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881218,33.782529]
+      },
+      "properties": {"street":"N OF 57*", "color":"lime", "perpx":"-0.675711", "perpy":"-0.737167"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 34.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883653,33.784761]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.675711", "perpy":"-0.737167"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.890222,33.791651]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"-0.670989", "perpy":"-0.741468"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892284,33.793517]
+      },
+      "properties": {"street":"ORANGEWOOD 1", "color":"lime", "perpx":"-0.668203", "perpy":"-0.743979"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 3.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.624646,33.440044]
+      },
+      "properties": {"street":"PICO 2", "color":"lime", "perpx":"-0.605568", "perpy":"-0.795794"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 35.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894336,33.79536]
+      },
+      "properties": {"street":"GENE AUTRY", "color":"lime", "perpx":"-0.668203", "perpy":"-0.743979"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.901359,33.802101]
+      },
+      "properties": {"street":"KATELLA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902924,33.803614]
+      },
+      "properties": {"street":"HOV GENE AUTRY OFF", "color":"lime", "perpx":"-0.661771", "perpy":"-0.749706"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.904254,33.804788]
+      },
+      "properties": {"street":"ANAHEIM 1", "color":"lime", "perpx":"-0.654355", "perpy":"-0.756187"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 36.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.906207,33.806478]
+      },
+      "properties": {"street":"ANAHEIM 2", "color":"lime", "perpx":"-0.688863", "perpy":"-0.724891"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.910895,33.810933]
+      },
+      "properties": {"street":"S OF HARBOR", "color":"lime", "perpx":"-0.688863", "perpy":"-0.724891"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.916397,33.816263]
+      },
+      "properties": {"street":"HARBOR", "color":"lime", "perpx":"-0.689841", "perpy":"-0.723961"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 37.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918922,33.818669]
+      },
+      "properties": {"street":"BALL", "color":"lime", "perpx":"-0.697036", "perpy":"-0.717036"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922328,33.82198]
+      },
+      "properties": {"street":"SOUTH 1", "color":"lime", "perpx":"-0.750414", "perpy":"-0.660968"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 38.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.927279,33.827601]
+      },
+      "properties": {"street":"PEPPER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938264,33.834594]
+      },
+      "properties": {"street":"EUCLID 1", "color":"lime", "perpx":"-0.361622", "perpy":"-0.932325"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.933068,33.832791]
+      },
+      "properties": {"street":"LINCOLN", "color":"lime", "perpx":"-0.327822", "perpy":"-0.944739"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 39.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943178,33.8365]
+      },
+      "properties": {"street":"EUCLID 2", "color":"lime", "perpx":"-0.471004", "perpy":"-0.882131"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.949454,33.839851]
+      },
+      "properties": {"street":"CRESCENT", "color":"lime", "perpx":"-0.48436", "perpy":"-0.874869"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955942,33.843443]
+      },
+      "properties": {"street":"BROOKHURST 1", "color":"lime", "perpx":"-0.48436", "perpy":"-0.874869"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 40.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.96276,33.847169]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"-0.460852", "perpy":"-0.887477"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 4.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.631557,33.445303]
+      },
+      "properties": {"street":"HERMOSA 2", "color":"lime", "perpx":"-0.605568", "perpy":"-0.795794"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.968231,33.85001]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.460852", "perpy":"-0.887477"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.975069,33.854064]
+      },
+      "properties": {"street":"MAGNOLIA 91E OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.97494,33.853961]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.623956", "perpy":"-0.781459"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 41.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976235,33.854882]
+      },
+      "properties": {"street":"MAGNOLIA 2", "color":"lime", "perpx":"-0.57431", "perpy":"-0.818638"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 42.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.985205,33.859063]
+      },
+      "properties": {"street":"ORANGETHORPE 2", "color":"lime", "perpx":"-0.473855", "perpy":"-0.880603"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 42.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.987777,33.860447]
+      },
+      "properties": {"street":"N OF ORANGETHORPE", "color":"lime", "perpx":"-0.473855", "perpy":"-0.880603"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992155,33.862901]
+      },
+      "properties": {"street":"STANTON", "color":"lime", "perpx":"-0.493087", "perpy":"-0.86998"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.996273,33.865235]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.493087", "perpy":"-0.86998"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992016,33.86282]
+      },
+      "properties": {"street":"SB 5 to EB 91", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.000667,33.867596]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.455465", "perpy":"-0.890254"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 43.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.005145,33.869887]
+      },
+      "properties": {"street":"Western", "color":"lime", "perpx":"-0.455465", "perpy":"-0.890254"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 44.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.009266,33.872567]
+      },
+      "properties": {"street":"ARTESIA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640023,33.450269]
+      },
+      "properties": {"street":"S OF VAQUERO", "color":"lime", "perpx":"-0.478189", "perpy":"-0.878257"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.648005,33.454615]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"-0.395835", "perpy":"-0.918322"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.650318,33.455612]
+      },
+      "properties": {"street":"N OF VAQUERO", "color":"lime", "perpx":"-0.443289", "perpy":"-0.896379"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 5.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.653153,33.457014]
+      },
+      "properties": {"street":"ESTRELLA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 6.47",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.665631,33.464281]
+      },
+      "properties": {"street":"SACRAMENTO", "color":"lime", "perpx":"-0.56275", "perpy":"-0.826627"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 6.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.667379,33.465471]
+      },
+      "properties": {"street":"RTE 1 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 7.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674584,33.475102]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"-0.815879", "perpy":"0.578222"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 7.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669881,33.481738]
+      },
+      "properties": {"street":"AEROPUERTO", "color":"lime", "perpx":"-0.815879", "perpy":"0.578222"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663917,33.489176]
+      },
+      "properties": {"street":"S JUAN CREEK", "color":"lime", "perpx":"-0.836267", "perpy":"0.548322"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.659442,33.496001]
+      },
+      "properties": {"street":"PLAZA", "color":"lime", "perpx":"-0.971491", "perpy":"0.237077"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658583,33.499521]
+      },
+      "properties": {"street":"ORTEGA 1", "color":"lime", "perpx":"-0.996721", "perpy":"-0.080919"}
+  },
+  {
+  "type": "Feature",
+  "id": "5 S 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.65892,33.503672]
+      },
+      "properties": {"street":"ORTEGA  2", "color":"lime", "perpx":"-0.996721", "perpy":"-0.080919"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 0.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.093885,33.774295]
+      },
+      "properties": {"street":"COLLEGE PARK", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882341,33.778903]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"0.009671", "perpy":"-0.999953"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878722,33.778938]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.018208", "perpy":"-0.999834"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875647,33.778882]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.163762", "perpy":"-0.9865"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 10.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872382,33.77834]
+      },
+      "properties": {"street":"E OF 5", "color":"lime", "perpx":"-0.163762", "perpy":"-0.9865"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034947,33.774261]
+      },
+      "properties": {"street":"VALLEY V2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 11.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862808,33.778206]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"-0.226291", "perpy":"-0.97406"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855753,33.776567]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"-0.249497", "perpy":"-0.968376"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850292,33.77516]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"0.111941", "perpy":"-0.993715"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846173,33.775624]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"0.111941", "perpy":"-0.993715"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838553,33.776625]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.029233,33.774239]
+      },
+      "properties": {"street":"VIA LOS ALISOS", "color":"lime", "perpx":"-0.00385", "perpy":"-0.999993"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023517,33.774214]
+      },
+      "properties": {"street":"SPRINGDALE CENSUS", "color":"lime", "perpx":"0.0", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023344,33.774214]
+      },
+      "properties": {"street":"SPRINGDALE", "color":"lime", "perpx":"-0.000902", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.0178,33.774209]
+      },
+      "properties": {"street":"YUMA", "color":"lime", "perpx":"-0.000902", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.010537,33.774494]
+      },
+      "properties": {"street":"KNOTT 1", "color":"lime", "perpx":"-0.13051", "perpy":"-0.991447"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.006807,33.774003]
+      },
+      "properties": {"street":"GARDEN GROV", "color":"lime", "perpx":"-0.410336", "perpy":"-0.911934"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004149,33.772807]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"-0.410336", "perpy":"-0.911934"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 3.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.994688,33.771171]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.057103", "perpy":"-0.998368"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 3.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.989845,33.770894]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.058722", "perpy":"-0.998274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984626,33.770587]
+      },
+      "properties": {"street":"WILSON", "color":"lime", "perpx":"-0.058722", "perpy":"-0.998274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.979526,33.769467]
+      },
+      "properties": {"street":"NEWLAND", "color":"lime", "perpx":"-0.583276", "perpy":"-0.812274"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976135,33.767032]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"-0.198967", "perpy":"-0.980006"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 4.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969658,33.765717]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"lime", "perpx":"-0.198967", "perpy":"-0.980006"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.959406,33.765798]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"0.009319", "perpy":"-0.999957"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.958333,33.765808]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 5.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955835,33.765809]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"lime", "perpx":"0.010191", "perpy":"-0.999948"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.951027,33.765858]
+      },
+      "properties": {"street":"HOPE", "color":"lime", "perpx":"0.010191", "perpy":"-0.999948"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.946095,33.76591]
+      },
+      "properties": {"street":"WARD", "color":"lime", "perpx":"0.008461", "perpy":"-0.999964"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.941486,33.765949]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"0.008037", "perpy":"-0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.935763,33.765995]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.008037", "perpy":"-0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929691,33.766038]
+      },
+      "properties": {"street":"NEWHOPE", "color":"lime", "perpx":"-0.00578", "perpy":"-0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929518,33.766037]
+      },
+      "properties": {"street":"NEWHOPE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"-0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922361,33.76705]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"0.32366", "perpy":"-0.946173"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.917517,33.768707]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"0.34339", "perpy":"-0.939193"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913078,33.77033]
+      },
+      "properties": {"street":"PEARCE", "color":"lime", "perpx":"0.34339", "perpy":"-0.939193"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 8.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907372,33.773077]
+      },
+      "properties": {"street":"GARDEN G1", "color":"lime", "perpx":"0.456112", "perpy":"-0.889922"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.901985,33.775838]
+      },
+      "properties": {"street":"GARDEN GROVE 2", "color":"lime", "perpx":"0.456112", "perpy":"-0.889922"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895881,33.778512]
+      },
+      "properties": {"street":"LEWIS", "color":"lime", "perpx":"0.063537", "perpy":"-0.997979"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889394,33.778925]
+      },
+      "properties": {"street":"THE CITY DRIVE", "color":"lime", "perpx":"-0.007156", "perpy":"-0.999974"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 E 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88618,33.778902]
+      },
+      "properties": {"street":"HESPERIAN", "color":"lime", "perpx":"-0.007156", "perpy":"-0.999974"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 0.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.093888,33.774472]
+      },
+      "properties": {"street":"COLLEGE PARK", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 0.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.038174,33.774686]
+      },
+      "properties": {"street":"VALLEY V1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882183,33.779081]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"-0.00667", "perpy":"0.999978"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878735,33.779104]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.021147", "perpy":"0.999776"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875662,33.779039]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.174163", "perpy":"0.984717"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 10.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872394,33.778461]
+      },
+      "properties": {"street":"E OF 5", "color":"lime", "perpx":"0.174163", "perpy":"0.984717"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 11.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863135,33.778348]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"0.219291", "perpy":"0.97566"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855696,33.776676]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"0.249721", "perpy":"0.968318"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850279,33.775279]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"-0.113292", "perpy":"0.993562"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846201,33.775744]
+      },
+      "properties": {"street":"CONCORD", "color":"lime", "perpx":"-0.113292", "perpy":"0.993562"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838554,33.776862]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036302,33.774521]
+      },
+      "properties": {"street":"VALLEY V2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.029216,33.774397]
+      },
+      "properties": {"street":"VIA LOS ALISOS", "color":"lime", "perpx":"0.001402", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.02351,33.774389]
+      },
+      "properties": {"street":"SPRINGDALE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023337,33.77439]
+      },
+      "properties": {"street":"SPRINGDALE", "color":"lime", "perpx":"0.003425", "perpy":"0.999994"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.017789,33.774371]
+      },
+      "properties": {"street":"YUMA", "color":"lime", "perpx":"0.003425", "perpy":"0.999994"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.010501,33.774652]
+      },
+      "properties": {"street":"KNOTT 1", "color":"lime", "perpx":"0.127522", "perpy":"0.991836"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.006721,33.774166]
+      },
+      "properties": {"street":"GARDEN GROV", "color":"lime", "perpx":"0.421869", "perpy":"0.906657"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004084,33.772939]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"0.421869", "perpy":"0.906657"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 3.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.994525,33.771348]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.061692", "perpy":"0.998095"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 3.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.989817,33.771057]
+      },
+      "properties": {"street":"BEACH2", "color":"lime", "perpx":"0.055628", "perpy":"0.998452"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984576,33.770765]
+      },
+      "properties": {"street":"WILSON", "color":"lime", "perpx":"0.055628", "perpy":"0.998452"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.979437,33.769612]
+      },
+      "properties": {"street":"NEWLAND", "color":"lime", "perpx":"0.582785", "perpy":"0.812626"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976011,33.767155]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"0.196678", "perpy":"0.980468"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 4.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.96964,33.765877]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"lime", "perpx":"0.196678", "perpy":"0.980468"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 5.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.959407,33.765954]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"-0.004759", "perpy":"0.999989"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 5.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.955835,33.765971]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"lime", "perpx":"-0.006239", "perpy":"0.999981"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.951027,33.766001]
+      },
+      "properties": {"street":"HOPE", "color":"lime", "perpx":"-0.006239", "perpy":"0.999981"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.946098,33.76605]
+      },
+      "properties": {"street":"WARD", "color":"lime", "perpx":"-0.006293", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94149,33.766079]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"-0.011359", "perpy":"0.999935"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.935768,33.766144]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"-0.011359", "perpy":"0.999935"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929696,33.766181]
+      },
+      "properties": {"street":"NEWHOPE", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929523,33.766182]
+      },
+      "properties": {"street":"NEWHOPE CENSUS", "color":"lime", "perpx":"-0.00578", "perpy":"0.999983"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.922445,33.767174]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.323962", "perpy":"0.94607"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 7.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.919037,33.768341]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"-0.337825", "perpy":"0.941209"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 8.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.91315,33.770454]
+      },
+      "properties": {"street":"PEARCE", "color":"lime", "perpx":"-0.337825", "perpy":"0.941209"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 8.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907475,33.773193]
+      },
+      "properties": {"street":"GARDEN G1", "color":"lime", "perpx":"-0.456614", "perpy":"0.889665"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902076,33.775964]
+      },
+      "properties": {"street":"GARDEN G2", "color":"lime", "perpx":"-0.456614", "perpy":"0.889665"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895924,33.77865]
+      },
+      "properties": {"street":"LEWIS", "color":"lime", "perpx":"-0.068365", "perpy":"0.99766"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889576,33.779085]
+      },
+      "properties": {"street":"CITY DRIVE", "color":"lime", "perpx":"0.007955", "perpy":"0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "22 W 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.886182,33.779058]
+      },
+      "properties": {"street":"HESPERIAN", "color":"lime", "perpx":"0.007955", "perpy":"0.999968"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833583,33.737088]
+      },
+      "properties": {"street":"N OF 5 OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833528,33.734423]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"0.999787", "perpy":"0.020634"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83368,33.739982]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.999923", "perpy":"0.012439"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833698,33.741429]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0.97478", "perpy":"-0.22317"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 11.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831768,33.749859]
+      },
+      "properties": {"street":"FOURTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 11.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830994,33.759105]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830905,33.767287]
+      },
+      "properties": {"street":"SANTA CLARA", "color":"lime", "perpx":"0.999999", "perpy":"0.001196"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830834,33.762898]
+      },
+      "properties": {"street":"17TH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830912,33.773139]
+      },
+      "properties": {"street":"FAIRHAVEN", "color":"lime", "perpx":"0.999999", "perpy":"0.001196"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830884,33.790409]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831045,33.797732]
+      },
+      "properties": {"street":"Walnut", "color":"lime", "perpx":"0.994412", "perpy":"0.105571"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831355,33.800652]
+      },
+      "properties": {"street":"COLLINS", "color":"lime", "perpx":"0.994412", "perpy":"0.105571"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831849,33.809608]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0.999767", "perpy":"0.021575"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831905,33.812203]
+      },
+      "properties": {"street":"KATELLA  2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831919,33.817981]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83192,33.823807]
+      },
+      "properties": {"street":"MEATS", "color":"lime", "perpx":"1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 17.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.834992,33.837111]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 2.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.909275,33.650995]
+      },
+      "properties": {"street":"VICTORIA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 2.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.908497,33.651784]
+      },
+      "properties": {"street":"VICTORIA1", "color":"lime", "perpx":"0.712053", "perpy":"-0.702126"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905264,33.655235]
+      },
+      "properties": {"street":"VICTORIA2", "color":"lime", "perpx":"0.7454", "perpy":"-0.666618"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.091",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905044,33.655481]
+      },
+      "properties": {"street":"VICTORIA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899494,33.661052]
+      },
+      "properties": {"street":"FAIR 1", "color":"lime", "perpx":"0.711701", "perpy":"-0.702482"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 3.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895303,33.665298]
+      },
+      "properties": {"street":"FAIR 2", "color":"lime", "perpx":"0.711701", "perpy":"-0.702482"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 4.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888101,33.671785]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"0.612685", "perpy":"-0.790327"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.886575,33.672968]
+      },
+      "properties": {"street":"BAKER 1", "color":"lime", "perpx":"0.649874", "perpy":"-0.760042"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882208,33.676702]
+      },
+      "properties": {"street":"BAKER 2", "color":"lime", "perpx":"0.649874", "perpy":"-0.760042"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877327,33.681801]
+      },
+      "properties": {"street":"PAULARINO 1", "color":"lime", "perpx":"0.73612", "perpy":"-0.676851"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874255,33.685142]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"0.725068", "perpy":"-0.688678"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 5.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873498,33.685939]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"0.719864", "perpy":"-0.694115"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870964,33.688567]
+      },
+      "properties": {"street":"AIRPORT AT 55 NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868181,33.691451]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"0.719595", "perpy":"-0.694394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 6.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861831,33.698026]
+      },
+      "properties": {"street":"MACARTHU1", "color":"lime", "perpx":"0.740557", "perpy":"-0.671994"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860155,33.699873]
+      },
+      "properties": {"street":"MACARTHU2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8595,33.70056]
+      },
+      "properties": {"street":"MACARTHU2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 7.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85183,33.708364]
+      },
+      "properties": {"street":"DYER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 8.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.848847,33.711314]
+      },
+      "properties": {"street":"DYER 2", "color":"lime", "perpx":"0.71172", "perpy":"-0.702463"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843611,33.716619]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"0.71172", "perpy":"-0.702463"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 9.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83503,33.726049]
+      },
+      "properties": {"street":"EDINGER 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 N 9.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833555,33.732101]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"0.999932", "perpy":"-0.011627"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83402,33.734422]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"-0.999946", "perpy":"-0.010425"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833908,33.739982]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.999756", "perpy":"0.022109"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833876,33.741429]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.987616", "perpy":"0.156888"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83311,33.746251]
+      },
+      "properties": {"street":"FOURTH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 11.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831392,33.75738]
+      },
+      "properties": {"street":"17TH 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 12.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83108,33.767289]
+      },
+      "properties": {"street":"SANTA CLARA", "color":"lime", "perpx":"-0.999999", "perpy":"-0.001368"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831088,33.773138]
+      },
+      "properties": {"street":"FAIRHAVEN", "color":"lime", "perpx":"-0.999999", "perpy":"-0.001368"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 13.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831128,33.784755]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 13.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831081,33.788212]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831223,33.797729]
+      },
+      "properties": {"street":"Walnut", "color":"lime", "perpx":"-0.994624", "perpy":"-0.10355"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831527,33.800649]
+      },
+      "properties": {"street":"COLLINS", "color":"lime", "perpx":"-0.994624", "perpy":"-0.10355"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 15.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832031,33.809605]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"-0.999968", "perpy":"-0.008001"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 15.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832098,33.817979]
+      },
+      "properties": {"street":"TAFT", "color":"lime", "perpx":"-1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832097,33.823807]
+      },
+      "properties": {"street":"MEATS", "color":"lime", "perpx":"-1.0", "perpy":"0.000172"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 16.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.834539,33.830875]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 17.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.835146,33.837162]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"-0.995372", "perpy":"-0.096102"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 2.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.908673,33.651901]
+      },
+      "properties": {"street":"VICTORIA1", "color":"lime", "perpx":"-0.732846", "perpy":"0.680394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905456,33.655366]
+      },
+      "properties": {"street":"VICTORIA2", "color":"lime", "perpx":"-0.732846", "perpy":"0.680394"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899681,33.661183]
+      },
+      "properties": {"street":"FAIR 1", "color":"lime", "perpx":"-0.712081", "perpy":"0.702098"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895602,33.66532]
+      },
+      "properties": {"street":"FAIR 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 3.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895493,33.665433]
+      },
+      "properties": {"street":"FAIR 2", "color":"lime", "perpx":"-0.719731", "perpy":"0.694253"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 4.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888309,33.671928]
+      },
+      "properties": {"street":"BRISTOL", "color":"lime", "perpx":"-0.612257", "perpy":"0.790659"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88678,33.673112]
+      },
+      "properties": {"street":"BAKER 1", "color":"lime", "perpx":"-0.639107", "perpy":"0.769118"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882355,33.676789]
+      },
+      "properties": {"street":"BAKER 2", "color":"lime", "perpx":"-0.639107", "perpy":"0.769118"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87755,33.681935]
+      },
+      "properties": {"street":"PAULARINO 1", "color":"lime", "perpx":"-0.722093", "perpy":"0.691796"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874399,33.685224]
+      },
+      "properties": {"street":"N405 to S55", "color":"lime", "perpx":"-0.719715", "perpy":"0.69427"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 5.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873635,33.686016]
+      },
+      "properties": {"street":"PAULARINO 2", "color":"lime", "perpx":"-0.725185", "perpy":"0.688554"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.868353,33.691579]
+      },
+      "properties": {"street":"MAIN", "color":"lime", "perpx":"-0.725185", "perpy":"0.688554"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 6.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862677,33.697495]
+      },
+      "properties": {"street":"MACARTHU1", "color":"lime", "perpx":"-0.710326", "perpy":"0.703873"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 7.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861041,33.699146]
+      },
+      "properties": {"street":"MACARTHU2", "color":"lime", "perpx":"-0.710326", "perpy":"0.703873"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 7.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.854598,33.705879]
+      },
+      "properties": {"street":"DYER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 8.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.849099,33.711451]
+      },
+      "properties": {"street":"DYER 2", "color":"lime", "perpx":"-0.708914", "perpy":"0.705295"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 8.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843837,33.71674]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"-0.711107", "perpy":"0.703084"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 9.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837265,33.723387]
+      },
+      "properties": {"street":"EDINGER 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "55 S 9.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833996,33.73212]
+      },
+      "properties": {"street":"MCFADDEN", "color":"lime", "perpx":"-0.999946", "perpy":"-0.010425"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 10.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873418,33.779069]
+      },
+      "properties": {"street":"RTE 22 & 5 NB", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879424,33.78435]
+      },
+      "properties": {"street":"AT CHAPMAN OFF", "color":"lime", "perpx":"0.991811", "perpy":"0.127713"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879769,33.787426]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879753,33.786905]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.999529", "perpy":"0.030696"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879807,33.788781]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879799,33.790105]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878448,33.794121]
+      },
+      "properties": {"street":"ORANGEWO1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 11.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877848,33.795482]
+      },
+      "properties": {"street":"ORANGEWO2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880058,33.805531]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0.984745", "perpy":"-0.174004"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879559,33.808355]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879353,33.808904]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878472,33.811084]
+      },
+      "properties": {"street":"DOUGLASS", "color":"lime", "perpx":"0.927151", "perpy":"-0.374688"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876479,33.816586]
+      },
+      "properties": {"street":"BALL 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876254,33.81772]
+      },
+      "properties": {"street":"BALL 1", "color":"lime", "perpx":"0.980879", "perpy":"-0.194619"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87605,33.819435]
+      },
+      "properties": {"street":"BALL 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.56",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875999,33.820297]
+      },
+      "properties": {"street":"BALL 2", "color":"lime", "perpx":"0.999993", "perpy":"-0.00368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875981,33.825188]
+      },
+      "properties": {"street":"Wagner", "color":"lime", "perpx":"0.999993", "perpy":"-0.00368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875965,33.83238]
+      },
+      "properties": {"street":"South", "color":"lime", "perpx":"0.999995", "perpy":"-0.003244"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87595,33.837126]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"lime", "perpx":"0.999982", "perpy":"-0.00608"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875951,33.836695]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 14.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875935,33.839593]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"0.999936", "perpy":"-0.011332"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875902,33.842505]
+      },
+      "properties": {"street":"UNDERHILL", "color":"lime", "perpx":"0.999936", "perpy":"-0.011332"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875931,33.846873]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.996618", "perpy":"-0.082174"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875572,33.851227]
+      },
+      "properties": {"street":"N of 91", "color":"lime", "perpx":"0.996618", "perpy":"-0.082174"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 16.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875678,33.857169]
+      },
+      "properties": {"street":"LA JOLLA", "color":"lime", "perpx":"0.947346", "perpy":"0.320213"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 16.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877557,33.862728]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"lime", "perpx":"0.95802", "perpy":"0.286703"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879677,33.869812]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"0.95802", "perpy":"0.286703"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880294,33.879813]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 17.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88031,33.880532]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880484,33.888435]
+      },
+      "properties": {"street":"YORBA LI1", "color":"lime", "perpx":"0.999634", "perpy":"0.027056"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880559,33.891206]
+      },
+      "properties": {"street":"YORBA LI2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880561,33.891352]
+      },
+      "properties": {"street":"YORBA LI2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 18.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880822,33.896472]
+      },
+      "properties": {"street":"Bastanchury", "color":"lime", "perpx":"0.997832", "perpy":"0.065812"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 19.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881063,33.900126]
+      },
+      "properties": {"street":"ROLLING  HILLS", "color":"lime", "perpx":"0.997832", "perpy":"0.065812"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883309,33.909962]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.998732", "perpy":"-0.050333"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 20.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882887,33.913565]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"0.93136", "perpy":"-0.364101"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 20",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883163,33.912859]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879984,33.928813]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 21.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879881,33.929701]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 N 22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875138,33.940872]
+      },
+      "properties": {"street":"TONNER", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 10.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874735,33.777415]
+      },
+      "properties": {"street":"RTE 22 & 5", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880197,33.783256]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.99935", "perpy":"0.036044"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880073,33.786694]
+      },
+      "properties": {"street":"AT CHAPMAN OFF", "color":"lime", "perpx":"-0.996864", "perpy":"0.079133"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 11.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879621,33.792388]
+      },
+      "properties": {"street":"ORANGEWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88008,33.804096]
+      },
+      "properties": {"street":"KATELLA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880243,33.806677]
+      },
+      "properties": {"street":"KATELLA 2", "color":"lime", "perpx":"-0.945662", "perpy":"0.325152"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878726,33.811089]
+      },
+      "properties": {"street":"DOUGLASS", "color":"lime", "perpx":"-0.945662", "perpy":"0.325152"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876814,33.816163]
+      },
+      "properties": {"street":"BALL 1", "color":"lime", "perpx":"-0.983876", "perpy":"0.178852"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876349,33.818721]
+      },
+      "properties": {"street":"BALL 2", "color":"lime", "perpx":"-0.999897", "perpy":"0.01437"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876256,33.825192]
+      },
+      "properties": {"street":"Wagner", "color":"lime", "perpx":"-0.999897", "perpy":"0.01437"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876232,33.832386]
+      },
+      "properties": {"street":"South", "color":"lime", "perpx":"-0.999935", "perpy":"0.011398"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876191,33.835983]
+      },
+      "properties": {"street":"LINCOLN 1", "color":"lime", "perpx":"-0.999998", "perpy":"0.001928"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 14.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876186,33.838577]
+      },
+      "properties": {"street":"LINCOLN 2", "color":"lime", "perpx":"-0.999986", "perpy":"-0.005368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876207,33.842489]
+      },
+      "properties": {"street":"UNDERHILL", "color":"lime", "perpx":"-0.999986", "perpy":"-0.005368"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876202,33.846832]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"-0.996812", "perpy":"0.079791"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875855,33.851167]
+      },
+      "properties": {"street":"N of 91", "color":"lime", "perpx":"-0.996812", "perpy":"0.079791"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 16.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876106,33.857092]
+      },
+      "properties": {"street":"LA JOLLA", "color":"lime", "perpx":"-0.960098", "perpy":"-0.279663"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 16.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87757,33.862118]
+      },
+      "properties": {"street":"ORANGETHOR", "color":"lime", "perpx":"-0.960098", "perpy":"-0.279663"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880462,33.872312]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879875,33.869773]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"-0.974301", "perpy":"-0.225252"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 17.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880503,33.87562]
+      },
+      "properties": {"street":"NUTWOOD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880716,33.886705]
+      },
+      "properties": {"street":"YORBA LI1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880785,33.889447]
+      },
+      "properties": {"street":"YORBA LI2", "color":"lime", "perpx":"-0.999684", "perpy":"-0.025156"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 18.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881094,33.896472]
+      },
+      "properties": {"street":"Bastanchury", "color":"lime", "perpx":"-0.99801", "perpy":"-0.063058"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881325,33.900128]
+      },
+      "properties": {"street":"ROLLING HILLS", "color":"lime", "perpx":"-0.99801", "perpy":"-0.063058"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883224,33.90899]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"-0.986464", "perpy":"-0.163975"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 19.94",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883726,33.91201]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.953779", "perpy":"0.30051"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 20.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880298,33.92289]
+      },
+      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 22.06",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.874675,33.94149]
+      },
+      "properties": {"street":"TONNER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "57 S 22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875322,33.940956]
+      },
+      "properties": {"street":"TONNER", "color":"lime", "perpx":"-0.636543", "perpy":"0.771242"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 10.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674552,33.545677]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"0.971174", "perpy":"0.238373"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675644,33.550126]
+      },
+      "properties": {"street":"SORRENTO", "color":"lime", "perpx":"0.940629", "perpy":"0.339435"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.677239,33.554546]
+      },
+      "properties": {"street":"CABOT", "color":"lime", "perpx":"0.940629", "perpy":"0.339435"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683209,33.557803]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"0.198325", "perpy":"0.980136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 11.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68611,33.55839]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"0.198325", "perpy":"0.980136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690855,33.559873]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"0.471098", "perpy":"0.882081"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.693351,33.562029]
+      },
+      "properties": {"street":"ROCKRIDGE", "color":"lime", "perpx":"0.802439", "perpy":"0.596734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689417,33.559105]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"0.471098", "perpy":"0.882081"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695254,33.564588]
+      },
+      "properties": {"street":"WESTRIDGE", "color":"lime", "perpx":"0.701895", "perpy":"0.712281"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 12.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.698683,33.567967]
+      },
+      "properties": {"street":"MOULTON", "color":"lime", "perpx":"0.701895", "perpy":"0.712281"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.702528,33.571095]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"0.63793", "perpy":"0.770095"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.703268,33.571708]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"0.577247", "perpy":"0.816569"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705711,33.573435]
+      },
+      "properties": {"street":"LA PAZ  1", "color":"lime", "perpx":"0.577247", "perpy":"0.816569"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.70902,33.574966]
+      },
+      "properties": {"street":"LA PAZ 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.710558,33.575554]
+      },
+      "properties": {"street":"ALICIA", "color":"lime", "perpx":"0.357106", "perpy":"0.934064"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713695,33.576682]
+      },
+      "properties": {"street":"ALICIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 13.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714614,33.577091]
+      },
+      "properties": {"street":"ALISO 1", "color":"lime", "perpx":"0.4066", "perpy":"0.913606"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720958,33.580619]
+      },
+      "properties": {"street":"ALISO 3", "color":"lime", "perpx":"0.580052", "perpy":"0.81458"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724921,33.583441]
+      },
+      "properties": {"street":"ALISO 4", "color":"lime", "perpx":"0.578216", "perpy":"0.815884"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 14.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72822,33.585779]
+      },
+      "properties": {"street":"LAGUNA HILLS", "color":"lime", "perpx":"0.329384", "perpy":"0.944196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733096,33.58748]
+      },
+      "properties": {"street":"GLENWOOD 1", "color":"lime", "perpx":"0.329384", "perpy":"0.944196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740639,33.588223]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.158104", "perpy":"0.987422"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744024,33.588765]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"0.32185", "perpy":"0.946791"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 15.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744983,33.589091]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"0.321018", "perpy":"0.947073"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749665,33.590678]
+      },
+      "properties": {"street":"EL TORO 3", "color":"lime", "perpx":"0.321018", "perpy":"0.947073"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755573,33.591624]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"0.151183", "perpy":"0.988506"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755743,33.59165]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"0.151183", "perpy":"0.988506"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 16.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76171,33.593909]
+      },
+      "properties": {"street":"RTE 133 3", "color":"lime", "perpx":"0.57864", "perpy":"0.815583"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764653,33.595997]
+      },
+      "properties": {"street":"RTE 133 4", "color":"lime", "perpx":"0.57864", "perpy":"0.815583"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770961,33.598966]
+      },
+      "properties": {"street":"S OF PM 18", "color":"lime", "perpx":"0.126344", "perpy":"0.991986"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 17.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.776669,33.599693]
+      },
+      "properties": {"street":"AT PM 18", "color":"lime", "perpx":"0.126344", "perpy":"0.991986"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782151,33.601969]
+      },
+      "properties": {"street":"WILDLIFE", "color":"lime", "perpx":"0.16463", "perpy":"0.986355"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 18.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.786992,33.602777]
+      },
+      "properties": {"street":"CATALINA 1", "color":"lime", "perpx":"0.16463", "perpy":"0.986355"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 19.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801253,33.607825]
+      },
+      "properties": {"street":"CATALINA 2", "color":"lime", "perpx":"0.300702", "perpy":"0.953718"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806039,33.609334]
+      },
+      "properties": {"street":"CATALINA 3", "color":"lime", "perpx":"0.300702", "perpy":"0.953718"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812765,33.610446]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.469891", "perpy":"0.882724"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.815658,33.611986]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"0.469891", "perpy":"0.882724"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.817786,33.614224]
+      },
+      "properties": {"street":"SAND CANYON 3", "color":"lime", "perpx":"0.871209", "perpy":"0.490912"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 20.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.819255,33.616831]
+      },
+      "properties": {"street":"SAND CANYON 4", "color":"lime", "perpx":"0.796595", "perpy":"0.604514"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.822056,33.620522]
+      },
+      "properties": {"street":"SAND CANYON 5", "color":"lime", "perpx":"0.796595", "perpy":"0.604514"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828171,33.623392]
+      },
+      "properties": {"street":"NEWPORT COAST 1", "color":"lime", "perpx":"0.622803", "perpy":"0.782378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 21.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831907,33.626366]
+      },
+      "properties": {"street":"NEWPORT COAST 2", "color":"lime", "perpx":"0.622803", "perpy":"0.782378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837358,33.629759]
+      },
+      "properties": {"street":"S OF BONITA", "color":"lime", "perpx":"0.284483", "perpy":"0.958681"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842241,33.631208]
+      },
+      "properties": {"street":"BONITA 1", "color":"lime", "perpx":"0.292278", "perpy":"0.956333"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 22.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847113,33.632697]
+      },
+      "properties": {"street":"BONITA 2", "color":"lime", "perpx":"0.292278", "perpy":"0.956333"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.852976,33.635664]
+      },
+      "properties": {"street":"N OF BONITA", "color":"lime", "perpx":"0.589389", "perpy":"0.80785"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856881,33.638513]
+      },
+      "properties": {"street":"BISON 1", "color":"lime", "perpx":"0.800308", "perpy":"0.599589"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.858984,33.64132]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"0.934342", "perpy":"0.356378"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 23.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859875,33.643656]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"0.976131", "perpy":"0.217185"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860508,33.646501]
+      },
+      "properties": {"street":"MACARTHUR 2", "color":"lime", "perpx":"0.976131", "perpy":"0.217185"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8614,33.650823]
+      },
+      "properties": {"street":"UNIVERSITY SOUT", "color":"lime", "perpx":"0.853282", "perpy":"0.52145"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.863578,33.654387]
+      },
+      "properties": {"street":"MACARTHUR BLVD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864027,33.654806]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"lime", "perpx":"0.635445", "perpy":"0.772146"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 24.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86475,33.655401]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"0.635445", "perpy":"0.772146"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 25.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870921,33.659804]
+      },
+      "properties": {"street":"ORCHID", "color":"lime", "perpx":"0.565437", "perpy":"0.824792"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 25.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87634,33.663519]
+      },
+      "properties": {"street":"CAMPUS", "color":"lime", "perpx":"0.565437", "perpy":"0.824792"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.883175,33.67012]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"0.756677", "perpy":"0.653789"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887299,33.674893]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"0.76071", "perpy":"0.649092"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 26.791",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.888212,33.675963]
+      },
+      "properties": {"street":"N55 TO N73 On", "color":"lime", "perpx":"0.76071", "perpy":"0.649092"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892318,33.680652]
+      },
+      "properties": {"street":"BEAR 1", "color":"lime", "perpx":"0.737613", "perpy":"0.675223"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894515,33.683052]
+      },
+      "properties": {"street":"BEAR 2", "color":"lime", "perpx":"0.737613", "perpy":"0.675223"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 N 27.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897754,33.686594]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 10.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674915,33.545627]
+      },
+      "properties": {"street":"CAPISTRANO", "color":"lime", "perpx":"-0.969543", "perpy":"-0.244923"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676025,33.550021]
+      },
+      "properties": {"street":"SORRENTO", "color":"lime", "perpx":"-0.942619", "perpy":"-0.333871"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.677553,33.554335]
+      },
+      "properties": {"street":"CABOT", "color":"lime", "perpx":"-0.942619", "perpy":"-0.333871"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683347,33.557463]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"-0.204557", "perpy":"-0.978855"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 11.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.686199,33.558059]
+      },
+      "properties": {"street":"GREENFIELD 1", "color":"lime", "perpx":"-0.204557", "perpy":"-0.978855"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.69095,33.559525]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"-0.452101", "perpy":"-0.891967"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.693516,33.56161]
+      },
+      "properties": {"street":"ROCKRIDGE", "color":"lime", "perpx":"-0.799245", "perpy":"-0.601005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689492,33.558786]
+      },
+      "properties": {"street":"GREENFIELD 2", "color":"lime", "perpx":"-0.452101", "perpy":"-0.891967"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695429,33.564154]
+      },
+      "properties": {"street":"WESTRIDGE", "color":"lime", "perpx":"-0.799245", "perpy":"-0.601005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.83",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.698836,33.567532]
+      },
+      "properties": {"street":"MOULTON", "color":"lime", "perpx":"-0.62128", "perpy":"-0.783589"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 12.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699705,33.568221]
+      },
+      "properties": {"street":"MOULTON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.702926,33.570836]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"-0.631459", "perpy":"-0.775409"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.703734,33.571494]
+      },
+      "properties": {"street":"PACIFIC PARK", "color":"lime", "perpx":"-0.587164", "perpy":"-0.809468"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706028,33.573158]
+      },
+      "properties": {"street":"LA PAZ  1", "color":"lime", "perpx":"-0.587164", "perpy":"-0.809468"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71075,33.575244]
+      },
+      "properties": {"street":"ALICIA", "color":"lime", "perpx":"-0.354891", "perpy":"-0.934908"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 13.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714799,33.576781]
+      },
+      "properties": {"street":"ALISO 1", "color":"lime", "perpx":"-0.354891", "perpy":"-0.934908"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721195,33.580299]
+      },
+      "properties": {"street":"ALISO 3", "color":"lime", "perpx":"-0.578216", "perpy":"-0.815884"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725184,33.583126]
+      },
+      "properties": {"street":"ALISO 4", "color":"lime", "perpx":"-0.56863", "perpy":"-0.822593"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 14.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728504,33.585421]
+      },
+      "properties": {"street":"LAGUNA HILLS", "color":"lime", "perpx":"-0.332032", "perpy":"-0.943268"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733325,33.587118]
+      },
+      "properties": {"street":"GLENWOOD 1", "color":"lime", "perpx":"-0.332032", "perpy":"-0.943268"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740964,33.587924]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.173867", "perpy":"-0.984769"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744385,33.588528]
+      },
+      "properties": {"street":"EL TORO 1", "color":"lime", "perpx":"-0.317685", "perpy":"-0.948196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 15.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745361,33.588855]
+      },
+      "properties": {"street":"EL TORO 2", "color":"lime", "perpx":"-0.317685", "perpy":"-0.948196"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.749258,33.590166]
+      },
+      "properties": {"street":"EL TORO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.750156,33.590342]
+      },
+      "properties": {"street":"EL TORO 3", "color":"lime", "perpx":"-0.192332", "perpy":"-0.98133"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755882,33.59118]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"-0.141421", "perpy":"-0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756043,33.591203]
+      },
+      "properties": {"street":"EL TORO 4", "color":"lime", "perpx":"-0.141421", "perpy":"-0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 16.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761968,33.593514]
+      },
+      "properties": {"street":"RTE 133 3", "color":"lime", "perpx":"-0.569484", "perpy":"-0.822002"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764927,33.595564]
+      },
+      "properties": {"street":"RTE 133 4", "color":"lime", "perpx":"-0.569484", "perpy":"-0.822002"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.771217,33.59849]
+      },
+      "properties": {"street":"S OF PM 18", "color":"lime", "perpx":"-0.12791", "perpy":"-0.991786"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 17.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.776885,33.599221]
+      },
+      "properties": {"street":"AT PM 18", "color":"lime", "perpx":"-0.12791", "perpy":"-0.991786"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.78232,33.601523]
+      },
+      "properties": {"street":"WILDLIFE", "color":"lime", "perpx":"-0.168311", "perpy":"-0.985734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 18.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.787181,33.602353]
+      },
+      "properties": {"street":"CATALINA 1", "color":"lime", "perpx":"-0.168311", "perpy":"-0.985734"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 19.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.801595,33.607237]
+      },
+      "properties": {"street":"CATALINA 2", "color":"lime", "perpx":"-0.309175", "perpy":"-0.951005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 19.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806455,33.608817]
+      },
+      "properties": {"street":"CATALINA 3", "color":"lime", "perpx":"-0.309175", "perpy":"-0.951005"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813251,33.610123]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"-0.472863", "perpy":"-0.881136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816184,33.611697]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"lime", "perpx":"-0.472863", "perpy":"-0.881136"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8183,33.614005]
+      },
+      "properties": {"street":"SAND CANYON 3", "color":"lime", "perpx":"-0.879015", "perpy":"-0.476793"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 20.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.819745,33.616669]
+      },
+      "properties": {"street":"SAND CANYON 4", "color":"lime", "perpx":"-0.795225", "perpy":"-0.606314"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.822441,33.620205]
+      },
+      "properties": {"street":"SAND CANYON 5", "color":"lime", "perpx":"-0.795225", "perpy":"-0.606314"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828338,33.623005]
+      },
+      "properties": {"street":"NEWPORT COAST 1", "color":"lime", "perpx":"-0.61327", "perpy":"-0.789873"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 21.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832171,33.625981]
+      },
+      "properties": {"street":"NEWPORT COAST 2", "color":"lime", "perpx":"-0.61327", "perpy":"-0.789873"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.837662,33.629475]
+      },
+      "properties": {"street":"S OF BONITA", "color":"lime", "perpx":"-0.283058", "perpy":"-0.959103"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842609,33.630935]
+      },
+      "properties": {"street":"BONITA 1", "color":"lime", "perpx":"-0.294979", "perpy":"-0.955504"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 22.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847497,33.632444]
+      },
+      "properties": {"street":"BONITA 2", "color":"lime", "perpx":"-0.294979", "perpy":"-0.955504"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.853396,33.635399]
+      },
+      "properties": {"street":"N OF BONITA", "color":"lime", "perpx":"-0.600727", "perpy":"-0.799454"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.857266,33.638307]
+      },
+      "properties": {"street":"BISON 1", "color":"lime", "perpx":"-0.780647", "perpy":"-0.624972"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859193,33.640714]
+      },
+      "properties": {"street":"MACARTHUR 1", "color":"lime", "perpx":"-0.924825", "perpy":"-0.380393"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 23.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86032,33.643454]
+      },
+      "properties": {"street":"BISON 2", "color":"lime", "perpx":"-0.974437", "perpy":"-0.22466"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860978,33.646308]
+      },
+      "properties": {"street":"MACARTHUR 2", "color":"lime", "perpx":"-0.977116", "perpy":"-0.212707"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.861933,33.650695]
+      },
+      "properties": {"street":"UNIVERSITY SOUT", "color":"lime", "perpx":"-0.977116", "perpy":"-0.212707"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864335,33.65462]
+      },
+      "properties": {"street":"JAMBOREE 1", "color":"lime", "perpx":"-0.633861", "perpy":"-0.773447"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 24.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865011,33.655174]
+      },
+      "properties": {"street":"JAMBOREE 2", "color":"lime", "perpx":"-0.633861", "perpy":"-0.773447"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 25.25",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871215,33.659515]
+      },
+      "properties": {"street":"ORCHID", "color":"lime", "perpx":"-0.566542", "perpy":"-0.824033"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 25.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876633,33.66324]
+      },
+      "properties": {"street":"CAMPUS", "color":"lime", "perpx":"-0.566542", "perpy":"-0.824033"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88342,33.669908]
+      },
+      "properties": {"street":"S OF 55", "color":"lime", "perpx":"-0.750726", "perpy":"-0.660614"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887796,33.674875]
+      },
+      "properties": {"street":"S73 TO S55", "color":"lime", "perpx":"-0.742508", "perpy":"-0.669837"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 26.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887584,33.67464]
+      },
+      "properties": {"street":"N OF 55", "color":"lime", "perpx":"-0.742508", "perpy":"-0.669837"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892743,33.68058]
+      },
+      "properties": {"street":"BEAR 1", "color":"lime", "perpx":"-0.749261", "perpy":"-0.662275"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.894753,33.682854]
+      },
+      "properties": {"street":"BEAR 2", "color":"lime", "perpx":"-0.749261", "perpy":"-0.662275"}
+  },
+  {
+  "type": "Feature",
+  "id": "73 S 27.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.898045,33.686456]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 0.241",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654478,33.503721]
+      },
+      "properties": {"street":"Rancho Viejo", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647923,33.508745]
+      },
+      "properties": {"street":"74 EB SUNDANCE DRIVE", "color":"lime", "perpx":"0.490721", "perpy":"-0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 10.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.544319,33.567766]
+      },
+      "properties": {"street":"LOCATION 25", "color":"lime", "perpx":"0.920786", "perpy":"-0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.644505,33.51067]
+      },
+      "properties": {"street":"CALLE ENTRADERO", "color":"lime", "perpx":"0.490721", "perpy":"-0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.277",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640482,33.512477]
+      },
+      "properties": {"street":"Via Cordova", "color":"lime", "perpx":"0.250148", "perpy":"-0.968208"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.639615,33.512701]
+      },
+      "properties": {"street":"LOCATION 14", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 1.503",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.63683,33.513581]
+      },
+      "properties": {"street":"74 WB STRAWBERRY LN", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 3.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.60673,33.522498]
+      },
+      "properties": {"street":"LOCATION 15", "color":"lime", "perpx":"-0.434313", "perpy":"-0.900762"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 3.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598125,33.518349]
+      },
+      "properties": {"street":"LOCATION 16", "color":"lime", "perpx":"-0.277019", "perpy":"-0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.585038,33.514576]
+      },
+      "properties": {"street":"LOCATION 17", "color":"lime", "perpx":"-0.277019", "perpy":"-0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 5.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.565581,33.515135]
+      },
+      "properties": {"street":"LOCATION 18", "color":"lime", "perpx":"0.66599", "perpy":"-0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.560917,33.519299]
+      },
+      "properties": {"street":"LOCATION 19", "color":"lime", "perpx":"0.66599", "perpy":"-0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 6.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.55384,33.525739]
+      },
+      "properties": {"street":"LOCATION 20", "color":"lime", "perpx":"0.918082", "perpy":"-0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 7.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.551809,33.530443]
+      },
+      "properties": {"street":"LOCATION 21", "color":"lime", "perpx":"0.918082", "perpy":"-0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548668,33.540039]
+      },
+      "properties": {"street":"LOCATION 22", "color":"lime", "perpx":"0.996899", "perpy":"0.078698"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.54873,33.539611]
+      },
+      "properties": {"street":"NICHOLS INSTITUTE", "color":"lime", "perpx":"0.98967", "perpy":"-0.143363"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 8.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.549113,33.545676]
+      },
+      "properties": {"street":"LOCATION 23", "color":"lime", "perpx":"0.996899", "perpy":"0.078698"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 E 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.546105,33.56355]
+      },
+      "properties": {"street":"LOCATION 24", "color":"lime", "perpx":"0.920786", "perpy":"-0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 0.241",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654477,33.503721]
+      },
+      "properties": {"street":"Rancho Viejo", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647923,33.508745]
+      },
+      "properties": {"street":"74 EB SUNDANCE DRIVE", "color":"lime", "perpx":"-0.490721", "perpy":"0.871317"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 10.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.544319,33.567766]
+      },
+      "properties": {"street":"LOCATION 25", "color":"lime", "perpx":"-0.920786", "perpy":"0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 1.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.644505,33.51067]
+      },
+      "properties": {"street":"CALLE ENTRADERO", "color":"lime", "perpx":"-0.409922", "perpy":"0.912121"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 1.277",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.640482,33.512478]
+      },
+      "properties": {"street":"Via Cordova", "color":"lime", "perpx":"-0.409922", "perpy":"0.912121"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 3.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606729,33.522498]
+      },
+      "properties": {"street":"LOCATION 15", "color":"lime", "perpx":"0.434354", "perpy":"0.900742"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 3.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598125,33.518349]
+      },
+      "properties": {"street":"LOCATION 16", "color":"lime", "perpx":"0.277019", "perpy":"0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.585038,33.514576]
+      },
+      "properties": {"street":"LOCATION 17", "color":"lime", "perpx":"0.277019", "perpy":"0.960865"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 5.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.565581,33.515135]
+      },
+      "properties": {"street":"74 EB GIBBY ROAD", "color":"lime", "perpx":"-0.66599", "perpy":"0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 6.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.560917,33.519299]
+      },
+      "properties": {"street":"LOCATION 19", "color":"lime", "perpx":"-0.66599", "perpy":"0.74596"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 6.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.55384,33.525739]
+      },
+      "properties": {"street":"LOCATION 20", "color":"lime", "perpx":"-0.918082", "perpy":"0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 7.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.551809,33.530443]
+      },
+      "properties": {"street":"LOCATION 21", "color":"lime", "perpx":"-0.918082", "perpy":"0.396391"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548667,33.540039]
+      },
+      "properties": {"street":"LOCATION 22", "color":"lime", "perpx":"-0.996885", "perpy":"-0.078874"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.548729,33.539611]
+      },
+      "properties": {"street":"NICHOLS INSTITUTE", "color":"lime", "perpx":"-0.98967", "perpy":"0.143363"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 8.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.549113,33.545676]
+      },
+      "properties": {"street":"LOCATION 23", "color":"lime", "perpx":"-0.996885", "perpy":"-0.078874"}
+  },
+  {
+  "type": "Feature",
+  "id": "74 W 9.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.546105,33.56355]
+      },
+      "properties": {"street":"LOCATION 24", "color":"lime", "perpx":"-0.920786", "perpy":"0.390067"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034919,33.85912]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.383803", "perpy":"-0.923415"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.032578,33.858147]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 0.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.967371,33.854376]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.057735", "perpy":"-0.998332"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814377,33.850669]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"lime", "perpx":"0.643266", "perpy":"-0.765643"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814133,33.850874]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"lime", "perpx":"0.613864", "perpy":"-0.789412"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.811988,33.852542]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.80262,33.85429]
+      },
+      "properties": {"street":"W OF IMPERIAL", "color":"lime", "perpx":"0.183427", "perpy":"-0.983033"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.961156,33.853799]
+      },
+      "properties": {"street":"BROOKHURST", "color":"lime", "perpx":"-0.035152", "perpy":"-0.999382"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791386,33.854176]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.098358", "perpy":"-0.995151"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791214,33.854193]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"0.257772", "perpy":"-0.966206"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.787923,33.855071]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"0.431464", "perpy":"-0.90213"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 12.175",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780743,33.858505]
+      },
+      "properties": {"street":"E OF IMPERIAL", "color":"lime", "perpx":"0.43844", "perpy":"-0.898761"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 12.762",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.771912,33.862813]
+      },
+      "properties": {"street":"MIDPOINT", "color":"lime", "perpx":"0.436887", "perpy":"-0.899516"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020532,33.855843]
+      },
+      "properties": {"street":"HOLDER", "color":"lime", "perpx":"-0.030437", "perpy":"-0.999537"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 13.349",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763071,33.867107]
+      },
+      "properties": {"street":"W OF SCALES", "color":"lime", "perpx":"0.436887", "perpy":"-0.899516"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.026091,33.856083]
+      },
+      "properties": {"street":"VALLEY VIEW", "color":"lime", "perpx":"-0.035152", "perpy":"-0.999382"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.95679,33.853902]
+      },
+      "properties": {"street":"BROOKHURST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744781,33.870278]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"lime", "perpx":"0.155667", "perpy":"-0.98781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745295,33.870197]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"lime", "perpx":"0.155667", "perpy":"-0.98781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741504,33.870757]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 14.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74185,33.870709]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 15.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73308,33.869894]
+      },
+      "properties": {"street":"East OF WEIR", "color":"lime", "perpx":"-0.101912", "perpy":"-0.994793"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 15.793",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722179,33.866822]
+      },
+      "properties": {"street":"West OF GYPSUM", "color":"lime", "perpx":"-0.008286", "perpy":"-0.999966"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 16.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71168,33.866735]
+      },
+      "properties": {"street":"GYPSUM 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.708584,33.868014]
+      },
+      "properties": {"street":"GYPSUM 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 17.044",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701858,33.871104]
+      },
+      "properties": {"street":"E OF GYPSUM", "color":"lime", "perpx":"0.417464", "perpy":"-0.908693"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.6845,33.870739]
+      },
+      "properties": {"street":"COAL", "color":"lime", "perpx":"-0.376251", "perpy":"-0.926518"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.011986,33.855903]
+      },
+      "properties": {"street":"KNOTT 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68647,33.871539]
+      },
+      "properties": {"street":"W of COAL", "color":"lime", "perpx":"-0.376251", "perpy":"-0.926518"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 18.435",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.68015,33.869165]
+      },
+      "properties": {"street":"E OF COAL", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 1.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.008847,33.855926]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"-0.02939", "perpy":"-0.999568"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943921,33.854017]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"-0.02939", "perpy":"-0.999568"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938876,33.854029]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.032946", "perpy":"0.999457"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.998577,33.855997]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.008629", "perpy":"-0.999963"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 2.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995448,33.856024]
+      },
+      "properties": {"street":"BEACH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.926206,33.853691]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"0.044312", "perpy":"0.999018"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991253,33.856035]
+      },
+      "properties": {"street":"E OF STANTON", "color":"lime", "perpx":"-0.036012", "perpy":"-0.999351"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984237,33.856265]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"0.044312", "perpy":"0.999018"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 3.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.912688,33.853681]
+      },
+      "properties": {"street":"LEMON", "color":"lime", "perpx":"0.01578", "perpy":"-0.999875"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907999,33.853755]
+      },
+      "properties": {"street":"EAST", "color":"lime", "perpx":"0.004058", "perpy":"-0.999992"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905042,33.853767]
+      },
+      "properties": {"street":"EAST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897738,33.853874]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"0.011516", "perpy":"-0.999934"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897217,33.85388]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"0.011516", "perpy":"-0.999934"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891311,33.854108]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"-0.031896", "perpy":"-0.999491"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887676,33.853992]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.885166,33.853485]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"-0.197993", "perpy":"-0.980203"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876605,33.850044]
+      },
+      "properties": {"street":"W OF 57", "color":"lime", "perpx":"-0.41458", "perpy":"-0.910013"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872812,33.848316]
+      },
+      "properties": {"street":"E OF 57", "color":"lime", "perpx":"-0.41458", "perpy":"-0.910013"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 6.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864299,33.846226]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.171763", "perpy":"-0.985138"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856212,33.847636]
+      },
+      "properties": {"street":"GLASSELL1", "color":"lime", "perpx":"0.242383", "perpy":"-0.970181"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85323,33.848381]
+      },
+      "properties": {"street":"GLASSELL2", "color":"lime", "perpx":"0.242318", "perpy":"-0.970197"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 7.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846936,33.849953]
+      },
+      "properties": {"street":"GROVE", "color":"lime", "perpx":"0.143226", "perpy":"-0.98969"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 E 8.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838568,33.851164]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"0.143226", "perpy":"-0.98969"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.035622,33.85962]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.972391,33.856235]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"lime", "perpx":"-0.045438", "perpy":"-0.998967"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.034214,33.859047]
+      },
+      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 0.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.967351,33.854549]
+      },
+      "properties": {"street":"GILBERT", "color":"lime", "perpx":"-0.028816", "perpy":"-0.999585"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.814374,33.851107]
+      },
+      "properties": {"street":"LAKEVIEW 2", "color":"lime", "perpx":"-0.654394", "perpy":"0.756154"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813891,33.851525]
+      },
+      "properties": {"street":"LAKEVIEW2", "color":"lime", "perpx":"-0.654394", "perpy":"0.756154"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 10.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.802756,33.854556]
+      },
+      "properties": {"street":"W OF IMPERIAL", "color":"lime", "perpx":"0.020315", "perpy":"0.999794"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.961157,33.853951]
+      },
+      "properties": {"street":"BROOKHURST", "color":"lime", "perpx":"-0.034899", "perpy":"-0.999391"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.794734,33.854393]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793339,33.854368]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791255,33.854451]
+      },
+      "properties": {"street":"IMPERIAL1", "color":"lime", "perpx":"-0.168785", "perpy":"0.985653"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.59",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789725,33.854713]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.310943", "perpy":"0.950429"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789563,33.854766]
+      },
+      "properties": {"street":"IMPERIAL2", "color":"lime", "perpx":"-0.416479", "perpy":"0.909145"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 12.175",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780816,33.858773]
+      },
+      "properties": {"street":"E OF IMPERIAL", "color":"lime", "perpx":"-0.438994", "perpy":"0.89849"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 12.762",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.772007,33.863077]
+      },
+      "properties": {"street":"MIDPOINT", "color":"lime", "perpx":"-0.437889", "perpy":"0.899029"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.32",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020493,33.856023]
+      },
+      "properties": {"street":"HOLDER", "color":"lime", "perpx":"-0.034899", "perpy":"-0.999391"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 13.349",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763191,33.867371]
+      },
+      "properties": {"street":"W OF SCALES", "color":"lime", "perpx":"-0.437889", "perpy":"0.899029"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.026045,33.856241]
+      },
+      "properties": {"street":"VALLEY VIEW", "color":"lime", "perpx":"0.03527", "perpy":"0.999378"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74891,33.869973]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747893,33.870169]
+      },
+      "properties": {"street":"WEIR CNYN1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744997,33.870661]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"lime", "perpx":"-0.177649", "perpy":"0.984094"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 14.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743806,33.870876]
+      },
+      "properties": {"street":"WEIR CNYN2", "color":"lime", "perpx":"0.048587", "perpy":"0.998819"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 15.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733445,33.870372]
+      },
+      "properties": {"street":"East OF WEIR", "color":"lime", "perpx":"0.048587", "perpy":"0.998819"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 15.793",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722277,33.867126]
+      },
+      "properties": {"street":"West OF GYPSUM", "color":"lime", "perpx":"0.08815", "perpy":"0.996107"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 16.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.715237,33.866503]
+      },
+      "properties": {"street":"GYPSUM 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.014055,33.856065]
+      },
+      "properties": {"street":"KNOTT 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 17.044",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701993,33.871439]
+      },
+      "properties": {"street":"E OF GYPSUM", "color":"lime", "perpx":"-0.129654", "perpy":"0.991559"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 17.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689053,33.873131]
+      },
+      "properties": {"street":"COAL", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.685149,33.871434]
+      },
+      "properties": {"street":"COAL", "color":"lime", "perpx":"0.402928", "perpy":"0.915232"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.686605,33.872075]
+      },
+      "properties": {"street":"W of COAL", "color":"lime", "perpx":"0.402928", "perpy":"0.915232"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 18.435",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.680194,33.869436]
+      },
+      "properties": {"street":"E OF COAL", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 1.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.008835,33.856125]
+      },
+      "properties": {"street":"KNOTT 2", "color":"lime", "perpx":"0.029813", "perpy":"0.999556"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.943925,33.854189]
+      },
+      "properties": {"street":"EUCLID", "color":"lime", "perpx":"0.029813", "perpy":"0.999556"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.001703,33.856174]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.000863", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 2.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.998227,33.856177]
+      },
+      "properties": {"street":"BEACH 2", "color":"lime", "perpx":"-0.000863", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.926204,33.853907]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.05087", "perpy":"-0.998705"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991257,33.85622]
+      },
+      "properties": {"street":"E OF STANTON", "color":"lime", "perpx":"0.035533", "perpy":"0.999368"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.984356,33.856869]
+      },
+      "properties": {"street":"W OF 5", "color":"lime", "perpx":"-0.05087", "perpy":"-0.998705"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.87",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976502,33.857654]
+      },
+      "properties": {"street":"MAGNOLIA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 3.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.912686,33.853895]
+      },
+      "properties": {"street":"LEMON", "color":"lime", "perpx":"-0.00639", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.907991,33.853925]
+      },
+      "properties": {"street":"EAST", "color":"lime", "perpx":"-0.00639", "perpy":"0.99998"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897729,33.854035]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"-0.017239", "perpy":"0.999851"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.897207,33.854044]
+      },
+      "properties": {"street":"ACACIA", "color":"lime", "perpx":"-0.04484", "perpy":"0.998994"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 5.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.891303,33.854309]
+      },
+      "properties": {"street":"STATE COLLEGE", "color":"lime", "perpx":"0.073866", "perpy":"0.997268"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.885106,33.85385]
+      },
+      "properties": {"street":"PLACENTIA", "color":"lime", "perpx":"0.073866", "perpy":"0.997268"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87661,33.850258]
+      },
+      "properties": {"street":"W OF 57", "color":"lime", "perpx":"0.417273", "perpy":"0.908781"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875092,33.849561]
+      },
+      "properties": {"street":"W OF 57", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872819,33.848505]
+      },
+      "properties": {"street":"E OF 57", "color":"lime", "perpx":"0.397217", "perpy":"0.917725"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.870973,33.847706]
+      },
+      "properties": {"street":"LA PALMA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 6.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864265,33.84645]
+      },
+      "properties": {"street":"LA PALMA", "color":"lime", "perpx":"0.184041", "perpy":"0.982919"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855999,33.847931]
+      },
+      "properties": {"street":"KRAEMER 1", "color":"lime", "perpx":"-0.238718", "perpy":"0.971089"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.854502,33.848299]
+      },
+      "properties": {"street":"KRAEMER 2", "color":"lime", "perpx":"-0.241819", "perpy":"0.970321"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 7.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.846854,33.850205]
+      },
+      "properties": {"street":"GROVE", "color":"lime", "perpx":"-0.13485", "perpy":"0.990866"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 8.36",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838448,33.851349]
+      },
+      "properties": {"street":"TUSTIN", "color":"lime", "perpx":"-0.13485", "perpy":"0.990866"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816715,33.849084]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "91 W 9.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816135,33.849591]
+      },
+      "properties": {"street":"LAKEVIEW1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.752421,33.676181]
+      },
+      "properties": {"street":"MARINE WAY", "color":"lime", "perpx":"0.971108", "perpy":"-0.23864"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748819,33.680812]
+      },
+      "properties": {"street":"N OF MARINE", "color":"lime", "perpx":"0.780739", "perpy":"-0.624857"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 10.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.746935,33.683166]
+      },
+      "properties": {"street":"S OF PM 11", "color":"lime", "perpx":"0.780739", "perpy":"-0.624857"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743737,33.687048]
+      },
+      "properties": {"street":"AT PM 11", "color":"lime", "perpx":"0.766025", "perpy":"-0.642811"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741045,33.690256]
+      },
+      "properties": {"street":"N OF PM 11", "color":"lime", "perpx":"0.764276", "perpy":"-0.64489"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.738544,33.69322]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.737541,33.694404]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"0.763019", "perpy":"-0.646375"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733959,33.698464]
+      },
+      "properties": {"street":"IRVINE BLVD 3", "color":"lime", "perpx":"0.72056", "perpy":"-0.693393"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734495,33.697907]
+      },
+      "properties": {"street":"IRVINE BLVD 3 (loop)", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72971,33.70238]
+      },
+      "properties": {"street":"S OF PORTOLA", "color":"lime", "perpx":"0.731326", "perpy":"-0.682028"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 12.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.726196,33.706148]
+      },
+      "properties": {"street":"133NB to 241NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 13.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724497,33.709447]
+      },
+      "properties": {"street":"ORANGE 1", "color":"lime", "perpx":"0.889028", "perpy":"-0.457853"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 13.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721749,33.71555]
+      },
+      "properties": {"street":"ORANGE 2", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760506,33.596159]
+      },
+      "properties": {"street":"LOCATION 26", "color":"lime", "perpx":"0.962924", "perpy":"0.269774"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761133,33.598397]
+      },
+      "properties": {"street":"AT 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 4.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760884,33.602492]
+      },
+      "properties": {"street":"LOCATION 27", "color":"lime", "perpx":"0.974473", "perpy":"-0.224504"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 5.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759225,33.609693]
+      },
+      "properties": {"street":"LOCATION 28", "color":"lime", "perpx":"0.974473", "perpy":"-0.224504"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 5.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756717,33.616805]
+      },
+      "properties": {"street":"LOCATION 29", "color":"lime", "perpx":"0.975925", "perpy":"-0.218108"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75607,33.6197]
+      },
+      "properties": {"street":"AT LAKE FOREST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757397,33.625088]
+      },
+      "properties": {"street":"LOCATION 30", "color":"lime", "perpx":"0.80608", "perpy":"0.591806"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 6.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761167,33.630223]
+      },
+      "properties": {"street":"LOCATION 31", "color":"lime", "perpx":"0.80608", "perpy":"0.591806"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760626,33.637439]
+      },
+      "properties": {"street":"LOCATION 32", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761812,33.64216]
+      },
+      "properties": {"street":"LOCATION 34", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 7.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761973,33.642699]
+      },
+      "properties": {"street":"LOCATION 33", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 8.732",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757636,33.657392]
+      },
+      "properties": {"street":"BARRANCA 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 8.866",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756294,33.659542]
+      },
+      "properties": {"street":"BARRANCA1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753976,33.663305]
+      },
+      "properties": {"street":"BARRANCA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.754967,33.661697]
+      },
+      "properties": {"street":"BARRANCA1", "color":"lime", "perpx":"0.851313", "perpy":"-0.524659"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753044,33.667495]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.976143", "perpy":"-0.217128"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 N 9.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753243,33.672836]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0.971108", "perpy":"-0.23864"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.752844,33.676396]
+      },
+      "properties": {"street":"MARINE WAY", "color":"lime", "perpx":"-0.974264", "perpy":"0.225409"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74924,33.68106]
+      },
+      "properties": {"street":"N OF MARINE", "color":"lime", "perpx":"-0.764221", "perpy":"0.644955"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 10.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747277,33.683386]
+      },
+      "properties": {"street":"S OF PM 11", "color":"lime", "perpx":"-0.764221", "perpy":"0.644955"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744014,33.687243]
+      },
+      "properties": {"street":"AT PM 11", "color":"lime", "perpx":"-0.767026", "perpy":"0.641617"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741328,33.690454]
+      },
+      "properties": {"street":"N OF PM 11", "color":"lime", "perpx":"-0.764252", "perpy":"0.644918"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 11.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.737826,33.694604]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"-0.756644", "perpy":"0.653828"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 12.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734303,33.698681]
+      },
+      "properties": {"street":"IRVINE BLVD 3", "color":"lime", "perpx":"-0.679098", "perpy":"0.734047"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 12.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730095,33.702574]
+      },
+      "properties": {"street":"S OF PORTOLA", "color":"lime", "perpx":"-0.679098", "perpy":"0.734047"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 13.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72449,33.710914]
+      },
+      "properties": {"street":"ORANGE 1", "color":"lime", "perpx":"-0.898001", "perpy":"0.439993"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 13.42",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722121,33.715749]
+      },
+      "properties": {"street":"ORANGE 2", "color":"lime", "perpx":"-0.898001", "perpy":"0.439993"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759529,33.591062]
+      },
+      "properties": {"street":"N of 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760662,33.596721]
+      },
+      "properties": {"street":"LOCATION 40", "color":"lime", "perpx":"-0.980541", "perpy":"-0.196316"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7608,33.602769]
+      },
+      "properties": {"street":"LOCATION 39", "color":"lime", "perpx":"-0.948647", "perpy":"0.316336"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 4.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.760843,33.60263]
+      },
+      "properties": {"street":"AT LAKE FOREST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759202,33.609099]
+      },
+      "properties": {"street":"LOCATION 38", "color":"lime", "perpx":"-0.951762", "perpy":"0.306837"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759925,33.605393]
+      },
+      "properties": {"street":"AT 73 (BLUETOOTH)", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 5.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.756718,33.616804]
+      },
+      "properties": {"street":"LOCATION 37", "color":"lime", "perpx":"-0.951762", "perpy":"0.306837"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 6.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75749,33.625214]
+      },
+      "properties": {"street":"LOCATION 36", "color":"lime", "perpx":"-0.805163", "perpy":"-0.593053"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761094,33.630107]
+      },
+      "properties": {"street":"LOCATION 35", "color":"lime", "perpx":"-0.805163", "perpy":"-0.593053"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7553,33.66184]
+      },
+      "properties": {"street":"BARRANCA2", "color":"lime", "perpx":"-0.952044", "perpy":"0.305962"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753428,33.667665]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.952044", "perpy":"0.305962"}
+  },
+  {
+  "type": "Feature",
+  "id": "133 S 9.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753623,33.673029]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.974264", "perpy":"0.225409"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 0.753",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85227,33.90979]
+      },
+      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"lime", "perpx":"0.843501", "perpy":"-0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 0.975",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850473,33.912612]
+      },
+      "properties": {"street":"Nasa ST", "color":"lime", "perpx":"0.843501", "perpy":"-0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847872,33.918427]
+      },
+      "properties": {"street":"BRIRCH ST & VALENCIA", "color":"lime", "perpx":"0.99709", "perpy":"-0.076235"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 1.768",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847455,33.923881]
+      },
+      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"lime", "perpx":"-0.116472", "perpy":"-0.993194"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839661,33.922967]
+      },
+      "properties": {"street":"LOCATION 44", "color":"lime", "perpx":"-0.277876", "perpy":"-0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838254,33.92256]
+      },
+      "properties": {"street":"CARB CNYN @ SANTA FE", "color":"lime", "perpx":"-0.277876", "perpy":"-0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828619,33.921188]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"-0.288898", "perpy":"-0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 2.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827996,33.921]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"-0.288898", "perpy":"-0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816185,33.922015]
+      },
+      "properties": {"street":"LOCATION 46", "color":"lime", "perpx":"0.307112", "perpy":"-0.951673"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812985,33.92304]
+      },
+      "properties": {"street":"LOCATION 47", "color":"lime", "perpx":"0.295298", "perpy":"-0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 3.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813142,33.922997]
+      },
+      "properties": {"street":"CARBO CNYN& REBEY RD", "color":"lime", "perpx":"0.264157", "perpy":"-0.96448"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.806951,33.924905]
+      },
+      "properties": {"street":"LOCATION 48", "color":"lime", "perpx":"0.295298", "perpy":"-0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797865,33.929088]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"0.753367", "perpy":"-0.6576"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797762,33.929206]
+      },
+      "properties": {"street":"LOCATION 49", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 4.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797555,33.929441]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"0.750397", "perpy":"-0.660988"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 5.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791973,33.937043]
+      },
+      "properties": {"street":"LOCATION 51", "color":"lime", "perpx":"0.981109", "perpy":"-0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791945,33.937185]
+      },
+      "properties": {"street":"LOCATION 50", "color":"lime", "perpx":"0.981109", "perpy":"-0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 E 6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.78641,33.942293]
+      },
+      "properties": {"street":"LOCATION 52", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 0.753",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85227,33.90979]
+      },
+      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"lime", "perpx":"-0.843501", "perpy":"0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 0.975",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850473,33.912612]
+      },
+      "properties": {"street":"Nasa ST", "color":"lime", "perpx":"-0.843501", "perpy":"0.537127"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.41",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847872,33.918427]
+      },
+      "properties": {"street":"BRIRCH ST & VALENCIA", "color":"lime", "perpx":"-0.998431", "perpy":"0.055999"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847567,33.923865]
+      },
+      "properties": {"street":"LOCATION 43", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 1.768",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847455,33.923881]
+      },
+      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"lime", "perpx":"-0.141421", "perpy":"0.989949"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.839661,33.922967]
+      },
+      "properties": {"street":"LOCATION 44", "color":"lime", "perpx":"0.277876", "perpy":"0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.838254,33.92256]
+      },
+      "properties": {"street":"CARB CNYN @ SANTA FE", "color":"lime", "perpx":"0.277876", "perpy":"0.960617"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831553,33.922131]
+      },
+      "properties": {"street":"LOCATION 45", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.828619,33.921188]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"0.288898", "perpy":"0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 2.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.827996,33.921]
+      },
+      "properties": {"street":"CALL BOX 484", "color":"lime", "perpx":"0.288898", "perpy":"0.95736"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.816184,33.922015]
+      },
+      "properties": {"street":"LOCATION 46", "color":"lime", "perpx":"-0.307112", "perpy":"0.951673"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812984,33.92304]
+      },
+      "properties": {"street":"LOCATION 47", "color":"lime", "perpx":"-0.295298", "perpy":"0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 3.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813141,33.922997]
+      },
+      "properties": {"street":"CARBO CNYN& REBEY RD", "color":"lime", "perpx":"-0.264157", "perpy":"0.96448"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.80695,33.924905]
+      },
+      "properties": {"street":"LOCATION 48", "color":"lime", "perpx":"-0.295298", "perpy":"0.955405"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797865,33.929089]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"-0.750334", "perpy":"0.661059"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 4.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797554,33.929442]
+      },
+      "properties": {"street":"CALL BOX 481", "color":"lime", "perpx":"-0.750334", "perpy":"0.661059"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 5.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791973,33.937043]
+      },
+      "properties": {"street":"LOCATION 51", "color":"lime", "perpx":"-0.981109", "perpy":"0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "142 W 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.791945,33.937185]
+      },
+      "properties": {"street":"LOCATION 50", "color":"lime", "perpx":"-0.981109", "perpy":"0.193458"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 17.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599074,33.63353]
+      },
+      "properties": {"street":"ANTONIO 2", "color":"lime", "perpx":"0.94076", "perpy":"0.339073"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 17.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599584,33.634945]
+      },
+      "properties": {"street":"SOLAR ANTONIO 2", "color":"lime", "perpx":"0.894427", "perpy":"0.447214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.600814,33.637405]
+      },
+      "properties": {"street":"BANDERAS", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605062,33.645877]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"lime", "perpx":"0.90141", "perpy":"0.432966"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 18.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605721,33.647249]
+      },
+      "properties": {"street":"TRABUCO CREEK", "color":"lime", "perpx":"0.90141", "perpy":"0.432966"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.612216,33.651938]
+      },
+      "properties": {"street":"MELINDA", "color":"lime", "perpx":"0.193918", "perpy":"0.981018"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.620027,33.653482]
+      },
+      "properties": {"street":"LOS ALISOS 1", "color":"lime", "perpx":"0.32691", "perpy":"0.945056"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 19.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.621643,33.654041]
+      },
+      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"lime", "perpx":"0.323887", "perpy":"0.946096"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 20.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.62601,33.655536]
+      },
+      "properties": {"street":"LOS ALISOS 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 20.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.632286,33.658363]
+      },
+      "properties": {"street":"UPPER OSO", "color":"lime", "perpx":"0.410703", "perpy":"0.911769"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 21.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647778,33.666889]
+      },
+      "properties": {"street":"PORTOLA S 1", "color":"lime", "perpx":"0.3701", "perpy":"0.928992"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 21.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.652743,33.668867]
+      },
+      "properties": {"street":"PORTOLA S 2", "color":"lime", "perpx":"0.3701", "perpy":"0.928992"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663113,33.672946]
+      },
+      "properties": {"street":"LAKE FOREST", "color":"lime", "perpx":"0.37314", "perpy":"0.927775"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664667,33.673571]
+      },
+      "properties": {"street":"SOLAR LAKE FOREST", "color":"lime", "perpx":"0.383214", "perpy":"0.92366"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666212,33.674212]
+      },
+      "properties": {"street":"BAKE", "color":"lime", "perpx":"0.42005", "perpy":"0.907501"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 22.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.66772,33.67491]
+      },
+      "properties": {"street":"SOLAR BAKE", "color":"lime", "perpx":"0.42005", "perpy":"0.907501"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671424,33.677671]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"0.787657", "perpy":"0.616114"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672365,33.678874]
+      },
+      "properties": {"street":"SOLAR ALTON 1", "color":"lime", "perpx":"0.787657", "perpy":"0.616114"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67436,33.681906]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"0.8", "perpy":"0.6"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 23.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675368,33.68325]
+      },
+      "properties": {"street":"SOLAR ALTON 2", "color":"lime", "perpx":"0.8", "perpy":"0.6"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.681661,33.688336]
+      },
+      "properties": {"street":"N OF ALTON", "color":"lime", "perpx":"0.567343", "perpy":"0.823482"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.682992,33.689253]
+      },
+      "properties": {"street":"SOLAR N OF ALTON", "color":"lime", "perpx":"0.567343", "perpy":"0.823482"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 24.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690124,33.694263]
+      },
+      "properties": {"street":"SOUTH OF PORTOLA", "color":"lime", "perpx":"0.483192", "perpy":"0.875514"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695163,33.697044]
+      },
+      "properties": {"street":"PORTOLA N2", "color":"lime", "perpx":"0.436189", "perpy":"0.899855"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699355,33.699076]
+      },
+      "properties": {"street":"TOMATO 1", "color":"lime", "perpx":"0.434917", "perpy":"0.900471"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.700854,33.6998]
+      },
+      "properties": {"street":"SOLAR TOMATO 1", "color":"lime", "perpx":"0.434917", "perpy":"0.900471"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 25.95",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.707184,33.702783]
+      },
+      "properties": {"street":"TOMATO 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.708703,33.703475]
+      },
+      "properties": {"street":"SOLAR TOMATO 3", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713171,33.70568]
+      },
+      "properties": {"street":"TOMATO 4", "color":"lime", "perpx":"0.38021", "perpy":"0.9249"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.713947,33.705999]
+      },
+      "properties": {"street":"SOLAR TOMATO 4", "color":"lime", "perpx":"0.487943", "perpy":"0.872876"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716523,33.707439]
+      },
+      "properties": {"street":"133-1", "color":"lime", "perpx":"0.690231", "perpy":"0.723589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 26.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718562,33.709384]
+      },
+      "properties": {"street":"133-2", "color":"lime", "perpx":"0.690231", "perpy":"0.723589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720349,33.714309]
+      },
+      "properties": {"street":"133-3", "color":"lime", "perpx":"0.999048", "perpy":"-0.043617"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720286,33.715752]
+      },
+      "properties": {"street":"SOLAR 133-3", "color":"lime", "perpx":"0.999048", "perpy":"-0.043617"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719917,33.718783]
+      },
+      "properties": {"street":"BEE CANYON", "color":"lime", "perpx":"0.991505", "perpy":"-0.130067"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719726,33.720239]
+      },
+      "properties": {"street":"SOLAR BEE CANYON", "color":"lime", "perpx":"0.991505", "perpy":"-0.130067"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719302,33.723299]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.991174", "perpy":"-0.132564"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 27.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719107,33.724757]
+      },
+      "properties": {"street":"SOLAR N OF 133", "color":"lime", "perpx":"0.991174", "perpy":"-0.132564"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71867,33.728406]
+      },
+      "properties": {"street":"S OF JEFFREY", "color":"lime", "perpx":"0.991789", "perpy":"-0.127885"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718482,33.729864]
+      },
+      "properties": {"street":"SOLAR S OF JEFFREY", "color":"lime", "perpx":"0.991828", "perpy":"-0.127583"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718013,33.73351]
+      },
+      "properties": {"street":"N OF JEFFREY", "color":"lime", "perpx":"0.991828", "perpy":"-0.127583"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71751,33.737751]
+      },
+      "properties": {"street":"N OF HAUL ROAD", "color":"lime", "perpx":"0.99277", "perpy":"0.120036"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 28.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717935,33.741266]
+      },
+      "properties": {"street":"HAUL-CULVER", "color":"lime", "perpx":"0.99277", "perpy":"0.120036"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 29.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720909,33.746087]
+      },
+      "properties": {"street":"S OF CULVER S", "color":"lime", "perpx":"0.544008", "perpy":"0.83908"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 29.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725783,33.749247]
+      },
+      "properties": {"street":"N OF CULVER S", "color":"lime", "perpx":"0.51441", "perpy":"0.857544"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731261,33.753089]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"lime", "perpx":"0.749117", "perpy":"0.662437"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732601,33.756276]
+      },
+      "properties": {"street":"CULVER-CULVER 2", "color":"lime", "perpx":"0.999169", "perpy":"0.040755"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730214,33.751905]
+      },
+      "properties": {"street":"CULVER-CULVER 1", "color":"lime", "perpx":"0.749117", "perpy":"0.662437"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732661,33.757747]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"lime", "perpx":"0.999169", "perpy":"0.040755"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732107,33.76201]
+      },
+      "properties": {"street":"S OF CULVER N", "color":"lime", "perpx":"0.994307", "perpy":"0.106557"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 30.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732264,33.763475]
+      },
+      "properties": {"street":"SOLAR S OF CULVER N", "color":"lime", "perpx":"0.994307", "perpy":"0.106557"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733568,33.766355]
+      },
+      "properties": {"street":"N OF CULVER N", "color":"lime", "perpx":"0.738172", "perpy":"0.674612"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73464,33.767528]
+      },
+      "properties": {"street":"SOLAR N OF CULVER N", "color":"lime", "perpx":"0.738172", "perpy":"0.674612"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.738882,33.770424]
+      },
+      "properties": {"street":"S OF EOC OC", "color":"lime", "perpx":"0.546231", "perpy":"0.837634"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740279,33.771335]
+      },
+      "properties": {"street":"SOLAR S OF EOC OC", "color":"lime", "perpx":"0.572437", "perpy":"0.819949"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 31.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744897,33.774559]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"0.572437", "perpy":"0.819949"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747616,33.780001]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"lime", "perpx":"0.997824", "perpy":"-0.065933"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747519,33.781469]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lime", "perpx":"0.997824", "perpy":"-0.065933"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745126,33.785685]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"lime", "perpx":"0.6879", "perpy":"-0.725806"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743958,33.786792]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 3", "color":"lime", "perpx":"0.563196", "perpy":"-0.826323"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 32.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741766,33.788286]
+      },
+      "properties": {"street":"CHAPMAN 4", "color":"lime", "perpx":"0.563196", "perpy":"-0.826323"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.736347,33.791626]
+      },
+      "properties": {"street":"N OF CHAPMAN", "color":"lime", "perpx":"0.530321", "perpy":"-0.847797"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734929,33.792513]
+      },
+      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"lime", "perpx":"0.530321", "perpy":"-0.847797"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.731726,33.794622]
+      },
+      "properties": {"street":"S OF SANT CREEK", "color":"lime", "perpx":"0.51738", "perpy":"-0.855756"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 33.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730244,33.795518]
+      },
+      "properties": {"street":"SOLAR S OF SANT CK", "color":"lime", "perpx":"0.632614", "perpy":"-0.774467"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72693,33.798225]
+      },
+      "properties": {"street":"N OF SANT CR1", "color":"lime", "perpx":"0.632614", "perpy":"-0.774467"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.724852,33.803371]
+      },
+      "properties": {"street":"N OF SANT CR2", "color":"lime", "perpx":"0.937209", "perpy":"-0.348768"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722969,33.808431]
+      },
+      "properties": {"street":"S OF OAK", "color":"lime", "perpx":"0.843058", "perpy":"-0.537823"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 34.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722088,33.809812]
+      },
+      "properties": {"street":"SOLAR S OF OAK", "color":"lime", "perpx":"0.825697", "perpy":"-0.564113"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719677,33.813341]
+      },
+      "properties": {"street":"N OF OAK", "color":"lime", "perpx":"0.916423", "perpy":"-0.400211"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717431,33.818484]
+      },
+      "properties": {"street":"S OF SCE OC", "color":"lime", "perpx":"0.916423", "perpy":"-0.400211"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 35.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.715964,33.824439]
+      },
+      "properties": {"street":"WINDY RIDGE 1", "color":"lime", "perpx":"0.994559", "perpy":"0.104175"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716485,33.829413]
+      },
+      "properties": {"street":"WINDY RIDGE 2", "color":"lime", "perpx":"0.986289", "perpy":"0.165028"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.37",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717081,33.832975]
+      },
+      "properties": {"street":"WINDY RIDGE 3", "color":"lime", "perpx":"0.986289", "perpy":"0.165028"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 36.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717671,33.839984]
+      },
+      "properties": {"street":"W R WILDLIFE", "color":"lime", "perpx":"0.987599", "perpy":"-0.156997"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716931,33.844639]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 1", "color":"lime", "perpx":"0.999335", "perpy":"-0.036462"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71672,33.850422]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 2", "color":"lime", "perpx":"0.999335", "perpy":"-0.036462"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 37.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716773,33.856526]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 3", "color":"lime", "perpx":"0.997345", "perpy":"-0.072816"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 38.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716374,33.861991]
+      },
+      "properties": {"street":"241N TO 91E ADVANCE", "color":"lime", "perpx":"0.960705", "perpy":"0.277572"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 N 38.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716721,33.863192]
+      },
+      "properties": {"street":"N241 TO E91 RT 91OFF", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 17.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.599491,33.633478]
+      },
+      "properties": {"street":"ANTONIO 2", "color":"lime", "perpx":"-0.933905", "perpy":"-0.357521"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 17.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.600017,33.634852]
+      },
+      "properties": {"street":"SOLAR ANTONIO 2", "color":"lime", "perpx":"-0.933905", "perpy":"-0.357521"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.602781,33.640172]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.605479,33.645513]
+      },
+      "properties": {"street":"SANTA MARGUERITA", "color":"lime", "perpx":"-0.899199", "perpy":"-0.437539"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 18.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.606132,33.646855]
+      },
+      "properties": {"street":"TRABUCO CREEK", "color":"lime", "perpx":"-0.899199", "perpy":"-0.437539"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.612415,33.651498]
+      },
+      "properties": {"street":"MELINDA", "color":"lime", "perpx":"-0.198462", "perpy":"-0.980109"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.620208,33.653076]
+      },
+      "properties": {"street":"LOS ALISOS 1", "color":"lime", "perpx":"-0.333218", "perpy":"-0.94285"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 19.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.621818,33.653645]
+      },
+      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"lime", "perpx":"-0.376202", "perpy":"-0.926538"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 20.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.632465,33.657968]
+      },
+      "properties": {"street":"UPPER OSO", "color":"lime", "perpx":"-0.376202", "perpy":"-0.926538"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 21.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.647927,33.666554]
+      },
+      "properties": {"street":"PORTOLA S 1", "color":"lime", "perpx":"-0.342636", "perpy":"-0.939468"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 21.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.649531,33.667139]
+      },
+      "properties": {"street":"SOLAR PORTOLA S1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.02",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.654243,33.669094]
+      },
+      "properties": {"street":"PORTOLA S 2", "color":"lime", "perpx":"-0.353878", "perpy":"-0.935292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.655768,33.669671]
+      },
+      "properties": {"street":"SOLAR PORTOLA S2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.61",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663291,33.67261]
+      },
+      "properties": {"street":"LAKE FOREST", "color":"lime", "perpx":"-0.360927", "perpy":"-0.932594"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.664862,33.673218]
+      },
+      "properties": {"street":"SOLAR LAKE FOREST", "color":"lime", "perpx":"-0.371493", "perpy":"-0.928436"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666424,33.673843]
+      },
+      "properties": {"street":"BAKE", "color":"lime", "perpx":"-0.418678", "perpy":"-0.908135"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 22.91",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.667938,33.674541]
+      },
+      "properties": {"street":"SOLAR BAKE", "color":"lime", "perpx":"-0.418678", "perpy":"-0.908135"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671674,33.677298]
+      },
+      "properties": {"street":"ALTON 1", "color":"lime", "perpx":"-0.779725", "perpy":"-0.626123"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672636,33.678496]
+      },
+      "properties": {"street":"SOLAR ALTON 1", "color":"lime", "perpx":"-0.779725", "perpy":"-0.626123"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674584,33.681564]
+      },
+      "properties": {"street":"ALTON 2", "color":"lime", "perpx":"-0.800996", "perpy":"-0.59867"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 23.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675593,33.682914]
+      },
+      "properties": {"street":"SOLAR ALTON 2", "color":"lime", "perpx":"-0.800996", "perpy":"-0.59867"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.681883,33.688049]
+      },
+      "properties": {"street":"N OF ALTON", "color":"lime", "perpx":"-0.574042", "perpy":"-0.818826"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683211,33.68898]
+      },
+      "properties": {"street":"SOLAR N OF ALTON", "color":"lime", "perpx":"-0.574042", "perpy":"-0.818826"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 24.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690369,33.694005]
+      },
+      "properties": {"street":"SOUTH OF PORTOLA", "color":"lime", "perpx":"-0.481939", "perpy":"-0.876205"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.695456,33.696803]
+      },
+      "properties": {"street":"PORTOLA N2", "color":"lime", "perpx":"-0.435805", "perpy":"-0.900041"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.699698,33.698857]
+      },
+      "properties": {"street":"TOMATO 1", "color":"lime", "perpx":"-0.432673", "perpy":"-0.901551"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.701217,33.699586]
+      },
+      "properties": {"street":"SOLAR TOMATO 1", "color":"lime", "perpx":"-0.432673", "perpy":"-0.901551"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.704109,33.700961]
+      },
+      "properties": {"street":"TOMATO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 25.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705642,33.70167]
+      },
+      "properties": {"street":"SOLAR TOMATO 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71368,33.705538]
+      },
+      "properties": {"street":"TOMATO 4", "color":"lime", "perpx":"-0.356385", "perpy":"-0.934339"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.714477,33.705842]
+      },
+      "properties": {"street":"SOLAR TOMATO 4", "color":"lime", "perpx":"-0.480566", "perpy":"-0.876958"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.58",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717092,33.707275]
+      },
+      "properties": {"street":"133-1", "color":"lime", "perpx":"-0.712032", "perpy":"-0.702147"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 26.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719081,33.709292]
+      },
+      "properties": {"street":"133-2", "color":"lime", "perpx":"-0.712032", "perpy":"-0.702147"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720884,33.714276]
+      },
+      "properties": {"street":"133-3", "color":"lime", "perpx":"-0.999239", "perpy":"0.039011"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.22",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720827,33.715736]
+      },
+      "properties": {"street":"SOLAR 133-3", "color":"lime", "perpx":"-0.999239", "perpy":"0.039011"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72046,33.718798]
+      },
+      "properties": {"street":"BEE CANYON", "color":"lime", "perpx":"-0.99165", "perpy":"0.128962"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72027,33.720259]
+      },
+      "properties": {"street":"SOLAR BEE CANYON", "color":"lime", "perpx":"-0.99165", "perpy":"0.128962"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719567,33.723287]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"-0.98462", "perpy":"0.174712"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 27.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719309,33.724741]
+      },
+      "properties": {"street":"SOLAR N OF 133", "color":"lime", "perpx":"-0.98462", "perpy":"0.174712"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.09",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718803,33.728394]
+      },
+      "properties": {"street":"S OF JEFFREY", "color":"lime", "perpx":"-0.991031", "perpy":"0.13363"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718606,33.729855]
+      },
+      "properties": {"street":"SOLAR S OF JEFFREY", "color":"lime", "perpx":"-0.991631", "perpy":"0.129107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71813,33.733511]
+      },
+      "properties": {"street":"N OF JEFFREY", "color":"lime", "perpx":"-0.991631", "perpy":"0.129107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717633,33.73777]
+      },
+      "properties": {"street":"N OF HAUL ROAD", "color":"lime", "perpx":"-0.992127", "perpy":"-0.125239"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 28.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718081,33.741319]
+      },
+      "properties": {"street":"HAUL-CULVER", "color":"lime", "perpx":"-0.992127", "perpy":"-0.125239"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 29.34",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721164,33.746148]
+      },
+      "properties": {"street":"S OF CULVER S", "color":"lime", "perpx":"-0.534518", "perpy":"-0.845157"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 29.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.726132,33.74929]
+      },
+      "properties": {"street":"N OF CULVER S", "color":"lime", "perpx":"-0.530397", "perpy":"-0.84775"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73154,33.753272]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"lime", "perpx":"-0.773985", "perpy":"-0.633203"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.33",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732805,33.756517]
+      },
+      "properties": {"street":"CULVER-CULVER 2", "color":"lime", "perpx":"-0.999994", "perpy":"0.00336"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730537,33.752046]
+      },
+      "properties": {"street":"CULVER-CULVER 1", "color":"lime", "perpx":"-0.773985", "perpy":"-0.633203"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7328,33.758005]
+      },
+      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"lime", "perpx":"-0.999994", "perpy":"0.00336"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732284,33.762314]
+      },
+      "properties": {"street":"S OF CULVER N", "color":"lime", "perpx":"-0.986194", "perpy":"-0.165595"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 30.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732531,33.763785]
+      },
+      "properties": {"street":"SOLAR S OF CULVER N", "color":"lime", "perpx":"-0.986194", "perpy":"-0.165595"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.734012,33.766637]
+      },
+      "properties": {"street":"N OF CULVER N", "color":"lime", "perpx":"-0.712957", "perpy":"-0.701208"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.13",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.735146,33.76779]
+      },
+      "properties": {"street":"SOLAR N OF CULVER N", "color":"lime", "perpx":"-0.712957", "perpy":"-0.701208"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.44",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.739531,33.770618]
+      },
+      "properties": {"street":"S OF EOC OC", "color":"lime", "perpx":"-0.547969", "perpy":"-0.836499"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74094,33.771541]
+      },
+      "properties": {"street":"SOLAR S OF EOC OC", "color":"lime", "perpx":"-0.550286", "perpy":"-0.834976"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 31.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745706,33.774682]
+      },
+      "properties": {"street":"CHAPMAN 1", "color":"lime", "perpx":"-0.550286", "perpy":"-0.834976"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.29",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.7482,33.780289]
+      },
+      "properties": {"street":"CHAPMAN 2", "color":"lime", "perpx":"-0.997214", "perpy":"0.074589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.748089,33.781773]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lime", "perpx":"-0.997214", "perpy":"0.074589"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745698,33.786034]
+      },
+      "properties": {"street":"CHAPMAN 3", "color":"lime", "perpx":"-0.656814", "perpy":"0.754052"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744465,33.787108]
+      },
+      "properties": {"street":"SOLAR CHAPMAN 3", "color":"lime", "perpx":"-0.536155", "perpy":"0.84412"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 32.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74219,33.788553]
+      },
+      "properties": {"street":"CHAPMAN 4", "color":"lime", "perpx":"-0.536155", "perpy":"0.84412"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73675,33.791961]
+      },
+      "properties": {"street":"N OF CHAPMAN", "color":"lime", "perpx":"-0.511805", "perpy":"0.859102"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.45",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.735293,33.792829]
+      },
+      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"lime", "perpx":"-0.511805", "perpy":"0.859102"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.68",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732055,33.794954]
+      },
+      "properties": {"street":"S OF SANT CREEK", "color":"lime", "perpx":"-0.521007", "perpy":"0.853552"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 33.78",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.730574,33.795858]
+      },
+      "properties": {"street":"SOLAR S OF SANT CK", "color":"lime", "perpx":"-0.634504", "perpy":"0.77292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.727285,33.798558]
+      },
+      "properties": {"street":"N OF SANT CR1", "color":"lime", "perpx":"-0.634504", "perpy":"0.77292"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.38",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725304,33.803726]
+      },
+      "properties": {"street":"N OF SANT CR2", "color":"lime", "perpx":"-0.931918", "perpy":"0.36267"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72335,33.808747]
+      },
+      "properties": {"street":"S OF OAK", "color":"lime", "perpx":"-0.84356", "perpy":"0.537034"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 34.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722474,33.810123]
+      },
+      "properties": {"street":"SOLAR S OF OAK", "color":"lime", "perpx":"-0.828928", "perpy":"0.559356"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.08",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720094,33.81365]
+      },
+      "properties": {"street":"N OF OAK", "color":"lime", "perpx":"-0.915178", "perpy":"0.40305"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71784,33.818768]
+      },
+      "properties": {"street":"S OF SCE OC", "color":"lime", "perpx":"-0.915178", "perpy":"0.40305"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 35.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717155,33.824805]
+      },
+      "properties": {"street":"WINDY RIDGE 1", "color":"lime", "perpx":"-0.999904", "perpy":"-0.013843"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717224,33.829789]
+      },
+      "properties": {"street":"WINDY RIDGE 2", "color":"lime", "perpx":"-0.990694", "perpy":"-0.136107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.43",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717841,33.83428]
+      },
+      "properties": {"street":"WINDY RIDGE 3", "color":"lime", "perpx":"-0.990694", "perpy":"-0.136107"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 36.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718159,33.840335]
+      },
+      "properties": {"street":"W R WILDLIFE", "color":"lime", "perpx":"-0.985859", "perpy":"0.167575"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717372,33.844965]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 1", "color":"lime", "perpx":"-0.999815", "perpy":"0.019254"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717261,33.850729]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 2", "color":"lime", "perpx":"-0.999815", "perpy":"0.019254"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 37.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717346,33.856811]
+      },
+      "properties": {"street":"N OF W R WILDLIFE 3", "color":"lime", "perpx":"-0.999884", "perpy":"-0.015214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 38.23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717429,33.862266]
+      },
+      "properties": {"street":"S OF 91", "color":"lime", "perpx":"-0.999884", "perpy":"-0.015214"}
+  },
+  {
+  "type": "Feature",
+  "id": "241 S 38.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.722022,33.866619]
+      },
+      "properties": {"street":"E91 TO S241 RT 91 ON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.800349,33.712252]
+      },
+      "properties": {"street":"JAMBOREE", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.797696,33.715376]
+      },
+      "properties": {"street":"WALNUT 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795181,33.717083]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"0.493349", "perpy":"-0.869832"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789435,33.720342]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"lime", "perpx":"0.493349", "perpy":"-0.869832"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 1.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782735,33.72367]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"0.607612", "perpy":"-0.794234"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777645,33.727564]
+      },
+      "properties": {"street":"IRVINE BLVD 2", "color":"lime", "perpx":"0.607612", "perpy":"-0.794234"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 2.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.772751,33.733387]
+      },
+      "properties": {"street":"IRVINE RANCH FSTRK", "color":"lime", "perpx":"0.766466", "perpy":"-0.642285"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768065,33.738979]
+      },
+      "properties": {"street":"PORTOLA  1", "color":"lime", "perpx":"0.904237", "perpy":"-0.42703"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.765231,33.74498]
+      },
+      "properties": {"street":"PORTOLA 2", "color":"lime", "perpx":"0.983838", "perpy":"-0.179058"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764319,33.749991]
+      },
+      "properties": {"street":"PORTOLA 3", "color":"lime", "perpx":"0.984423", "perpy":"-0.175816"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 3.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763603,33.754]
+      },
+      "properties": {"street":"PORTOLA 4", "color":"lime", "perpx":"0.984423", "perpy":"-0.175816"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76135,33.758685]
+      },
+      "properties": {"street":"S OF UTILITY", "color":"lime", "perpx":"0.885102", "perpy":"-0.465397"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759099,33.762966]
+      },
+      "properties": {"street":"N OF UTILITY", "color":"lime", "perpx":"0.980133", "perpy":"-0.198343"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758414,33.766351]
+      },
+      "properties": {"street":"HANDY 1", "color":"lime", "perpx":"0.999501", "perpy":"-0.031586"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 4.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75831,33.769642]
+      },
+      "properties": {"street":"HANDY 2", "color":"lime", "perpx":"0.997022", "perpy":"-0.077121"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 5.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757935,33.77449]
+      },
+      "properties": {"street":"HANDY 3", "color":"lime", "perpx":"0.997022", "perpy":"-0.077121"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 N 5.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75497,33.779145]
+      },
+      "properties": {"street":"CHAPMAN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.800638,33.7124]
+      },
+      "properties": {"street":"JAMBOREE", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795434,33.717315]
+      },
+      "properties": {"street":"S OF 5", "color":"lime", "perpx":"-0.497099", "perpy":"0.867694"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 0.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.789693,33.720604]
+      },
+      "properties": {"street":"EL CAMINO REAL", "color":"lime", "perpx":"-0.497099", "perpy":"0.867694"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 1.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782999,33.723902]
+      },
+      "properties": {"street":"IRVINE BLVD 1", "color":"lime", "perpx":"-0.601686", "perpy":"0.798733"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 1.75",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777924,33.727725]
+      },
+      "properties": {"street":"IRVINE BLVD 2", "color":"lime", "perpx":"-0.601686", "perpy":"0.798733"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 2.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.773023,33.733529]
+      },
+      "properties": {"street":"IRVINE RANCH FSTRK", "color":"lime", "perpx":"-0.769852", "perpy":"0.638223"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 2.71",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.768378,33.739132]
+      },
+      "properties": {"street":"PORTOLA  1", "color":"lime", "perpx":"-0.910548", "perpy":"0.413404"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.765643,33.745156]
+      },
+      "properties": {"street":"PORTOLA 2", "color":"lime", "perpx":"-0.982145", "perpy":"0.188125"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.51",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764687,33.750147]
+      },
+      "properties": {"street":"PORTOLA 3", "color":"lime", "perpx":"-0.984863", "perpy":"0.173336"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 3.79",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763983,33.754147]
+      },
+      "properties": {"street":"PORTOLA 4", "color":"lime", "perpx":"-0.984863", "perpy":"0.173336"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.14",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761762,33.758827]
+      },
+      "properties": {"street":"S OF UTILITY", "color":"lime", "perpx":"-0.884264", "perpy":"0.466987"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759498,33.763114]
+      },
+      "properties": {"street":"N OF UTILITY", "color":"lime", "perpx":"-0.980989", "perpy":"0.194064"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758825,33.766516]
+      },
+      "properties": {"street":"HANDY 1", "color":"lime", "perpx":"-0.999193", "perpy":"0.040173"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 4.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758692,33.769824]
+      },
+      "properties": {"street":"HANDY 2", "color":"lime", "perpx":"-0.997492", "perpy":"0.070782"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 5.27",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758346,33.7747]
+      },
+      "properties": {"street":"HANDY 3", "color":"lime", "perpx":"-0.997492", "perpy":"0.070782"}
+  },
+  {
+  "type": "Feature",
+  "id": "261 S 5.64",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75529,33.779357]
+      },
+      "properties": {"street":"CHAPMAN", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741156,33.646486]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 0.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.746598,33.64809]
+      },
+      "properties": {"street":"IRVINE C1", "color":"lime", "perpx":"0.282096", "perpy":"0.959386"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.895773,33.687683]
+      },
+      "properties": {"street":"N OF 73", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902375,33.687846]
+      },
+      "properties": {"street":"N OF 73", "color":"lime", "perpx":"0.024682", "perpy":"0.999695"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 10.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.909664,33.688017]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.11",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.74955,33.648958]
+      },
+      "properties": {"street":"IRVINE C2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.247",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915651,33.688281]
+      },
+      "properties": {"street":"TEMP 1 NB", "color":"lime", "perpx":"0.226201", "perpy":"0.974081"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.918196,33.688872]
+      },
+      "properties": {"street":"HARBOR 1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 11.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.921335,33.690091]
+      },
+      "properties": {"street":"HYLAND", "color":"lime", "perpx":"0.362002", "perpy":"0.932177"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.930032,33.693692]
+      },
+      "properties": {"street":"HAMPSHIRE", "color":"lime", "perpx":"0.384478", "perpy":"0.923134"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.712",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.938594,33.697258]
+      },
+      "properties": {"street":"TEMP 2 NB", "color":"lime", "perpx":"0.389175", "perpy":"0.921164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 12.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.940729,33.69816]
+      },
+      "properties": {"street":"EUCLID", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.122",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94495,33.699916]
+      },
+      "properties": {"street":"LOCATION 5013 NB", "color":"lime", "perpx":"0.384103", "perpy":"0.92329"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.953701,33.704947]
+      },
+      "properties": {"street":"BROOKHUR1", "color":"lime", "perpx":"0.642988", "perpy":"0.765876"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 13.97",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.956518,33.707312]
+      },
+      "properties": {"street":"BROOKHUR2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 14.571",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.963904,33.71347]
+      },
+      "properties": {"street":"TMS 5014 NB", "color":"lime", "perpx":"0.641837", "perpy":"0.766841"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 14.82",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.966959,33.716027]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"0.643494", "perpy":"0.765452"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.17",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.971245,33.719628]
+      },
+      "properties": {"street":"MAGNOLIA1", "color":"lime", "perpx":"0.639234", "perpy":"0.769012"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969162,33.717879]
+      },
+      "properties": {"street":"405 TEST", "color":"lime", "perpx":"0.643037", "perpy":"0.765835"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.39",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.973953,33.721879]
+      },
+      "properties": {"street":"MAGNOLIA2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 15.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.977379,33.724553]
+      },
+      "properties": {"street":"TMS 5015 NB", "color":"lime", "perpx":"0.568448", "perpy":"0.822719"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757101,33.651141]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"0.202053", "perpy":"0.979375"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.025",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.982268,33.727931]
+      },
+      "properties": {"street":"TMS 5016 NB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.52",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.988885,33.732527]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"0.571725", "perpy":"0.820445"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 16.76",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.992088,33.734759]
+      },
+      "properties": {"street":"BEACH 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759796,33.651697]
+      },
+      "properties": {"street":"AT 133 N405 to S133", "color":"lime", "perpx":"0.147572", "perpy":"0.989051"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 17.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.00667,33.746378]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"lime", "perpx":"0.642886", "perpy":"0.765962"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 18.696",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.016167,33.754349]
+      },
+      "properties": {"street":"TMC 5017 NB", "color":"lime", "perpx":"0.64006", "perpy":"0.768325"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 19.24",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.022852,33.759918]
+      },
+      "properties": {"street":"WESTMINISTER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 1.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763194,33.652204]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"0.206915", "perpy":"0.978359"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 19.631",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.027646,33.763926]
+      },
+      "properties": {"street":"TMS 5018 NB", "color":"lime", "perpx":"0.641411", "perpy":"0.767197"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 20.341",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036355,33.771206]
+      },
+      "properties": {"street":"TMS 2240 NB", "color":"lime", "perpx":"0.313135", "perpy":"0.949709"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.039",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.046955,33.774701]
+      },
+      "properties": {"street":"TMS 2417 NB", "color":"lime", "perpx":"-0.025163", "perpy":"0.999683"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.552",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.055894,33.774476]
+      },
+      "properties": {"street":"TMS 5020 NB", "color":"lime", "perpx":"-0.001431", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 21.912",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.062183,33.774467]
+      },
+      "properties": {"street":"TMS 5021 NB", "color":"lime", "perpx":"-0.001431", "perpy":"0.999999"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 22.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.073325,33.774552]
+      },
+      "properties": {"street":"SEAL BEACH 1", "color":"lime", "perpx":"-0.000845", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 22.887",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.079243,33.774547]
+      },
+      "properties": {"street":"TMS 268", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083341,33.774556]
+      },
+      "properties": {"street":"S OF 7TH ST", "color":"lime", "perpx":"0.026307", "perpy":"0.999654"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.133",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083569,33.774562]
+      },
+      "properties": {"street":"TMS 2241 NB", "color":"lime", "perpx":"0.114396", "perpy":"0.993435"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084559,33.774676]
+      },
+      "properties": {"street":"N OF 7TH ST", "color":"lime", "perpx":"0.114396", "perpy":"0.993435"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.08123,33.774554]
+      },
+      "properties": {"street":"S OF OLD RANCH PKWY", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770173,33.65368]
+      },
+      "properties": {"street":"LAGUNA CANYON RD", "color":"lime", "perpx":"0.206915", "perpy":"0.978359"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089644,33.778545]
+      },
+      "properties": {"street":"SALMON", "color":"lime", "perpx":"0.941439", "perpy":"0.337182"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.641",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089745,33.778827]
+      },
+      "properties": {"street":"TMS 2218 NB", "color":"lime", "perpx":"0.941439", "perpy":"0.337182"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090834,33.782737]
+      },
+      "properties": {"street":"S OF 605", "color":"lime", "perpx":"0.96041", "perpy":"0.278592"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 23.929",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090872,33.782868]
+      },
+      "properties": {"street":"TMS 2542 NB", "color":"lime", "perpx":"0.96041", "perpy":"0.278592"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 24.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.092441,33.785381]
+      },
+      "properties": {"street":"N OF 605", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.89",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777952,33.657928]
+      },
+      "properties": {"street":"SAND CANYON 1", "color":"lime", "perpx":"0.494902", "perpy":"0.868949"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 2.99",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.77939,33.658747]
+      },
+      "properties": {"street":"SAND CANYON 2", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.04",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.780107,33.659163]
+      },
+      "properties": {"street":"SAND CANYON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784046,33.661319]
+      },
+      "properties": {"street":"N OF SAND CANYON", "color":"lime", "perpx":"0.480131", "perpy":"0.877197"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 3.86",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793258,33.663379]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"lime", "perpx":"0.142134", "perpy":"0.989847"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796176,33.663798]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"lime", "perpx":"0.142134", "perpy":"0.989847"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812902,33.666407]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"0.267568", "perpy":"0.963539"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813561,33.66659]
+      },
+      "properties": {"street":"SPRUCE", "color":"lime", "perpx":"0.267568", "perpy":"0.963539"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.55",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.821657,33.669218]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"0.332642", "perpy":"0.943053"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 5.74",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.824699,33.670291]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"0.320278", "perpy":"0.947323"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 6.21",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832271,33.672851]
+      },
+      "properties": {"street":"HARVARD", "color":"lime", "perpx":"0.320278", "perpy":"0.947323"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 6.85",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.842488,33.676465]
+      },
+      "properties": {"street":"JAMBOREE1", "color":"lime", "perpx":"0.400805", "perpy":"0.916164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 7.07",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845871,33.677945]
+      },
+      "properties": {"street":"JAMBOREE2", "color":"lime", "perpx":"0.400805", "perpy":"0.916164"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 7.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.85598,33.682442]
+      },
+      "properties": {"street":"MACARTHUR 1", "color":"lime", "perpx":"0.408917", "perpy":"0.912572"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864081,33.686072]
+      },
+      "properties": {"street":"AIRPORT", "color":"lime", "perpx":"0.321527", "perpy":"0.9469"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865527,33.686563]
+      },
+      "properties": {"street":"HOV AT 55N FLYOVER**", "color":"lime", "perpx":"0.271933", "perpy":"0.962316"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866348,33.686795]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"0.126754", "perpy":"0.991934"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 8.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871466,33.687449]
+      },
+      "properties": {"street":"ANTON", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880139,33.687519]
+      },
+      "properties": {"street":"AVE. OF ART", "color":"lime", "perpx":"0.000886", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.46",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.884653,33.687523]
+      },
+      "properties": {"street":"BRISTOL 1", "color":"lime", "perpx":"0.0", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.65",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887956,33.687523]
+      },
+      "properties": {"street":"BRISTOL 2", "color":"lime", "perpx":"0.0", "perpy":"1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 N 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.8923,33.687569]
+      },
+      "properties": {"street":"BEAR", "color":"lime", "perpx":"0.032807", "perpy":"0.999462"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741301,33.646186]
+      },
+      "properties": {"street":"N OF 5", "color":"lime", "perpx":"-0.284825", "perpy":"-0.958579"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.77",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.744091,33.647015]
+      },
+      "properties": {"street":"IRVINE C1", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 0.96",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747203,33.64795]
+      },
+      "properties": {"street":"IRVINE C2", "color":"lime", "perpx":"-0.287743", "perpy":"-0.957708"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.28",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899035,33.68748]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.899383,33.687494]
+      },
+      "properties": {"street":"FAIRVIEW", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 10.48",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.902507,33.687582]
+      },
+      "properties": {"street":"N OF 73", "color":"lime", "perpx":"-0.028158", "perpy":"-0.999603"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.915002,33.687942]
+      },
+      "properties": {"street":"HARBOR 1", "color":"lime", "perpx":"-0.248611", "perpy":"-0.968603"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.53",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.92042,33.689396]
+      },
+      "properties": {"street":"TEMP 1 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 11.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.91995,33.689212]
+      },
+      "properties": {"street":"HARBOR 2", "color":"lime", "perpx":"-0.364549", "perpy":"-0.931184"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.930222,33.693448]
+      },
+      "properties": {"street":"HAMPSHIRE", "color":"lime", "perpx":"-0.385484", "perpy":"-0.922714"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.9355,33.695653]
+      },
+      "properties": {"street":"EUCLID", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 12.63",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.937506,33.696514]
+      },
+      "properties": {"street":"TEMP 2 SB", "color":"lime", "perpx":"-0.394417", "perpy":"-0.918932"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.123",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.94515,33.699731]
+      },
+      "properties": {"street":"LOCATION 5013 SB", "color":"lime", "perpx":"-0.37653", "perpy":"-0.926404"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.3",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.947913,33.700854]
+      },
+      "properties": {"street":"TALBERT", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 13.81",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.954762,33.705479]
+      },
+      "properties": {"street":"BROOKHURST2", "color":"lime", "perpx":"-0.559633", "perpy":"-0.828741"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 14.539",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.963712,33.712977]
+      },
+      "properties": {"street":"TMS 5014 SB", "color":"lime", "perpx":"-0.642116", "perpy":"-0.766608"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 14.72",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.965935,33.714839]
+      },
+      "properties": {"street":"WARNER", "color":"lime", "perpx":"-0.642116", "perpy":"-0.766608"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15.16",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.971343,33.71936]
+      },
+      "properties": {"street":"MAGNOLIA 1", "color":"lime", "perpx":"-0.644821", "perpy":"-0.764334"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969386,33.717709]
+      },
+      "properties": {"street":"405 TEST", "color":"lime", "perpx":"-0.644821", "perpy":"-0.764334"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 15.722",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.978434,33.724961]
+      },
+      "properties": {"street":"TMS 5015 SB", "color":"lime", "perpx":"-0.570833", "perpy":"-0.821066"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.57",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.757205,33.650789]
+      },
+      "properties": {"street":"N OF 133", "color":"lime", "perpx":"-0.197097", "perpy":"-0.980384"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.98561,33.72995]
+      },
+      "properties": {"street":"EDINGER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.6",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.990146,33.733102]
+      },
+      "properties": {"street":"BEACH 1", "color":"lime", "perpx":"-0.580003", "perpy":"-0.814614"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 16.978",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.995139,33.736657]
+      },
+      "properties": {"street":"TMS 5016 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.73",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.759896,33.65133]
+      },
+      "properties": {"street":"AT 133", "color":"lime", "perpx":"-0.146685", "perpy":"-0.989183"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 17.66",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.003642,33.743534]
+      },
+      "properties": {"street":"BOLSA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 17.98",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.007585,33.7468]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"lime", "perpx":"-0.646922", "perpy":"-0.762556"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 18",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.007829,33.747007]
+      },
+      "properties": {"street":"GOLDEN WEST", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 18.689",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.016295,33.754062]
+      },
+      "properties": {"street":"TMS 5017 SB", "color":"lime", "perpx":"-0.6442", "perpy":"-0.764857"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 19.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.020707,33.757778]
+      },
+      "properties": {"street":"WESTMINSTER", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 1.93",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.763315,33.651837]
+      },
+      "properties": {"street":"S OF 133", "color":"lime", "perpx":"-0.209415", "perpy":"-0.977827"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 19.641",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.02796,33.763839]
+      },
+      "properties": {"street":"TMS 5018 SB", "color":"lime", "perpx":"-0.641235", "perpy":"-0.767345"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 20.336",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036509,33.770948]
+      },
+      "properties": {"street":"TMS 2240 SB", "color":"lime", "perpx":"-0.541255", "perpy":"-0.840859"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 20.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.041297,33.77403]
+      },
+      "properties": {"street":"BOLSA CHICA", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.032",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.047045,33.774412]
+      },
+      "properties": {"street":"TMS 2417 SB", "color":"lime", "perpx":"-0.066312", "perpy":"-0.997799"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.519",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.055374,33.774204]
+      },
+      "properties": {"street":"TMS 5020 SB", "color":"lime", "perpx":"0.002321", "perpy":"-0.999997"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 21.864",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.061407,33.77419]
+      },
+      "properties": {"street":"TMS 5021 SB", "color":"lime", "perpx":"0.002321", "perpy":"-0.999997"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 22.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.073289,33.774257]
+      },
+      "properties": {"street":"SEAL BEACH 1", "color":"lime", "perpx":"-0.007511", "perpy":"-0.999972"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.093",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083008,33.77433]
+      },
+      "properties": {"street":"TMS 2241 SB", "color":"lime", "perpx":"-0.0", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083482,33.77433]
+      },
+      "properties": {"street":"S OF 7TH ST", "color":"lime", "perpx":"-0.111511", "perpy":"-0.993763"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.19",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084694,33.774466]
+      },
+      "properties": {"street":"N OF 7TH ST", "color":"lime", "perpx":"-0.224563", "perpy":"-0.974459"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.262",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.085896,33.774743]
+      },
+      "properties": {"street":"TMS 5022 SB", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 2.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.770361,33.653346]
+      },
+      "properties": {"street":"LAGUNA CANYON RD", "color":"lime", "perpx":"-0.209415", "perpy":"-0.977827"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.62",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.089913,33.778421]
+      },
+      "properties": {"street":"SALMON", "color":"lime", "perpx":"-0.946836", "perpy":"-0.321715"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.646",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090036,33.778783]
+      },
+      "properties": {"street":"TMS 2218 SB", "color":"lime", "perpx":"-0.965604", "perpy":"-0.260019"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.7",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.090242,33.779548]
+      },
+      "properties": {"street":"E22-N405", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.919",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.091096,33.782664]
+      },
+      "properties": {"street":"TMS 2542 SB", "color":"lime", "perpx":"-0.966235", "perpy":"-0.257663"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 23.92",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.0911,33.782679]
+      },
+      "properties": {"street":"S OF 605", "color":"lime", "perpx":"-0.966235", "perpy":"-0.257663"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 24.12",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.092624,33.785289]
+      },
+      "properties": {"street":"N OF 605", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 2.88",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.778085,33.657534]
+      },
+      "properties": {"street":"SAND CANYON", "color":"lime", "perpx":"-0.484045", "perpy":"-0.875043"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 3.31",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784273,33.660957]
+      },
+      "properties": {"street":"N OF SAND CANYON", "color":"lime", "perpx":"-0.484045", "perpy":"-0.875043"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 3.84",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793047,33.66293]
+      },
+      "properties": {"street":"JEFFREY 1", "color":"lime", "perpx":"-0.144931", "perpy":"-0.989442"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 4.03",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796283,33.663404]
+      },
+      "properties": {"street":"JEFFREY 2", "color":"lime", "perpx":"-0.144931", "perpy":"-0.989442"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.81298,33.666093]
+      },
+      "properties": {"street":"YALE", "color":"lime", "perpx":"-0.29192", "perpy":"-0.956443"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.05",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813632,33.666292]
+      },
+      "properties": {"street":"SPRUCE", "color":"lime", "perpx":"-0.29192", "perpy":"-0.956443"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.5",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.820882,33.668738]
+      },
+      "properties": {"street":"CULVER 1", "color":"lime", "perpx":"-0.30889", "perpy":"-0.951098"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 5.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.823958,33.669737]
+      },
+      "properties": {"street":"CULVER 2", "color":"lime", "perpx":"-0.30889", "perpy":"-0.951098"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830554,33.671983]
+      },
+      "properties": {"street":"HARVARD", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.21",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832329,33.672571]
+      },
+      "properties": {"street":"HARVARD", "color":"lime", "perpx":"-0.314462", "perpy":"-0.94927"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 6.8",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.84179,33.675863]
+      },
+      "properties": {"street":"JAMBOREE1", "color":"lime", "perpx":"-0.402558", "perpy":"-0.915394"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 7.01",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845019,33.677283]
+      },
+      "properties": {"street":"JAMBOREE2", "color":"lime", "perpx":"-0.402558", "perpy":"-0.915394"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 7.69",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.855449,33.681922]
+      },
+      "properties": {"street":"MACARTHUR1", "color":"lime", "perpx":"-0.399707", "perpy":"-0.916643"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.86423,33.685751]
+      },
+      "properties": {"street":"AIRPORT", "color":"lime", "perpx":"-0.358185", "perpy":"-0.933651"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.35",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865648,33.686295]
+      },
+      "properties": {"street":"HOV 55S to 405S", "color":"lime", "perpx":"-0.259554", "perpy":"-0.965729"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.4",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866474,33.686517]
+      },
+      "properties": {"street":"RED HILL", "color":"lime", "perpx":"-0.259554", "perpy":"-0.965729"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 8.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875063,33.687245]
+      },
+      "properties": {"street":"N OF 55", "color":"white", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.2",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880276,33.687254]
+      },
+      "properties": {"street":"AVE. OF ART", "color":"lime", "perpx":"0.000508", "perpy":"-1.0"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.54",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88618,33.687251]
+      },
+      "properties": {"street":"BRISTOL 1", "color":"lime", "perpx":"-0.013748", "perpy":"-0.999905"}
+  },
+  {
+  "type": "Feature",
+  "id": "405 S 9.9",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.892435,33.687337]
+      },
+      "properties": {"street":"BEAR", "color":"lime", "perpx":"-0.013748", "perpy":"-0.999905"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 N 1.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084562,33.799174]
+      },
+      "properties": {"street":"N OF 405", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 N 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.082822,33.80097]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"0", "perpy":"0"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.1",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.084891,33.799259]
+      },
+      "properties": {"street":"N OF 405", "color":"lime", "perpx":"-0.712287", "perpy":"0.701888"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.26",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.083136,33.80104]
+      },
+      "properties": {"street":"KATELLA 1", "color":"lime", "perpx":"-0.712287", "perpy":"0.701888"}
+  },
+  {
+  "type": "Feature",
+  "id": "605 S 1.49",
+    "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.081675,33.804047]
+      },
+      "properties": {"street":"KATELLA 2", "color":"white", "perpx":"0", "perpy":"0"}
+  }
+ ]
+}
Index: trunk/webapps/cptms/data_layers/showDupPostmiles.py
===================================================================
--- trunk/webapps/cptms/data_layers/showDupPostmiles.py	(revision 318)
+++ trunk/webapps/cptms/data_layers/showDupPostmiles.py	(revision 318)
@@ -0,0 +1,67 @@
+import fileinput
+# Some postmiles files have duplicate entries,
+# same postmile but slightly different street names.
+# This program presents the duplicates to the user to 
+# select which one to keep and discards the others.
+# Only works when duplicates are in successive rows of the file, which is
+# how it should be if it's sorted by postmile.  But sometimes
+# there's weird data where two SLIGHTLY different postmiles have
+# the same latlong, and you'll have to deal with these by hand.
+
+# Read from file name provided on command line
+# Expected input format: route, direction, lat, long, name
+# Assumes commas are separators and don't appear in name.
+prevName = ""
+prevCoords = ""
+prevstreet = ""
+prevFields = ["","","","","",""]
+matching = False
+streets = []
+outputFile = "uniqFile"
+outFile = open(outputFile,"w") # put results here
+# Examine each input line
+for line in fileinput.input():
+    lineIn = line.rstrip()   #to trim whitespace and newline
+    fields = lineIn.split(",")
+    current = fields[3]+","+fields[4]  # match the latLong pair
+    # Does this item match the previous one?
+    if (current == prevCoords): 
+        if not matching:
+            # indicate we are in matching mode (for 1 or more items)
+            matching = True
+            print fields[0] + "\t" + prevstreet
+        print "\t\t" + fields[5]
+        streets.append(fields[5])
+    else:
+        if matching: # if we were matching, turn it off
+            matching = False
+            # Ask user to select one of the matching items
+            choice = raw_input("choose one of "+str(len(streets)) + ": ")
+            if (len(choice)==0):
+                choice = "1"
+            print "         OK, you selected: ",streets[int(choice)-1]
+            print 
+            print "-----------"
+#            outFile.write(prevName + "," +prevCoords + "," + streets[int(choice)-1])
+            outFile.write(prevFields[0]+ "," + prevFields[1]+ "," + prevFields[2]+ "," + prevFields[3]+ "," + prevFields[4]+ "," + streets[int(choice)-1])
+            outFile.write("\n")
+        else:
+            # output the previous unmatched item (unless were at the first line)
+            if prevFields[0] != "":
+#            outFile.write(prevName + "," + prevCoords + "," + prevstreet + "\n")
+                outFile.write(prevFields[0]+ "," + prevFields[1]+ "," + prevFields[2]+ "," + prevFields[3]+ "," + prevFields[4]+ "," + prevFields[5])
+                outFile.write("\n")
+        # reset the saved street names
+        streets = []
+        streets.append(fields[5])
+    # save current for next iteration
+    prevName = fields[0]
+    prevCoords = current
+    prevstreet = fields[5]
+    prevFields = fields
+# output last entry
+outFile.write(prevFields[0]+ "," + prevFields[1]+ "," + prevFields[2]+ "," + prevFields[3]+ "," + prevFields[4]+ "," + prevFields[5])
+outFile.write("\n")
+outFile.close()
+
+print "All Done, output in ", outputFile
Index: trunk/webapps/cptms/data_layers/highways_startup_fromModel.json
===================================================================
--- trunk/webapps/cptms/data_layers/highways_startup_fromModel.json	(revision 352)
+++ trunk/webapps/cptms/data_layers/highways_startup_fromModel.json	(revision 352)
@@ -0,0 +1,8364 @@
+{
+  "type": "FeatureCollection",
+  "features": [
+{
+   "type": "Feature",
+   "id": "5 N 0.65",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.597992,33.40516]
+       },
+   "properties": 
+       {"street": "S. LUIS REY", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 1.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.6021,33.413319]
+       },
+   "properties": 
+       {"street": "MAGDALENA", "color": "lime", "perpx": "0.891749", "perpy": "0.45253"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 1.83",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.606498,33.420685]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 2.47",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.611817,33.428811]
+       },
+   "properties": 
+       {"street": "PRESIDIO", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 2.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.615519,33.432425]
+       },
+   "properties": 
+       {"street": "PALIZADA", "color": "lime", "perpx": "0.698551", "perpy": "0.71556"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 3.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.619773,33.43749]
+       },
+   "properties": 
+       {"street": "PICO 1", "color": "lime", "perpx": "0.498751", "perpy": "0.866745"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 3.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.624486,33.440202]
+       },
+   "properties": 
+       {"street": "PICO 2", "color": "lime", "perpx": "0.498751", "perpy": "0.866745"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 5.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.650183,33.455773]
+       },
+   "properties": 
+       {"street": "N OF VAQUERO", "color": "lime", "perpx": "0.393632", "perpy": "0.919268"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 5.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.655008,33.458342]
+       },
+   "properties": 
+       {"street": "ESTRELLA1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 5.89",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.657305,33.459637]
+       },
+   "properties": 
+       {"street": "ESTRELLA2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 6.47",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.665509,33.464404]
+       },
+   "properties": 
+       {"street": "SACRAMENTO", "color": "lime", "perpx": "0.523797", "perpy": "0.851843"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 6.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671714,33.468032]
+       },
+   "properties": 
+       {"street": "LAS RAMBLAS", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 7.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674271,33.475073]
+       },
+   "properties": 
+       {"street": "CAPISTRANO", "color": "lime", "perpx": "0.816519", "perpy": "-0.577318"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 7.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.669596,33.481685]
+       },
+   "properties": 
+       {"street": "AEROPUERTO", "color": "lime", "perpx": "0.816519", "perpy": "-0.577318"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 8.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663255,33.489561]
+       },
+   "properties": 
+       {"street": "S JUAN CREEK", "color": "lime", "perpx": "0.839468", "perpy": "-0.54341"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 9.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.659127,33.495938]
+       },
+   "properties": 
+       {"street": "PLAZA", "color": "lime", "perpx": "0.972984", "perpy": "-0.230873"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 9.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.658585,33.503727]
+       },
+   "properties": 
+       {"street": "ORTEGA  2", "color": "lime", "perpx": "0.971921", "perpy": "0.235307"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 10.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.660803,33.50939]
+       },
+   "properties": 
+       {"street": "EL HORNO", "color": "lime", "perpx": "0.920027", "perpy": "0.391855"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.662568,33.513534]
+       },
+   "properties": 
+       {"street": "SERRA PARK", "color": "lime", "perpx": "0.919833", "perpy": "0.392311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.666382,33.52247]
+       },
+   "properties": 
+       {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "0.924678", "perpy": "0.38075"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.66866,33.526621]
+       },
+   "properties": 
+       {"street": "TRABUCO", "color": "lime", "perpx": "0.874948", "perpy": "0.484218"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 11.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674488,33.53247]
+       },
+   "properties": 
+       {"street": "WILDWOOD", "color": "lime", "perpx": "0.999898", "perpy": "-0.014276"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 12.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674416,33.537513]
+       },
+   "properties": 
+       {"street": "S OF 73", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672686,33.548817]
+       },
+   "properties": 
+       {"street": "AVERY PARK", "color": "lime", "perpx": "0.999609", "perpy": "-0.027961"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672848,33.558096]
+       },
+   "properties": 
+       {"street": "CROWN VA1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 13.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.672791,33.560549]
+       },
+   "properties": 
+       {"street": "CROWN VA2", "color": "lime", "perpx": "0.996005", "perpy": "-0.089297"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 15.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67162,33.578849]
+       },
+   "properties": 
+       {"street": "OSO PARK 1", "color": "lime", "perpx": "0.999789", "perpy": "-0.020544"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 15.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67157,33.582052]
+       },
+   "properties": 
+       {"street": "OSO PARK2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 16.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.676059,33.597861]
+       },
+   "properties": 
+       {"street": "LA PAZ 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 16.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.678685,33.599252]
+       },
+   "properties": 
+       {"street": "LA PAZ 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 17.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.68984,33.604242]
+       },
+   "properties": 
+       {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 17.63",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.692734,33.606025]
+       },
+   "properties": 
+       {"street": "ALICIA 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 18.61",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.706467,33.613883]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "0.647648", "perpy": "0.761939"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.721491,33.629553]
+       },
+   "properties": 
+       {"street": "LAKE FOR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724337,33.632102]
+       },
+   "properties": 
+       {"street": "OLDFIELD", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72806,33.636144]
+       },
+   "properties": 
+       {"street": "BAKE 1", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 20.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.731437,33.640323]
+       },
+   "properties": 
+       {"street": "BAKE 2", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 21.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734444,33.644068]
+       },
+   "properties": 
+       {"street": "At 405", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.742629,33.654371]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.743597,33.655581]
+       },
+   "properties": 
+       {"street": "ALTON 3", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 22.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.748817,33.662274]
+       },
+   "properties": 
+       {"street": "BARRANCA", "color": "lime", "perpx": "0.770018", "perpy": "0.638022"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.751722,33.66578]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753237,33.667646]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755266,33.671657]
+       },
+   "properties": 
+       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "0.972906", "perpy": "0.2312"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 24.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759083,33.67881]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 24.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.76413,33.68378]
+       },
+   "properties": 
+       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.768954,33.691182]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.769532,33.692068]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 25.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.774934,33.700287]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "0.835661", "perpy": "0.549245"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 26.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.781713,33.709761]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 26.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784619,33.712411]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 27.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.794408,33.719297]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 27.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.794541,33.719391]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 28.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801722,33.724394]
+       },
+   "properties": 
+       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "0.570509", "perpy": "0.821292"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 29.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.817068,33.73489]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 29.79",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.825811,33.738115]
+       },
+   "properties": 
+       {"street": "NEWPORT*", "color": "lime", "perpx": "0.29944", "perpy": "0.954115"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.829214,33.739183]
+       },
+   "properties": 
+       {"street": "B ST.", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832416,33.740283]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.835585,33.741403]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 30.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.841283,33.744413]
+       },
+   "properties": 
+       {"street": "1ST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.844061,33.750124]
+       },
+   "properties": 
+       {"street": "4TH", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845939,33.752049]
+       },
+   "properties": 
+       {"street": "CONCORD", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.848788,33.753753]
+       },
+   "properties": 
+       {"street": "GRAND 1", "color": "lime", "perpx": "0.435561", "perpy": "0.900159"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 31.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.850781,33.754689]
+       },
+   "properties": 
+       {"street": "GRAND 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859664,33.758644]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.862379,33.760465]
+       },
+   "properties": 
+       {"street": "17TH 2", "color": "lime", "perpx": "0.753317", "perpy": "0.657658"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 32.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.863369,33.761599]
+       },
+   "properties": 
+       {"street": "17TH 3", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 33.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.86784,33.76901]
+       },
+   "properties": 
+       {"street": "MAIN 2", "color": "lime", "perpx": "0.824993", "perpy": "0.565143"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 33.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.873886,33.776455]
+       },
+   "properties": 
+       {"street": "S OF 22", "color": "lime", "perpx": "0.783267", "perpy": "0.621685"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 34.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.878226,33.781151]
+       },
+   "properties": 
+       {"street": "LA VETA", "color": "lime", "perpx": "0.58161", "perpy": "0.813468"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 34.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879468,33.782039]
+       },
+   "properties": 
+       {"street": "N OF 57", "color": "lime", "perpx": "0.544875", "perpy": "0.838517"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887536,33.789689]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 35.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.888724,33.790771]
+       },
+   "properties": 
+       {"street": "STATE COLLEGE", "color": "lime", "perpx": "0.673354", "perpy": "0.73932"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 35.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.893833,33.795663]
+       },
+   "properties": 
+       {"street": "GENE AUTRY", "color": "lime", "perpx": "0.700471", "perpy": "0.713681"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 36.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.902246,33.803764]
+       },
+   "properties": 
+       {"street": "ORANGEWOOD 2", "color": "lime", "perpx": "0.641147", "perpy": "0.767418"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 36.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.903814,33.805074]
+       },
+   "properties": 
+       {"street": "KATELLA", "color": "lime", "perpx": "0.614618", "perpy": "0.788825"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 36.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.905829,33.806644]
+       },
+   "properties": 
+       {"street": "ANAHEIM 2", "color": "lime", "perpx": "0.614618", "perpy": "0.788825"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.910643,33.811147]
+       },
+   "properties": 
+       {"street": "S OF HARBOR", "color": "lime", "perpx": "0.690175", "perpy": "0.723642"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 37.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.915054,33.815354]
+       },
+   "properties": 
+       {"street": "HARBOR", "color": "lime", "perpx": "0.700541", "perpy": "0.713613"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 37.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.918657,33.818891]
+       },
+   "properties": 
+       {"street": "BALL", "color": "lime", "perpx": "0.696671", "perpy": "0.717391"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 38.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.923123,33.823323]
+       },
+   "properties": 
+       {"street": "SOUTH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 38.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.931513,33.832016]
+       },
+   "properties": 
+       {"street": "LINCOLN", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 39.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.938078,33.834815]
+       },
+   "properties": 
+       {"street": "EUCLID 1", "color": "lime", "perpx": "0.36034", "perpy": "0.932821"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 39.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.943038,33.836731]
+       },
+   "properties": 
+       {"street": "EUCLID 2", "color": "lime", "perpx": "0.478822", "perpy": "0.877912"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 40.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.949259,33.840124]
+       },
+   "properties": 
+       {"street": "CRESCENT", "color": "lime", "perpx": "0.478822", "perpy": "0.877912"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 40.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.955716,33.843721]
+       },
+   "properties": 
+       {"street": "BROOKHURST 1", "color": "lime", "perpx": "0.541489", "perpy": "0.840708"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 40.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.958388,33.845442]
+       },
+   "properties": 
+       {"street": "BROOKHURST 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 40.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.962444,33.847549]
+       },
+   "properties": 
+       {"street": "LA PALMA", "color": "lime", "perpx": "0.442245", "perpy": "0.896895"}
+},  
+{
+   "type": "Feature",
+   "id": "5 N 43.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.991902,33.863248]
+       },
+   "properties": 
+       {"street": "STANTON", "color": "lime", "perpx": "0.437215", "perpy": "0.899357"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 0.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.598167,33.404943]
+       },
+   "properties": 
+       {"street": "S LUIS REY", "color": "lime", "perpx": "-0.892883", "perpy": "-0.450288"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 0.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.599923,33.408425]
+       },
+   "properties": 
+       {"street": "CALAFIA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 1.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.602338,33.41325]
+       },
+   "properties": 
+       {"street": "MAGDALENA", "color": "lime", "perpx": "-0.9013", "perpy": "-0.433194"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 1.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.603827,33.416348]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 2.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.609039,33.424652]
+       },
+   "properties": 
+       {"street": "PRESIDIO", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 2.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.615724,33.432273]
+       },
+   "properties": 
+       {"street": "PALIZADA", "color": "lime", "perpx": "-0.768234", "perpy": "-0.640169"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 3.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.619943,33.437336]
+       },
+   "properties": 
+       {"street": "PICO 1", "color": "lime", "perpx": "-0.498994", "perpy": "-0.866606"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 3.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.624646,33.440044]
+       },
+   "properties": 
+       {"street": "PICO 2", "color": "lime", "perpx": "-0.605568", "perpy": "-0.795794"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 5.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.650318,33.455612]
+       },
+   "properties": 
+       {"street": "N OF VAQUERO", "color": "lime", "perpx": "-0.443289", "perpy": "-0.896379"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 5.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.653153,33.457014]
+       },
+   "properties": 
+       {"street": "ESTRELLA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 6.47",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.665631,33.464281]
+       },
+   "properties": 
+       {"street": "SACRAMENTO", "color": "lime", "perpx": "-0.56275", "perpy": "-0.826627"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 6.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.667379,33.465471]
+       },
+   "properties": 
+       {"street": "RTE 1 SB", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 7.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674584,33.475102]
+       },
+   "properties": 
+       {"street": "CAPISTRANO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 7.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.669881,33.481738]
+       },
+   "properties": 
+       {"street": "AEROPUERTO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 8.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663917,33.489176]
+       },
+   "properties": 
+       {"street": "S JUAN CREEK", "color": "lime", "perpx": "-0.836267", "perpy": "0.548322"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 9.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.659442,33.496001]
+       },
+   "properties": 
+       {"street": "PLAZA", "color": "lime", "perpx": "-0.971491", "perpy": "0.237077"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 9.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.658583,33.499521]
+       },
+   "properties": 
+       {"street": "ORTEGA 1", "color": "lime", "perpx": "-0.996721", "perpy": "-0.080919"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.661127,33.5093]
+       },
+   "properties": 
+       {"street": "EL HORNO", "color": "lime", "perpx": "-0.918881", "perpy": "-0.394535"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.662905,33.513441]
+       },
+   "properties": 
+       {"street": "SERRA PARK", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 10.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.664664,33.517588]
+       },
+   "properties": 
+       {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 11.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.668912,33.526418]
+       },
+   "properties": 
+       {"street": "TRABUCO", "color": "lime", "perpx": "-0.878964", "perpy": "-0.476887"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 11.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674919,33.53231]
+       },
+   "properties": 
+       {"street": "WILDWOOD", "color": "lime", "perpx": "-0.999508", "perpy": "0.03137"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 12.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674695,33.539447]
+       },
+   "properties": 
+       {"street": "S of 73", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 12.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673404,33.545217]
+       },
+   "properties": 
+       {"street": "AVERY 1", "color": "lime", "perpx": "-0.993564", "perpy": "0.113275"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 13.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673131,33.556667]
+       },
+   "properties": 
+       {"street": "CROWN VA1", "color": "lime", "perpx": "-0.999988", "perpy": "0.004899"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 15.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671983,33.577397]
+       },
+   "properties": 
+       {"street": "OSO PARK1", "color": "lime", "perpx": "-0.999891", "perpy": "0.014798"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 15.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671925,33.581316]
+       },
+   "properties": 
+       {"street": "OSO PARK2", "color": "lime", "perpx": "-0.999911", "perpy": "0.013321"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 16.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.673779,33.595354]
+       },
+   "properties": 
+       {"street": "LA PAZ 1", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 16.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67615,33.597607]
+       },
+   "properties": 
+       {"street": "LA PAZ 2", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 17.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.687691,33.602645]
+       },
+   "properties": 
+       {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 17.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.69087,33.604617]
+       },
+   "properties": 
+       {"street": "ALICIA 2", "color": "lime", "perpx": "-0.527137", "perpy": "-0.849781"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 18.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.705361,33.612561]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 18.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.707825,33.614654]
+       },
+   "properties": 
+       {"street": "EL TORO 2", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 19.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719875,33.627286]
+       },
+   "properties": 
+       {"street": "LAKE FOR1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 19.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720919,33.628454]
+       },
+   "properties": 
+       {"street": "LAKE FOR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724813,33.631989]
+       },
+   "properties": 
+       {"street": "OLDFIELD", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.728446,33.635959]
+       },
+   "properties": 
+       {"street": "BAKE 1", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 20.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.731896,33.640308]
+       },
+   "properties": 
+       {"street": "BAKE 2", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 21.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734722,33.643978]
+       },
+   "properties": 
+       {"street": "At 405", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74294,33.654255]
+       },
+   "properties": 
+       {"street": "ALTON 1", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.743323,33.654741]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 22.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.749253,33.662021]
+       },
+   "properties": 
+       {"street": "BARRANCA", "color": "lime", "perpx": "-0.788481", "perpy": "-0.615059"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.75203,33.665581]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "-0.781645", "perpy": "-0.623724"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.7525,33.66617]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755616,33.6716]
+       },
+   "properties": 
+       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "-0.975596", "perpy": "-0.219572"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 23.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.756223,33.674297]
+       },
+   "properties": 
+       {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759362,33.67863]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764425,33.683599]
+       },
+   "properties": 
+       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "-0.835705", "perpy": "-0.549178"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 24.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.767277,33.687939]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 25.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.775267,33.700148]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "-0.828715", "perpy": "-0.559671"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 26.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.779935,33.70706]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 26.66",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.783134,33.710634]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "-0.654674", "perpy": "-0.755912"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 27.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793071,33.717966]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 27.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796638,33.72047]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.574555", "perpy": "-0.818466"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 28.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801999,33.724136]
+       },
+   "properties": 
+       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "-0.556796", "perpy": "-0.83065"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.02",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.814369,33.732587]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "-0.566824", "perpy": "-0.823839"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.824499,33.737386]
+       },
+   "properties": 
+       {"street": "NEWPORT*", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 29.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.827716,33.738432]
+       },
+   "properties": 
+       {"street": "B ST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832494,33.740098]
+       },
+   "properties": 
+       {"street": "S OF 55*", "color": "lime", "perpx": "-0.326161", "perpy": "-0.945314"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.835743,33.741219]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "-0.33389", "perpy": "-0.942612"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 30.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842538,33.745553]
+       },
+   "properties": 
+       {"street": "1ST", "color": "lime", "perpx": "-0.927915", "perpy": "-0.372793"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.844652,33.749928]
+       },
+   "properties": 
+       {"street": "4TH", "color": "lime", "perpx": "-0.697138", "perpy": "-0.716937"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.846535,33.751759]
+       },
+   "properties": 
+       {"street": "CONCORD", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.849326,33.753388]
+       },
+   "properties": 
+       {"street": "GRAND 1", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 31.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.853795,33.755475]
+       },
+   "properties": 
+       {"street": "GRAND 2", "color": "lime", "perpx": "-0.382512", "perpy": "-0.923951"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 32.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859225,33.757943]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "-0.583453", "perpy": "-0.812147"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866976,33.766429]
+       },
+   "properties": 
+       {"street": "MAIN 1", "color": "lime", "perpx": "-0.855987", "perpy": "-0.516997"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.868373,33.768742]
+       },
+   "properties": 
+       {"street": "MAIN 2", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.869238,33.770032]
+       },
+   "properties": 
+       {"street": "BROADWAY", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 33.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.874337,33.776289]
+       },
+   "properties": 
+       {"street": "S OF 22", "color": "lime", "perpx": "-0.780234", "perpy": "-0.625487"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 34.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87776,33.779824]
+       },
+   "properties": 
+       {"street": "LA VETA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 34.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880014,33.781682]
+       },
+   "properties": 
+       {"street": "N OF 57", "color": "lime", "perpx": "-0.575376", "perpy": "-0.817889"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 34.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883653,33.784761]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.675711", "perpy": "-0.737167"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 35.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.890222,33.791651]
+       },
+   "properties": 
+       {"street": "STATE COLLEGE", "color": "lime", "perpx": "-0.670989", "perpy": "-0.741468"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 35.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.892284,33.793517]
+       },
+   "properties": 
+       {"street": "ORANGEWOOD 1", "color": "lime", "perpx": "-0.668203", "perpy": "-0.743979"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 35.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.894336,33.79536]
+       },
+   "properties": 
+       {"street": "GENE AUTRY", "color": "lime", "perpx": "-0.668203", "perpy": "-0.743979"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 36.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.901359,33.802101]
+       },
+   "properties": 
+       {"street": "KATELLA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 36.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.904254,33.804788]
+       },
+   "properties": 
+       {"street": "ANAHEIM 1", "color": "lime", "perpx": "-0.654355", "perpy": "-0.756187"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 36.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.906207,33.806478]
+       },
+   "properties": 
+       {"street": "ANAHEIM 2", "color": "lime", "perpx": "-0.688863", "perpy": "-0.724891"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.910895,33.810933]
+       },
+   "properties": 
+       {"street": "S OF HARBOR", "color": "lime", "perpx": "-0.688863", "perpy": "-0.724891"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 37.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.916397,33.816263]
+       },
+   "properties": 
+       {"street": "HARBOR", "color": "lime", "perpx": "-0.689841", "perpy": "-0.723961"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.922328,33.82198]
+       },
+   "properties": 
+       {"street": "SOUTH 1", "color": "lime", "perpx": "-0.750414", "perpy": "-0.660968"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 38.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.927279,33.827601]
+       },
+   "properties": 
+       {"street": "PEPPER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 39",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.933068,33.832791]
+       },
+   "properties": 
+       {"street": "LINCOLN", "color": "lime", "perpx": "-0.327822", "perpy": "-0.944739"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 39.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.938264,33.834594]
+       },
+   "properties": 
+       {"street": "EUCLID 1", "color": "lime", "perpx": "-0.361622", "perpy": "-0.932325"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 39.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.943178,33.8365]
+       },
+   "properties": 
+       {"street": "EUCLID 2", "color": "lime", "perpx": "-0.471004", "perpy": "-0.882131"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 40.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.949454,33.839851]
+       },
+   "properties": 
+       {"street": "CRESCENT", "color": "lime", "perpx": "-0.48436", "perpy": "-0.874869"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 40.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.955942,33.843443]
+       },
+   "properties": 
+       {"street": "BROOKHURST 1", "color": "lime", "perpx": "-0.48436", "perpy": "-0.874869"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 40.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.96276,33.847169]
+       },
+   "properties": 
+       {"street": "LA PALMA", "color": "lime", "perpx": "-0.460852", "perpy": "-0.887477"}
+},  
+{
+   "type": "Feature",
+   "id": "5 S 43.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.992155,33.862901]
+       },
+   "properties": 
+       {"street": "STANTON", "color": "lime", "perpx": "-0.493087", "perpy": "-0.86998"}
+},  
+
+{
+   "type": "Feature",
+   "id": "22 E 1.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.034947,33.774261]
+       },
+   "properties": 
+       {"street": "VALLEY V2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 1.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.023344,33.774214]
+       },
+   "properties": 
+       {"street": "SPRINGDALE", "color": "lime", "perpx": "-0.000902", "perpy": "-1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 2.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.010537,33.774494]
+       },
+   "properties": 
+       {"street": "KNOTT 1", "color": "lime", "perpx": "-0.13051", "perpy": "-0.991447"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 2.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.004149,33.772807]
+       },
+   "properties": 
+       {"street": "KNOTT 2", "color": "lime", "perpx": "-0.410336", "perpy": "-0.911934"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 3.44",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.994688,33.771171]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "-0.057103", "perpy": "-0.998368"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 3.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.989845,33.770894]
+       },
+   "properties": 
+       {"street": "BEACH 2", "color": "lime", "perpx": "-0.058722", "perpy": "-0.998274"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 4.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.976135,33.767032]
+       },
+   "properties": 
+       {"street": "MAGNOLIA1", "color": "lime", "perpx": "-0.198967", "perpy": "-0.980006"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 4.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.969658,33.765717]
+       },
+   "properties": 
+       {"street": "MAGNOLIA2", "color": "lime", "perpx": "-0.198967", "perpy": "-0.980006"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 5.63",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.958333,33.765808]
+       },
+   "properties": 
+       {"street": "BROOKHUR1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 5.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.955835,33.765809]
+       },
+   "properties": 
+       {"street": "BROOKHUR2", "color": "lime", "perpx": "0.010191", "perpy": "-0.999948"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 6.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.935763,33.765995]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0.008037", "perpy": "-0.999968"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 7.29",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.929691,33.766038]
+       },
+   "properties": 
+       {"street": "NEWHOPE", "color": "lime", "perpx": "-0.00578", "perpy": "-0.999983"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 8.02",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.917517,33.768707]
+       },
+   "properties": 
+       {"street": "HARBOR 2", "color": "lime", "perpx": "0.34339", "perpy": "-0.939193"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 8.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.907372,33.773077]
+       },
+   "properties": 
+       {"street": "GARDEN G1", "color": "lime", "perpx": "0.456112", "perpy": "-0.889922"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 9.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.901985,33.775838]
+       },
+   "properties": 
+       {"street": "GARDEN GROVE 2", "color": "lime", "perpx": "0.456112", "perpy": "-0.889922"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 9.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.889394,33.778925]
+       },
+   "properties": 
+       {"street": "THE CITY DRIVE", "color": "lime", "perpx": "-0.007156", "perpy": "-0.999974"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 10.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882341,33.778903]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "0.009671", "perpy": "-0.999953"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 10.53",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875647,33.778882]
+       },
+   "properties": 
+       {"street": "W OF 5", "color": "lime", "perpx": "-0.163762", "perpy": "-0.9865"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 10.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.872382,33.77834]
+       },
+   "properties": 
+       {"street": "E OF 5", "color": "lime", "perpx": "-0.163762", "perpy": "-0.9865"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 11.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.862808,33.778206]
+       },
+   "properties": 
+       {"street": "MAIN", "color": "lime", "perpx": "-0.226291", "perpy": "-0.97406"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 11.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.855753,33.776567]
+       },
+   "properties": 
+       {"street": "GLASSELL1", "color": "lime", "perpx": "-0.249497", "perpy": "-0.968376"}
+},  
+{
+   "type": "Feature",
+   "id": "22 E 12.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.850292,33.77516]
+       },
+   "properties": 
+       {"street": "GLASSELL2", "color": "lime", "perpx": "0.111941", "perpy": "-0.993715"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 0.89",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.038174,33.774686]
+       },
+   "properties": 
+       {"street": "VALLEY V1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.036302,33.774521]
+       },
+   "properties": 
+       {"street": "VALLEY V2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 1.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.023337,33.77439]
+       },
+   "properties": 
+       {"street": "SPRINGDALE", "color": "lime", "perpx": "0.003425", "perpy": "0.999994"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 2.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.010501,33.774652]
+       },
+   "properties": 
+       {"street": "KNOTT 1", "color": "lime", "perpx": "0.127522", "perpy": "0.991836"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 2.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.004084,33.772939]
+       },
+   "properties": 
+       {"street": "KNOTT 2", "color": "lime", "perpx": "0.421869", "perpy": "0.906657"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 3.45",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.994525,33.771348]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "0.061692", "perpy": "0.998095"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 3.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.989817,33.771057]
+       },
+   "properties": 
+       {"street": "BEACH2", "color": "lime", "perpx": "0.055628", "perpy": "0.998452"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 4.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.976011,33.767155]
+       },
+   "properties": 
+       {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.196678", "perpy": "0.980468"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 4.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.96964,33.765877]
+       },
+   "properties": 
+       {"street": "MAGNOLIA2", "color": "lime", "perpx": "0.196678", "perpy": "0.980468"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 5.57",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.959407,33.765954]
+       },
+   "properties": 
+       {"street": "BROOKHUR1", "color": "lime", "perpx": "-0.004759", "perpy": "0.999989"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 6.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.935768,33.766144]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "-0.011359", "perpy": "0.999935"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 7.29",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.929696,33.766181]
+       },
+   "properties": 
+       {"street": "NEWHOPE", "color": "lime", "perpx": "-0.00578", "perpy": "0.999983"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 7.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.922445,33.767174]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "-0.323962", "perpy": "0.94607"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 7.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.919037,33.768341]
+       },
+   "properties": 
+       {"street": "HARBOR 2", "color": "lime", "perpx": "-0.337825", "perpy": "0.941209"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 8.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.907475,33.773193]
+       },
+   "properties": 
+       {"street": "GARDEN G1", "color": "lime", "perpx": "-0.456614", "perpy": "0.889665"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 9.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.902076,33.775964]
+       },
+   "properties": 
+       {"street": "GARDEN G2", "color": "lime", "perpx": "-0.456614", "perpy": "0.889665"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 9.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.889576,33.779085]
+       },
+   "properties": 
+       {"street": "CITY DRIVE", "color": "lime", "perpx": "0.007955", "perpy": "0.999968"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 9.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.886182,33.779058]
+       },
+   "properties": 
+       {"street": "HESPERIAN", "color": "lime", "perpx": "0.007955", "perpy": "0.999968"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 10.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882183,33.779081]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "-0.00667", "perpy": "0.999978"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 10.53",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875662,33.779039]
+       },
+   "properties": 
+       {"street": "W OF 5", "color": "lime", "perpx": "0.174163", "perpy": "0.984717"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 10.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.872394,33.778461]
+       },
+   "properties": 
+       {"street": "E OF 5", "color": "lime", "perpx": "0.174163", "perpy": "0.984717"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 11.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.863135,33.778348]
+       },
+   "properties": 
+       {"street": "MAIN", "color": "lime", "perpx": "0.219291", "perpy": "0.97566"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 11.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.855696,33.776676]
+       },
+   "properties": 
+       {"street": "GLASSELL1", "color": "lime", "perpx": "0.249721", "perpy": "0.968318"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 12.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.850279,33.775279]
+       },
+   "properties": 
+       {"street": "GLASSELL2", "color": "lime", "perpx": "-0.113292", "perpy": "0.993562"}
+},  
+{
+   "type": "Feature",
+   "id": "22 W 12.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.838554,33.776862]
+       },
+   "properties": 
+       {"street": "TUSTIN", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "55 N 2.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.908497,33.651784]
+       },
+   "properties": 
+       {"street": "VICTORIA1", "color": "lime", "perpx": "0.712053", "perpy": "-0.702126"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 3.07",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.905264,33.655235]
+       },
+   "properties": 
+       {"street": "VICTORIA2", "color": "lime", "perpx": "0.7454", "perpy": "-0.666618"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 3.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.899494,33.661052]
+       },
+   "properties": 
+       {"street": "FAIR 1", "color": "lime", "perpx": "0.711701", "perpy": "-0.702482"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 3.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.895303,33.665298]
+       },
+   "properties": 
+       {"street": "FAIR 2", "color": "lime", "perpx": "0.711701", "perpy": "-0.702482"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 4.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.888101,33.671785]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "0.612685", "perpy": "-0.790327"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.886575,33.672968]
+       },
+   "properties": 
+       {"street": "BAKER 1", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.06",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882208,33.676702]
+       },
+   "properties": 
+       {"street": "BAKER 2", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.877327,33.681801]
+       },
+   "properties": 
+       {"street": "PAULARINO 1", "color": "lime", "perpx": "0.73612", "perpy": "-0.676851"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 5.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.873498,33.685939]
+       },
+   "properties": 
+       {"street": "PAULARINO 2", "color": "lime", "perpx": "0.719864", "perpy": "-0.694115"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 6.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.861831,33.698026]
+       },
+   "properties": 
+       {"street": "MACARTHU1", "color": "lime", "perpx": "0.740557", "perpy": "-0.671994"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 7.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.860155,33.699873]
+       },
+   "properties": 
+       {"street": "MACARTHU2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 7.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.85183,33.708364]
+       },
+   "properties": 
+       {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 8.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.848847,33.711314]
+       },
+   "properties": 
+       {"street": "DYER 2", "color": "lime", "perpx": "0.71172", "perpy": "-0.702463"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 9.41",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.83503,33.726049]
+       },
+   "properties": 
+       {"street": "EDINGER 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 9.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833555,33.732101]
+       },
+   "properties": 
+       {"street": "MCFADDEN", "color": "lime", "perpx": "0.999932", "perpy": "-0.011627"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833583,33.737088]
+       },
+   "properties": 
+       {"street": "N OF 5 OFF", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.83368,33.739982]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.999923", "perpy": "0.012439"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833698,33.741429]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "0.97478", "perpy": "-0.22317"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 11.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831768,33.749859]
+       },
+   "properties": 
+       {"street": "FOURTH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 11.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830994,33.759105]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830834,33.762898]
+       },
+   "properties": 
+       {"street": "17TH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 12.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830912,33.773139]
+       },
+   "properties": 
+       {"street": "FAIRHAVEN", "color": "lime", "perpx": "0.999999", "perpy": "0.001196"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 13.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.830884,33.790409]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831045,33.797732]
+       },
+   "properties": 
+       {"street": "Walnut", "color": "lime", "perpx": "0.994412", "perpy": "0.105571"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 14.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831355,33.800652]
+       },
+   "properties": 
+       {"street": "COLLINS", "color": "lime", "perpx": "0.994412", "perpy": "0.105571"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 15.22",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831849,33.809608]
+       },
+   "properties": 
+       {"street": "KATELLA 1", "color": "lime", "perpx": "0.999767", "perpy": "0.021575"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 15.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831905,33.812203]
+       },
+   "properties": 
+       {"street": "KATELLA  2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 15.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831919,33.817981]
+       },
+   "properties": 
+       {"street": "TAFT", "color": "lime", "perpx": "1.0", "perpy": "0.000172"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 16.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.83192,33.823807]
+       },
+   "properties": 
+       {"street": "MEATS", "color": "lime", "perpx": "1.0", "perpy": "0.000172"}
+},  
+{
+   "type": "Feature",
+   "id": "55 N 17.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.834992,33.837111]
+       },
+   "properties": 
+       {"street": "LINCOLN 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 2.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.908673,33.651901]
+       },
+   "properties": 
+       {"street": "VICTORIA1", "color": "lime", "perpx": "-0.732846", "perpy": "0.680394"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 3.07",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.905456,33.655366]
+       },
+   "properties": 
+       {"street": "VICTORIA2", "color": "lime", "perpx": "-0.732846", "perpy": "0.680394"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 3.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.899681,33.661183]
+       },
+   "properties": 
+       {"street": "FAIR 1", "color": "lime", "perpx": "-0.712081", "perpy": "0.702098"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 3.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.895493,33.665433]
+       },
+   "properties": 
+       {"street": "FAIR 2", "color": "lime", "perpx": "-0.719731", "perpy": "0.694253"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 4.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.888309,33.671928]
+       },
+   "properties": 
+       {"street": "BRISTOL", "color": "lime", "perpx": "-0.612257", "perpy": "0.790659"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88678,33.673112]
+       },
+   "properties": 
+       {"street": "BAKER 1", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.06",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882355,33.676789]
+       },
+   "properties": 
+       {"street": "BAKER 2", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87755,33.681935]
+       },
+   "properties": 
+       {"street": "PAULARINO 1", "color": "lime", "perpx": "-0.722093", "perpy": "0.691796"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 5.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.873635,33.686016]
+       },
+   "properties": 
+       {"street": "PAULARINO 2", "color": "lime", "perpx": "-0.725185", "perpy": "0.688554"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 6.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.862677,33.697495]
+       },
+   "properties": 
+       {"street": "MACARTHU1", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 7.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.861041,33.699146]
+       },
+   "properties": 
+       {"street": "MACARTHU2", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 7.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.854598,33.705879]
+       },
+   "properties": 
+       {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 8.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.849099,33.711451]
+       },
+   "properties": 
+       {"street": "DYER 2", "color": "lime", "perpx": "-0.708914", "perpy": "0.705295"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 9.19",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.837265,33.723387]
+       },
+   "properties": 
+       {"street": "EDINGER 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 9.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833996,33.73212]
+       },
+   "properties": 
+       {"street": "MCFADDEN", "color": "lime", "perpx": "-0.999946", "perpy": "-0.010425"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 10.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833908,33.739982]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.999756", "perpy": "0.022109"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.833876,33.741429]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "-0.987616", "perpy": "0.156888"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 11.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831392,33.75738]
+       },
+   "properties": 
+       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 12.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831088,33.773138]
+       },
+   "properties": 
+       {"street": "FAIRHAVEN", "color": "lime", "perpx": "-0.999999", "perpy": "-0.001368"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 13.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831128,33.784755]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 13.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831081,33.788212]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831223,33.797729]
+       },
+   "properties": 
+       {"street": "Walnut", "color": "lime", "perpx": "-0.994624", "perpy": "-0.10355"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 14.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831527,33.800649]
+       },
+   "properties": 
+       {"street": "COLLINS", "color": "lime", "perpx": "-0.994624", "perpy": "-0.10355"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 15.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832098,33.817979]
+       },
+   "properties": 
+       {"street": "TAFT", "color": "lime", "perpx": "-1.0", "perpy": "0.000172"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 16.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832097,33.823807]
+       },
+   "properties": 
+       {"street": "MEATS", "color": "lime", "perpx": "-1.0", "perpy": "0.000172"}
+},  
+{
+   "type": "Feature",
+   "id": "55 S 16.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.834539,33.830875]
+       },
+   "properties": 
+       {"street": "LINCOLN 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "57 N 11.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879424,33.78435]
+       },
+   "properties": 
+       {"street": "AT CHAPMAN OFF", "color": "lime", "perpx": "0.991811", "perpy": "0.127713"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 11.22",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879769,33.787426]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 11.39",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879799,33.790105]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 11.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.878448,33.794121]
+       },
+   "properties": 
+       {"street": "ORANGEWO1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 11.78",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.877848,33.795482]
+       },
+   "properties": 
+       {"street": "ORANGEWO2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 12.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880058,33.805531]
+       },
+   "properties": 
+       {"street": "KATELLA 1", "color": "lime", "perpx": "0.984745", "perpy": "-0.174004"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 12.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879353,33.808904]
+       },
+   "properties": 
+       {"street": "KATELLA 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 13.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876254,33.81772]
+       },
+   "properties": 
+       {"street": "BALL 1", "color": "lime", "perpx": "0.980879", "perpy": "-0.194619"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 13.56",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875999,33.820297]
+       },
+   "properties": 
+       {"street": "BALL 2", "color": "lime", "perpx": "0.999993", "perpy": "-0.00368"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 13.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875981,33.825188]
+       },
+   "properties": 
+       {"street": "Wagner", "color": "lime", "perpx": "0.999993", "perpy": "-0.00368"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875965,33.83238]
+       },
+   "properties": 
+       {"street": "South", "color": "lime", "perpx": "0.999995", "perpy": "-0.003244"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 14.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87595,33.837126]
+       },
+   "properties": 
+       {"street": "LINCOLN 1", "color": "lime", "perpx": "0.999982", "perpy": "-0.00608"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 14.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875935,33.839593]
+       },
+   "properties": 
+       {"street": "LINCOLN 2", "color": "lime", "perpx": "0.999936", "perpy": "-0.011332"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 15.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875902,33.842505]
+       },
+   "properties": 
+       {"street": "UNDERHILL", "color": "lime", "perpx": "0.999936", "perpy": "-0.011332"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 15.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875931,33.846873]
+       },
+   "properties": 
+       {"street": "LA PALMA", "color": "lime", "perpx": "0.996618", "perpy": "-0.082174"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 16.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.877557,33.862728]
+       },
+   "properties": 
+       {"street": "ORANGETHORPE", "color": "lime", "perpx": "0.95802", "perpy": "0.286703"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 17.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88031,33.880532]
+       },
+   "properties": 
+       {"street": "NUTWOOD", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 18.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880484,33.888435]
+       },
+   "properties": 
+       {"street": "YORBA LI1", "color": "lime", "perpx": "0.999634", "perpy": "0.027056"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 18.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880559,33.891206]
+       },
+   "properties": 
+       {"street": "YORBA LI2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 18.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880822,33.896472]
+       },
+   "properties": 
+       {"street": "Bastanchury", "color": "lime", "perpx": "0.997832", "perpy": "0.065812"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 19.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.881063,33.900126]
+       },
+   "properties": 
+       {"street": "ROLLING  HILLS", "color": "lime", "perpx": "0.997832", "perpy": "0.065812"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 19.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883309,33.909962]
+       },
+   "properties": 
+       {"street": "IMPERIAL1", "color": "lime", "perpx": "0.998732", "perpy": "-0.050333"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 20.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.882887,33.913565]
+       },
+   "properties": 
+       {"street": "IMPERIAL2", "color": "lime", "perpx": "0.93136", "perpy": "-0.364101"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 21.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879881,33.929701]
+       },
+   "properties": 
+       {"street": "LAMBERT", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 N 22",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875138,33.940872]
+       },
+   "properties": 
+       {"street": "TONNER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 10.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.874735,33.777415]
+       },
+   "properties": 
+       {"street": "RTE 22 & 5", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 11.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880197,33.783256]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.99935", "perpy": "0.036044"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 11.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.879621,33.792388]
+       },
+   "properties": 
+       {"street": "ORANGEWOOD", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 12.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88008,33.804096]
+       },
+   "properties": 
+       {"street": "KATELLA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 12.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880243,33.806677]
+       },
+   "properties": 
+       {"street": "KATELLA 2", "color": "lime", "perpx": "-0.945662", "perpy": "0.325152"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 13.27",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876814,33.816163]
+       },
+   "properties": 
+       {"street": "BALL 1", "color": "lime", "perpx": "-0.983876", "perpy": "0.178852"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 13.45",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876349,33.818721]
+       },
+   "properties": 
+       {"street": "BALL 2", "color": "lime", "perpx": "-0.999897", "perpy": "0.01437"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 13.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876256,33.825192]
+       },
+   "properties": 
+       {"street": "Wagner", "color": "lime", "perpx": "-0.999897", "perpy": "0.01437"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876232,33.832386]
+       },
+   "properties": 
+       {"street": "South", "color": "lime", "perpx": "-0.999935", "perpy": "0.011398"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 14.65",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876191,33.835983]
+       },
+   "properties": 
+       {"street": "LINCOLN 1", "color": "lime", "perpx": "-0.999998", "perpy": "0.001928"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 14.83",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876186,33.838577]
+       },
+   "properties": 
+       {"street": "LINCOLN 2", "color": "lime", "perpx": "-0.999986", "perpy": "-0.005368"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 15.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876207,33.842489]
+       },
+   "properties": 
+       {"street": "UNDERHILL", "color": "lime", "perpx": "-0.999986", "perpy": "-0.005368"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 16.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87757,33.862118]
+       },
+   "properties": 
+       {"street": "ORANGETHOR", "color": "lime", "perpx": "-0.960098", "perpy": "-0.279663"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 17.18",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880462,33.872312]
+       },
+   "properties": 
+       {"street": "CHAPMAN 3", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 17.41",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880503,33.87562]
+       },
+   "properties": 
+       {"street": "NUTWOOD", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 18.18",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880716,33.886705]
+       },
+   "properties": 
+       {"street": "YORBA LI1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 18.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.880785,33.889447]
+       },
+   "properties": 
+       {"street": "YORBA LI2", "color": "lime", "perpx": "-0.999684", "perpy": "-0.025156"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 18.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.881094,33.896472]
+       },
+   "properties": 
+       {"street": "Bastanchury", "color": "lime", "perpx": "-0.99801", "perpy": "-0.063058"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 19.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.881325,33.900128]
+       },
+   "properties": 
+       {"street": "ROLLING HILLS", "color": "lime", "perpx": "-0.99801", "perpy": "-0.063058"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 19.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883224,33.90899]
+       },
+   "properties": 
+       {"street": "IMPERIAL1", "color": "lime", "perpx": "-0.986464", "perpy": "-0.163975"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 19.94",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883726,33.91201]
+       },
+   "properties": 
+       {"street": "IMPERIAL2", "color": "lime", "perpx": "-0.953779", "perpy": "0.30051"}
+},  
+{
+   "type": "Feature",
+   "id": "57 S 22.06",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.874675,33.94149]
+       },
+   "properties": 
+       {"street": "TONNER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "73 N 10.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674552,33.545677]
+       },
+   "properties": 
+       {"street": "CAPISTRANO", "color": "lime", "perpx": "0.971174", "perpy": "0.238373"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 10.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.675644,33.550126]
+       },
+   "properties": 
+       {"street": "SORRENTO", "color": "lime", "perpx": "0.940629", "perpy": "0.339435"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 11.22",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.677239,33.554546]
+       },
+   "properties": 
+       {"street": "CABOT", "color": "lime", "perpx": "0.940629", "perpy": "0.339435"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 11.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.683209,33.557803]
+       },
+   "properties": 
+       {"street": "GREENFIELD 1", "color": "lime", "perpx": "0.198325", "perpy": "0.980136"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.689417,33.559105]
+       },
+   "properties": 
+       {"street": "GREENFIELD 2", "color": "lime", "perpx": "0.471098", "perpy": "0.882081"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 12.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.693351,33.562029]
+       },
+   "properties": 
+       {"street": "ROCKRIDGE", "color": "lime", "perpx": "0.802439", "perpy": "0.596734"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 12.52",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.695254,33.564588]
+       },
+   "properties": 
+       {"street": "WESTRIDGE", "color": "lime", "perpx": "0.701895", "perpy": "0.712281"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 12.83",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.698683,33.567967]
+       },
+   "properties": 
+       {"street": "MOULTON", "color": "lime", "perpx": "0.701895", "perpy": "0.712281"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 13.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.702528,33.571095]
+       },
+   "properties": 
+       {"street": "PACIFIC PARK", "color": "lime", "perpx": "0.63793", "perpy": "0.770095"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 13.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.70902,33.574966]
+       },
+   "properties": 
+       {"street": "LA PAZ 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 13.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.710558,33.575554]
+       },
+   "properties": 
+       {"street": "ALICIA", "color": "lime", "perpx": "0.357106", "perpy": "0.934064"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 13.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.714614,33.577091]
+       },
+   "properties": 
+       {"street": "ALISO 1", "color": "lime", "perpx": "0.4066", "perpy": "0.913606"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720958,33.580619]
+       },
+   "properties": 
+       {"street": "ALISO 3", "color": "lime", "perpx": "0.580052", "perpy": "0.81458"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 14.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724921,33.583441]
+       },
+   "properties": 
+       {"street": "ALISO 4", "color": "lime", "perpx": "0.578216", "perpy": "0.815884"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 14.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72822,33.585779]
+       },
+   "properties": 
+       {"street": "LAGUNA HILLS", "color": "lime", "perpx": "0.329384", "perpy": "0.944196"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 15.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.733096,33.58748]
+       },
+   "properties": 
+       {"street": "GLENWOOD 1", "color": "lime", "perpx": "0.329384", "perpy": "0.944196"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 15.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.740639,33.588223]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "0.158104", "perpy": "0.987422"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 15.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744983,33.589091]
+       },
+   "properties": 
+       {"street": "EL TORO 2", "color": "lime", "perpx": "0.321018", "perpy": "0.947073"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 16.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.749665,33.590678]
+       },
+   "properties": 
+       {"street": "EL TORO 3", "color": "lime", "perpx": "0.321018", "perpy": "0.947073"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 16.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755573,33.591624]
+       },
+   "properties": 
+       {"street": "EL TORO 4", "color": "lime", "perpx": "0.151183", "perpy": "0.988506"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 16.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.76171,33.593909]
+       },
+   "properties": 
+       {"street": "RTE 133 3", "color": "lime", "perpx": "0.57864", "perpy": "0.815583"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 17.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764653,33.595997]
+       },
+   "properties": 
+       {"street": "RTE 133 4", "color": "lime", "perpx": "0.57864", "perpy": "0.815583"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 17.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.770961,33.598966]
+       },
+   "properties": 
+       {"street": "S OF PM 18", "color": "lime", "perpx": "0.126344", "perpy": "0.991986"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 17.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.776669,33.599693]
+       },
+   "properties": 
+       {"street": "AT PM 18", "color": "lime", "perpx": "0.126344", "perpy": "0.991986"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 18.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.782151,33.601969]
+       },
+   "properties": 
+       {"street": "WILDLIFE", "color": "lime", "perpx": "0.16463", "perpy": "0.986355"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 18.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.786992,33.602777]
+       },
+   "properties": 
+       {"street": "CATALINA 1", "color": "lime", "perpx": "0.16463", "perpy": "0.986355"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 19.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801253,33.607825]
+       },
+   "properties": 
+       {"street": "CATALINA 2", "color": "lime", "perpx": "0.300702", "perpy": "0.953718"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 19.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.806039,33.609334]
+       },
+   "properties": 
+       {"street": "CATALINA 3", "color": "lime", "perpx": "0.300702", "perpy": "0.953718"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 20.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.812765,33.610446]
+       },
+   "properties": 
+       {"street": "SAND CANYON 1", "color": "lime", "perpx": "0.469891", "perpy": "0.882724"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 20.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.815658,33.611986]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.469891", "perpy": "0.882724"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 20.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.817786,33.614224]
+       },
+   "properties": 
+       {"street": "SAND CANYON 3", "color": "lime", "perpx": "0.871209", "perpy": "0.490912"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 20.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.819255,33.616831]
+       },
+   "properties": 
+       {"street": "SAND CANYON 4", "color": "lime", "perpx": "0.796595", "perpy": "0.604514"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 21.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.822056,33.620522]
+       },
+   "properties": 
+       {"street": "SAND CANYON 5", "color": "lime", "perpx": "0.796595", "perpy": "0.604514"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 21.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.828171,33.623392]
+       },
+   "properties": 
+       {"street": "NEWPORT COAST 1", "color": "lime", "perpx": "0.622803", "perpy": "0.782378"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 21.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.831907,33.626366]
+       },
+   "properties": 
+       {"street": "NEWPORT COAST 2", "color": "lime", "perpx": "0.622803", "perpy": "0.782378"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 22.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.837358,33.629759]
+       },
+   "properties": 
+       {"street": "S OF BONITA", "color": "lime", "perpx": "0.284483", "perpy": "0.958681"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 22.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842241,33.631208]
+       },
+   "properties": 
+       {"street": "BONITA 1", "color": "lime", "perpx": "0.292278", "perpy": "0.956333"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 22.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.847113,33.632697]
+       },
+   "properties": 
+       {"street": "BONITA 2", "color": "lime", "perpx": "0.292278", "perpy": "0.956333"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.852976,33.635664]
+       },
+   "properties": 
+       {"street": "N OF BONITA", "color": "lime", "perpx": "0.589389", "perpy": "0.80785"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.856881,33.638513]
+       },
+   "properties": 
+       {"street": "BISON 1", "color": "lime", "perpx": "0.800308", "perpy": "0.599589"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 23.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859875,33.643656]
+       },
+   "properties": 
+       {"street": "BISON 2", "color": "lime", "perpx": "0.976131", "perpy": "0.217185"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 24.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.860508,33.646501]
+       },
+   "properties": 
+       {"street": "MACARTHUR 2", "color": "lime", "perpx": "0.976131", "perpy": "0.217185"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 24.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.8614,33.650823]
+       },
+   "properties": 
+       {"street": "UNIVERSITY SOUT", "color": "lime", "perpx": "0.853282", "perpy": "0.52145"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 24.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.864027,33.654806]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0.635445", "perpy": "0.772146"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 24.78",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.86475,33.655401]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "0.635445", "perpy": "0.772146"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 25.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.870921,33.659804]
+       },
+   "properties": 
+       {"street": "ORCHID", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 25.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.87634,33.663519]
+       },
+   "properties": 
+       {"street": "CAMPUS", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 26.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.883175,33.67012]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "0.756677", "perpy": "0.653789"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 26.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887299,33.674893]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0.76071", "perpy": "0.649092"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 27.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.894515,33.683052]
+       },
+   "properties": 
+       {"street": "BEAR 2", "color": "lime", "perpx": "0.737613", "perpy": "0.675223"}
+},  
+{
+   "type": "Feature",
+   "id": "73 N 27.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.897754,33.686594]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 10.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674915,33.545627]
+       },
+   "properties": 
+       {"street": "CAPISTRANO", "color": "lime", "perpx": "-0.969543", "perpy": "-0.244923"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 10.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.676025,33.550021]
+       },
+   "properties": 
+       {"street": "SORRENTO", "color": "lime", "perpx": "-0.942619", "perpy": "-0.333871"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 11.22",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.677553,33.554335]
+       },
+   "properties": 
+       {"street": "CABOT", "color": "lime", "perpx": "-0.942619", "perpy": "-0.333871"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 11.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.683347,33.557463]
+       },
+   "properties": 
+       {"street": "GREENFIELD 1", "color": "lime", "perpx": "-0.204557", "perpy": "-0.978855"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.689492,33.558786]
+       },
+   "properties": 
+       {"street": "GREENFIELD 2", "color": "lime", "perpx": "-0.452101", "perpy": "-0.891967"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 12.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.693516,33.56161]
+       },
+   "properties": 
+       {"street": "ROCKRIDGE", "color": "lime", "perpx": "-0.799245", "perpy": "-0.601005"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 12.52",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.695429,33.564154]
+       },
+   "properties": 
+       {"street": "WESTRIDGE", "color": "lime", "perpx": "-0.799245", "perpy": "-0.601005"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 12.83",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.698836,33.567532]
+       },
+   "properties": 
+       {"street": "MOULTON", "color": "lime", "perpx": "-0.62128", "perpy": "-0.783589"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 13.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.702926,33.570836]
+       },
+   "properties": 
+       {"street": "PACIFIC PARK", "color": "lime", "perpx": "-0.631459", "perpy": "-0.775409"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 13.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.706028,33.573158]
+       },
+   "properties": 
+       {"street": "LA PAZ  1", "color": "lime", "perpx": "-0.587164", "perpy": "-0.809468"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 13.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71075,33.575244]
+       },
+   "properties": 
+       {"street": "ALICIA", "color": "lime", "perpx": "-0.354891", "perpy": "-0.934908"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 13.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.714799,33.576781]
+       },
+   "properties": 
+       {"street": "ALISO 1", "color": "lime", "perpx": "-0.354891", "perpy": "-0.934908"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 14.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.721195,33.580299]
+       },
+   "properties": 
+       {"street": "ALISO 3", "color": "lime", "perpx": "-0.578216", "perpy": "-0.815884"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 14.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.725184,33.583126]
+       },
+   "properties": 
+       {"street": "ALISO 4", "color": "lime", "perpx": "-0.56863", "perpy": "-0.822593"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 14.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.728504,33.585421]
+       },
+   "properties": 
+       {"street": "LAGUNA HILLS", "color": "lime", "perpx": "-0.332032", "perpy": "-0.943268"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 15.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.733325,33.587118]
+       },
+   "properties": 
+       {"street": "GLENWOOD 1", "color": "lime", "perpx": "-0.332032", "perpy": "-0.943268"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 15.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.740964,33.587924]
+       },
+   "properties": 
+       {"street": "EL TORO 1", "color": "lime", "perpx": "-0.173867", "perpy": "-0.984769"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 15.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.745361,33.588855]
+       },
+   "properties": 
+       {"street": "EL TORO 2", "color": "lime", "perpx": "-0.317685", "perpy": "-0.948196"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 16.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.750156,33.590342]
+       },
+   "properties": 
+       {"street": "EL TORO 3", "color": "lime", "perpx": "-0.192332", "perpy": "-0.98133"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 16.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.755882,33.59118]
+       },
+   "properties": 
+       {"street": "EL TORO 4", "color": "lime", "perpx": "-0.141421", "perpy": "-0.989949"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 16.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.761968,33.593514]
+       },
+   "properties": 
+       {"street": "RTE 133 3", "color": "lime", "perpx": "-0.569484", "perpy": "-0.822002"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 17.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764927,33.595564]
+       },
+   "properties": 
+       {"street": "RTE 133 4", "color": "lime", "perpx": "-0.569484", "perpy": "-0.822002"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 17.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.771217,33.59849]
+       },
+   "properties": 
+       {"street": "S OF PM 18", "color": "lime", "perpx": "-0.12791", "perpy": "-0.991786"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 17.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.776885,33.599221]
+       },
+   "properties": 
+       {"street": "AT PM 18", "color": "lime", "perpx": "-0.12791", "perpy": "-0.991786"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 18.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.78232,33.601523]
+       },
+   "properties": 
+       {"street": "WILDLIFE", "color": "lime", "perpx": "-0.168311", "perpy": "-0.985734"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 18.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.787181,33.602353]
+       },
+   "properties": 
+       {"street": "CATALINA 1", "color": "lime", "perpx": "-0.168311", "perpy": "-0.985734"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 19.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.801595,33.607237]
+       },
+   "properties": 
+       {"street": "CATALINA 2", "color": "lime", "perpx": "-0.309175", "perpy": "-0.951005"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 19.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.806455,33.608817]
+       },
+   "properties": 
+       {"street": "CATALINA 3", "color": "lime", "perpx": "-0.309175", "perpy": "-0.951005"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 20.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813251,33.610123]
+       },
+   "properties": 
+       {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.472863", "perpy": "-0.881136"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 20.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.816184,33.611697]
+       },
+   "properties": 
+       {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.472863", "perpy": "-0.881136"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 20.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.8183,33.614005]
+       },
+   "properties": 
+       {"street": "SAND CANYON 3", "color": "lime", "perpx": "-0.879015", "perpy": "-0.476793"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 20.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.819745,33.616669]
+       },
+   "properties": 
+       {"street": "SAND CANYON 4", "color": "lime", "perpx": "-0.795225", "perpy": "-0.606314"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 21.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.822441,33.620205]
+       },
+   "properties": 
+       {"street": "SAND CANYON 5", "color": "lime", "perpx": "-0.795225", "perpy": "-0.606314"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 21.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.828338,33.623005]
+       },
+   "properties": 
+       {"street": "NEWPORT COAST 1", "color": "lime", "perpx": "-0.61327", "perpy": "-0.789873"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 21.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832171,33.625981]
+       },
+   "properties": 
+       {"street": "NEWPORT COAST 2", "color": "lime", "perpx": "-0.61327", "perpy": "-0.789873"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 22.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.837662,33.629475]
+       },
+   "properties": 
+       {"street": "S OF BONITA", "color": "lime", "perpx": "-0.283058", "perpy": "-0.959103"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 22.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842609,33.630935]
+       },
+   "properties": 
+       {"street": "BONITA 1", "color": "lime", "perpx": "-0.294979", "perpy": "-0.955504"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 22.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.847497,33.632444]
+       },
+   "properties": 
+       {"street": "BONITA 2", "color": "lime", "perpx": "-0.294979", "perpy": "-0.955504"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.853396,33.635399]
+       },
+   "properties": 
+       {"street": "N OF BONITA", "color": "lime", "perpx": "-0.600727", "perpy": "-0.799454"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 23.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.857266,33.638307]
+       },
+   "properties": 
+       {"street": "BISON 1", "color": "lime", "perpx": "-0.780647", "perpy": "-0.624972"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 23.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.859193,33.640714]
+       },
+   "properties": 
+       {"street": "MACARTHUR 1", "color": "lime", "perpx": "-0.924825", "perpy": "-0.380393"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 23.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.86032,33.643454]
+       },
+   "properties": 
+       {"street": "BISON 2", "color": "lime", "perpx": "-0.974437", "perpy": "-0.22466"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 24.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.860978,33.646308]
+       },
+   "properties": 
+       {"street": "MACARTHUR 2", "color": "lime", "perpx": "-0.977116", "perpy": "-0.212707"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 24.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.861933,33.650695]
+       },
+   "properties": 
+       {"street": "UNIVERSITY SOUT", "color": "lime", "perpx": "-0.977116", "perpy": "-0.212707"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 24.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.864335,33.65462]
+       },
+   "properties": 
+       {"street": "JAMBOREE 1", "color": "lime", "perpx": "-0.633861", "perpy": "-0.773447"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 24.78",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.865011,33.655174]
+       },
+   "properties": 
+       {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.633861", "perpy": "-0.773447"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 25.25",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.871215,33.659515]
+       },
+   "properties": 
+       {"street": "ORCHID", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 25.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876633,33.66324]
+       },
+   "properties": 
+       {"street": "CAMPUS", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 26.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88342,33.669908]
+       },
+   "properties": 
+       {"street": "S OF 55", "color": "lime", "perpx": "-0.750726", "perpy": "-0.660614"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 26.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887584,33.67464]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "-0.742508", "perpy": "-0.669837"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 27.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.892743,33.68058]
+       },
+   "properties": 
+       {"street": "BEAR 1", "color": "lime", "perpx": "-0.749261", "perpy": "-0.662275"}
+},  
+{
+   "type": "Feature",
+   "id": "73 S 27.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.898045,33.686456]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "91 E 0.45",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.034919,33.85912]
+       },
+   "properties": 
+       {"street": "MAGNOLIA", "color": "lime", "perpx": "-0.383803", "perpy": "-0.923415"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 0.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.032578,33.858147]
+       },
+   "properties": 
+       {"street": "ORANGETHORPE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 0.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.967371,33.854376]
+       },
+   "properties": 
+       {"street": "GILBERT", "color": "lime", "perpx": "-0.057735", "perpy": "-0.998332"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.026091,33.856083]
+       },
+   "properties": 
+       {"street": "VALLEY VIEW", "color": "lime", "perpx": "-0.035152", "perpy": "-0.999382"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 1.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.95679,33.853902]
+       },
+   "properties": 
+       {"street": "BROOKHURST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 1.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.011986,33.855903]
+       },
+   "properties": 
+       {"street": "KNOTT 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 1.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.008847,33.855926]
+       },
+   "properties": 
+       {"street": "KNOTT 2", "color": "lime", "perpx": "-0.02939", "perpy": "-0.999568"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 2.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.938876,33.854029]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0.032946", "perpy": "0.999457"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 2.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.998577,33.855997]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "0.008629", "perpy": "-0.999963"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 2.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.995448,33.856024]
+       },
+   "properties": 
+       {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 3.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.912688,33.853681]
+       },
+   "properties": 
+       {"street": "LEMON", "color": "lime", "perpx": "0.01578", "perpy": "-0.999875"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 4.18",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.907999,33.853755]
+       },
+   "properties": 
+       {"street": "EAST", "color": "lime", "perpx": "0.004058", "perpy": "-0.999992"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 4.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.905042,33.853767]
+       },
+   "properties": 
+       {"street": "EAST", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 4.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.897738,33.853874]
+       },
+   "properties": 
+       {"street": "ACACIA", "color": "lime", "perpx": "0.011516", "perpy": "-0.999934"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 5.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887676,33.853992]
+       },
+   "properties": 
+       {"street": "STATE COLLEGE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 6.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.876605,33.850044]
+       },
+   "properties": 
+       {"street": "W OF 57", "color": "lime", "perpx": "-0.41458", "perpy": "-0.910013"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 6.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.872812,33.848316]
+       },
+   "properties": 
+       {"street": "E OF 57", "color": "lime", "perpx": "-0.41458", "perpy": "-0.910013"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 6.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.864299,33.846226]
+       },
+   "properties": 
+       {"street": "LA PALMA", "color": "lime", "perpx": "0.171763", "perpy": "-0.985138"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 7.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.856212,33.847636]
+       },
+   "properties": 
+       {"street": "GLASSELL1", "color": "lime", "perpx": "0.242383", "perpy": "-0.970181"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 7.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.85323,33.848381]
+       },
+   "properties": 
+       {"street": "GLASSELL2", "color": "lime", "perpx": "0.242318", "perpy": "-0.970197"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 7.86",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.846936,33.849953]
+       },
+   "properties": 
+       {"street": "GROVE", "color": "lime", "perpx": "0.143226", "perpy": "-0.98969"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 8.36",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.838568,33.851164]
+       },
+   "properties": 
+       {"street": "TUSTIN", "color": "lime", "perpx": "0.143226", "perpy": "-0.98969"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 10.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.814377,33.850669]
+       },
+   "properties": 
+       {"street": "LAKEVIEW1", "color": "lime", "perpx": "0.643266", "perpy": "-0.765643"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 10.27",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.811988,33.852542]
+       },
+   "properties": 
+       {"street": "LAKEVIEW2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 10.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.80262,33.85429]
+       },
+   "properties": 
+       {"street": "W OF IMPERIAL", "color": "lime", "perpx": "0.183427", "perpy": "-0.983033"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 11.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.791386,33.854176]
+       },
+   "properties": 
+       {"street": "IMPERIAL1", "color": "lime", "perpx": "0.098358", "perpy": "-0.995151"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 11.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.787923,33.855071]
+       },
+   "properties": 
+       {"street": "IMPERIAL2", "color": "lime", "perpx": "0.431464", "perpy": "-0.90213"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 12.175",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.780743,33.858505]
+       },
+   "properties": 
+       {"street": "E OF IMPERIAL", "color": "lime", "perpx": "0.43844", "perpy": "-0.898761"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 12.762",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.771912,33.862813]
+       },
+   "properties": 
+       {"street": "MIDPOINT", "color": "lime", "perpx": "0.436887", "perpy": "-0.899516"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 13.349",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763071,33.867107]
+       },
+   "properties": 
+       {"street": "W OF SCALES", "color": "lime", "perpx": "0.436887", "perpy": "-0.899516"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 14.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744781,33.870278]
+       },
+   "properties": 
+       {"street": "WEIR CNYN1", "color": "lime", "perpx": "0.155667", "perpy": "-0.98781"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 14.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.741504,33.870757]
+       },
+   "properties": 
+       {"street": "WEIR CNYN2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 15.11",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.73308,33.869894]
+       },
+   "properties": 
+       {"street": "East OF WEIR", "color": "lime", "perpx": "-0.101912", "perpy": "-0.994793"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 15.793",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.722179,33.866822]
+       },
+   "properties": 
+       {"street": "West OF GYPSUM", "color": "lime", "perpx": "-0.008286", "perpy": "-0.999966"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 16.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71168,33.866735]
+       },
+   "properties": 
+       {"street": "GYPSUM 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 16.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.708584,33.868014]
+       },
+   "properties": 
+       {"street": "GYPSUM 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 17.044",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.701858,33.871104]
+       },
+   "properties": 
+       {"street": "E OF GYPSUM", "color": "lime", "perpx": "0.417464", "perpy": "-0.908693"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 18.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.6845,33.870739]
+       },
+   "properties": 
+       {"street": "COAL", "color": "lime", "perpx": "-0.376251", "perpy": "-0.926518"}
+},  
+{
+   "type": "Feature",
+   "id": "91 E 18.435",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.68015,33.869165]
+       },
+   "properties": 
+       {"street": "E OF COAL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 0.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.034214,33.859047]
+       },
+   "properties": 
+       {"street": "ORANGETHORPE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 0.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.967351,33.854549]
+       },
+   "properties": 
+       {"street": "GILBERT", "color": "lime", "perpx": "-0.028816", "perpy": "-0.999585"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.026045,33.856241]
+       },
+   "properties": 
+       {"street": "VALLEY VIEW", "color": "lime", "perpx": "0.03527", "perpy": "0.999378"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 1.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.961157,33.853951]
+       },
+   "properties": 
+       {"street": "BROOKHURST", "color": "lime", "perpx": "-0.034899", "perpy": "-0.999391"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 1.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.014055,33.856065]
+       },
+   "properties": 
+       {"street": "KNOTT 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 1.99",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.008835,33.856125]
+       },
+   "properties": 
+       {"street": "KNOTT 2", "color": "lime", "perpx": "0.029813", "perpy": "0.999556"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 2.11",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.943925,33.854189]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0.029813", "perpy": "0.999556"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 2.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.001703,33.856174]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "-0.000863", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 2.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.998227,33.856177]
+       },
+   "properties": 
+       {"street": "BEACH 2", "color": "lime", "perpx": "-0.000863", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 3.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.926204,33.853907]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "-0.05087", "perpy": "-0.998705"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 3.87",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.976502,33.857654]
+       },
+   "properties": 
+       {"street": "MAGNOLIA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 3.91",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.912686,33.853895]
+       },
+   "properties": 
+       {"street": "LEMON", "color": "lime", "perpx": "-0.00639", "perpy": "0.99998"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 4.18",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.907991,33.853925]
+       },
+   "properties": 
+       {"street": "EAST", "color": "lime", "perpx": "-0.00639", "perpy": "0.99998"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 4.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.897729,33.854035]
+       },
+   "properties": 
+       {"street": "ACACIA", "color": "lime", "perpx": "-0.017239", "perpy": "0.999851"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 5.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.891303,33.854309]
+       },
+   "properties": 
+       {"street": "STATE COLLEGE", "color": "lime", "perpx": "0.073866", "perpy": "0.997268"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 6.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875092,33.849561]
+       },
+   "properties": 
+       {"street": "W OF 57", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 6.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.872819,33.848505]
+       },
+   "properties": 
+       {"street": "E OF 57", "color": "lime", "perpx": "0.397217", "perpy": "0.917725"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 6.42",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.870973,33.847706]
+       },
+   "properties": 
+       {"street": "LA PALMA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 7.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.855999,33.847931]
+       },
+   "properties": 
+       {"street": "KRAEMER 1", "color": "lime", "perpx": "-0.238718", "perpy": "0.971089"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 7.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.854502,33.848299]
+       },
+   "properties": 
+       {"street": "KRAEMER 2", "color": "lime", "perpx": "-0.241819", "perpy": "0.970321"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 7.86",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.846854,33.850205]
+       },
+   "properties": 
+       {"street": "GROVE", "color": "lime", "perpx": "-0.13485", "perpy": "0.990866"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 8.36",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.838448,33.851349]
+       },
+   "properties": 
+       {"street": "TUSTIN", "color": "lime", "perpx": "-0.13485", "perpy": "0.990866"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 9.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.816135,33.849591]
+       },
+   "properties": 
+       {"street": "LAKEVIEW1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 10.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813891,33.851525]
+       },
+   "properties": 
+       {"street": "LAKEVIEW2", "color": "lime", "perpx": "-0.654394", "perpy": "0.756154"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 10.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.802756,33.854556]
+       },
+   "properties": 
+       {"street": "W OF IMPERIAL", "color": "lime", "perpx": "0.020315", "perpy": "0.999794"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 11.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793339,33.854368]
+       },
+   "properties": 
+       {"street": "IMPERIAL1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 11.59",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.789725,33.854713]
+       },
+   "properties": 
+       {"street": "IMPERIAL2", "color": "lime", "perpx": "-0.310943", "perpy": "0.950429"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 12.175",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.780816,33.858773]
+       },
+   "properties": 
+       {"street": "E OF IMPERIAL", "color": "lime", "perpx": "-0.438994", "perpy": "0.89849"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 12.762",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.772007,33.863077]
+       },
+   "properties": 
+       {"street": "MIDPOINT", "color": "lime", "perpx": "-0.437889", "perpy": "0.899029"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 13.349",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763191,33.867371]
+       },
+   "properties": 
+       {"street": "W OF SCALES", "color": "lime", "perpx": "-0.437889", "perpy": "0.899029"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 14.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747893,33.870169]
+       },
+   "properties": 
+       {"street": "WEIR CNYN1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 14.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744997,33.870661]
+       },
+   "properties": 
+       {"street": "WEIR CNYN2", "color": "lime", "perpx": "-0.177649", "perpy": "0.984094"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 15.11",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.733445,33.870372]
+       },
+   "properties": 
+       {"street": "East OF WEIR", "color": "lime", "perpx": "0.048587", "perpy": "0.998819"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 15.793",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.722277,33.867126]
+       },
+   "properties": 
+       {"street": "West OF GYPSUM", "color": "lime", "perpx": "0.08815", "perpy": "0.996107"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 16.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.715237,33.866503]
+       },
+   "properties": 
+       {"street": "GYPSUM 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 17.044",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.701993,33.871439]
+       },
+   "properties": 
+       {"street": "E OF GYPSUM", "color": "lime", "perpx": "-0.129654", "perpy": "0.991559"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 17.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.689053,33.873131]
+       },
+   "properties": 
+       {"street": "COAL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "91 W 18.435",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.680194,33.869436]
+       },
+   "properties": 
+       {"street": "E OF COAL", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "133 N 9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.754967,33.661697]
+       },
+   "properties": 
+       {"street": "BARRANCA1", "color": "lime", "perpx": "0.851313", "perpy": "-0.524659"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.1",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753976,33.663305]
+       },
+   "properties": 
+       {"street": "BARRANCA2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753044,33.667495]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.976143", "perpy": "-0.217128"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 9.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753243,33.672836]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.752421,33.676181]
+       },
+   "properties": 
+       {"street": "MARINE WAY", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.748819,33.680812]
+       },
+   "properties": 
+       {"street": "N OF MARINE", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 10.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.746935,33.683166]
+       },
+   "properties": 
+       {"street": "S OF PM 11", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 11.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.743737,33.687048]
+       },
+   "properties": 
+       {"street": "AT PM 11", "color": "lime", "perpx": "0.766025", "perpy": "-0.642811"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 11.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.741045,33.690256]
+       },
+   "properties": 
+       {"street": "N OF PM 11", "color": "lime", "perpx": "0.764276", "perpy": "-0.64489"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 11.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.737541,33.694404]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.763019", "perpy": "-0.646375"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 12.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.733959,33.698464]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 3", "color": "lime", "perpx": "0.72056", "perpy": "-0.693393"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 12.42",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72971,33.70238]
+       },
+   "properties": 
+       {"street": "S OF PORTOLA", "color": "lime", "perpx": "0.731326", "perpy": "-0.682028"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 12.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.726196,33.706148]
+       },
+   "properties": 
+       {"street": "133NB to 241NB", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 13.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724497,33.709447]
+       },
+   "properties": 
+       {"street": "ORANGE 1", "color": "lime", "perpx": "0.889028", "perpy": "-0.457853"}
+},  
+{
+   "type": "Feature",
+   "id": "133 N 13.42",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.721749,33.71555]
+       },
+   "properties": 
+       {"street": "ORANGE 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.7553,33.66184]
+       },
+   "properties": 
+       {"street": "BARRANCA2", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753428,33.667665]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 9.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.753623,33.673029]
+       },
+   "properties": 
+       {"street": "N OF 5", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.752844,33.676396]
+       },
+   "properties": 
+       {"street": "MARINE WAY", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74924,33.68106]
+       },
+   "properties": 
+       {"street": "N OF MARINE", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 10.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747277,33.683386]
+       },
+   "properties": 
+       {"street": "S OF PM 11", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 11.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744014,33.687243]
+       },
+   "properties": 
+       {"street": "AT PM 11", "color": "lime", "perpx": "-0.767026", "perpy": "0.641617"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 11.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.741328,33.690454]
+       },
+   "properties": 
+       {"street": "N OF PM 11", "color": "lime", "perpx": "-0.764252", "perpy": "0.644918"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 11.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.737826,33.694604]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.756644", "perpy": "0.653828"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 12.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734303,33.698681]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 3", "color": "lime", "perpx": "-0.679098", "perpy": "0.734047"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 12.42",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.730095,33.702574]
+       },
+   "properties": 
+       {"street": "S OF PORTOLA", "color": "lime", "perpx": "-0.679098", "perpy": "0.734047"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 13.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72449,33.710914]
+       },
+   "properties": 
+       {"street": "ORANGE 1", "color": "lime", "perpx": "-0.898001", "perpy": "0.439993"}
+},  
+{
+   "type": "Feature",
+   "id": "133 S 13.42",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.722121,33.715749]
+       },
+   "properties": 
+       {"street": "ORANGE 2", "color": "lime", "perpx": "-0.898001", "perpy": "0.439993"}
+},  
+
+{
+   "type": "Feature",
+   "id": "241 N 17.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.599074,33.63353]
+       },
+   "properties": 
+       {"street": "ANTONIO 2", "color": "lime", "perpx": "0.94076", "perpy": "0.339073"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 18.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.600814,33.637405]
+       },
+   "properties": 
+       {"street": "BANDERAS", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 18.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.605062,33.645877]
+       },
+   "properties": 
+       {"street": "SANTA MARGUERITA", "color": "lime", "perpx": "0.90141", "perpy": "0.432966"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 18.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.605721,33.647249]
+       },
+   "properties": 
+       {"street": "TRABUCO CREEK", "color": "lime", "perpx": "0.90141", "perpy": "0.432966"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 19.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.612216,33.651938]
+       },
+   "properties": 
+       {"street": "MELINDA", "color": "lime", "perpx": "0.193918", "perpy": "0.981018"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 19.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.620027,33.653482]
+       },
+   "properties": 
+       {"street": "LOS ALISOS 1", "color": "lime", "perpx": "0.32691", "perpy": "0.945056"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 20.13",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.62601,33.655536]
+       },
+   "properties": 
+       {"street": "LOS ALISOS 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 20.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.632286,33.658363]
+       },
+   "properties": 
+       {"street": "UPPER OSO", "color": "lime", "perpx": "0.410703", "perpy": "0.911769"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 21.61",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.647778,33.666889]
+       },
+   "properties": 
+       {"street": "PORTOLA S 1", "color": "lime", "perpx": "0.3701", "perpy": "0.928992"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 21.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.652743,33.668867]
+       },
+   "properties": 
+       {"street": "PORTOLA S 2", "color": "lime", "perpx": "0.3701", "perpy": "0.928992"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 22.61",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663113,33.672946]
+       },
+   "properties": 
+       {"street": "LAKE FOREST", "color": "lime", "perpx": "0.37314", "perpy": "0.927775"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 22.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.666212,33.674212]
+       },
+   "properties": 
+       {"street": "BAKE", "color": "lime", "perpx": "0.42005", "perpy": "0.907501"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671424,33.677671]
+       },
+   "properties": 
+       {"street": "ALTON 1", "color": "lime", "perpx": "0.787657", "perpy": "0.616114"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 23.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.67436,33.681906]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "0.8", "perpy": "0.6"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 24.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.681661,33.688336]
+       },
+   "properties": 
+       {"street": "N OF ALTON", "color": "lime", "perpx": "0.567343", "perpy": "0.823482"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 25.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.695163,33.697044]
+       },
+   "properties": 
+       {"street": "PORTOLA N2", "color": "lime", "perpx": "0.436189", "perpy": "0.899855"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 25.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.699355,33.699076]
+       },
+   "properties": 
+       {"street": "TOMATO 1", "color": "lime", "perpx": "0.434917", "perpy": "0.900471"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 25.95",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.707184,33.702783]
+       },
+   "properties": 
+       {"street": "TOMATO 3", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 26.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.713171,33.70568]
+       },
+   "properties": 
+       {"street": "TOMATO 4", "color": "lime", "perpx": "0.38021", "perpy": "0.9249"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 26.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.716523,33.707439]
+       },
+   "properties": 
+       {"street": "133-1", "color": "lime", "perpx": "0.690231", "perpy": "0.723589"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 26.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.718562,33.709384]
+       },
+   "properties": 
+       {"street": "133-2", "color": "lime", "perpx": "0.690231", "perpy": "0.723589"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 27.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720349,33.714309]
+       },
+   "properties": 
+       {"street": "133-3", "color": "lime", "perpx": "0.999048", "perpy": "-0.043617"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 27.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719917,33.718783]
+       },
+   "properties": 
+       {"street": "BEE CANYON", "color": "lime", "perpx": "0.991505", "perpy": "-0.130067"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 27.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719302,33.723299]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0.991174", "perpy": "-0.132564"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 28.09",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71867,33.728406]
+       },
+   "properties": 
+       {"street": "S OF JEFFREY", "color": "lime", "perpx": "0.991789", "perpy": "-0.127885"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 28.44",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.718013,33.73351]
+       },
+   "properties": 
+       {"street": "N OF JEFFREY", "color": "lime", "perpx": "0.991828", "perpy": "-0.127583"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 28.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71751,33.737751]
+       },
+   "properties": 
+       {"street": "N OF HAUL ROAD", "color": "lime", "perpx": "0.99277", "perpy": "0.120036"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 28.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717935,33.741266]
+       },
+   "properties": 
+       {"street": "HAUL-CULVER", "color": "lime", "perpx": "0.99277", "perpy": "0.120036"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 29.34",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720909,33.746087]
+       },
+   "properties": 
+       {"street": "S OF CULVER S", "color": "lime", "perpx": "0.544008", "perpy": "0.83908"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 29.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.725783,33.749247]
+       },
+   "properties": 
+       {"street": "N OF CULVER S", "color": "lime", "perpx": "0.51441", "perpy": "0.857544"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 30",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.730214,33.751905]
+       },
+   "properties": 
+       {"street": "CULVER-CULVER 1", "color": "lime", "perpx": "0.749117", "perpy": "0.662437"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 30.33",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.732601,33.756276]
+       },
+   "properties": 
+       {"street": "CULVER-CULVER 2", "color": "lime", "perpx": "0.999169", "perpy": "0.040755"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 30.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.732107,33.76201]
+       },
+   "properties": 
+       {"street": "S OF CULVER N", "color": "lime", "perpx": "0.994307", "perpy": "0.106557"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 31.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.733568,33.766355]
+       },
+   "properties": 
+       {"street": "N OF CULVER N", "color": "lime", "perpx": "0.738172", "perpy": "0.674612"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 31.44",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.738882,33.770424]
+       },
+   "properties": 
+       {"street": "S OF EOC OC", "color": "lime", "perpx": "0.546231", "perpy": "0.837634"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 31.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744897,33.774559]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "0.572437", "perpy": "0.819949"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 32.29",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747616,33.780001]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "0.997824", "perpy": "-0.065933"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 32.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.745126,33.785685]
+       },
+   "properties": 
+       {"street": "CHAPMAN 3", "color": "lime", "perpx": "0.6879", "perpy": "-0.725806"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 32.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.741766,33.788286]
+       },
+   "properties": 
+       {"street": "CHAPMAN 4", "color": "lime", "perpx": "0.563196", "perpy": "-0.826323"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 33.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.736347,33.791626]
+       },
+   "properties": 
+       {"street": "N OF CHAPMAN", "color": "lime", "perpx": "0.530321", "perpy": "-0.847797"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 33.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.731726,33.794622]
+       },
+   "properties": 
+       {"street": "S OF SANT CREEK", "color": "lime", "perpx": "0.51738", "perpy": "-0.855756"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 34.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72693,33.798225]
+       },
+   "properties": 
+       {"street": "N OF SANT CR1", "color": "lime", "perpx": "0.632614", "perpy": "-0.774467"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 34.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.724852,33.803371]
+       },
+   "properties": 
+       {"street": "N OF SANT CR2", "color": "lime", "perpx": "0.937209", "perpy": "-0.348768"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 34.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.722969,33.808431]
+       },
+   "properties": 
+       {"street": "S OF OAK", "color": "lime", "perpx": "0.843058", "perpy": "-0.537823"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 35.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719677,33.813341]
+       },
+   "properties": 
+       {"street": "N OF OAK", "color": "lime", "perpx": "0.916423", "perpy": "-0.400211"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 35.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717431,33.818484]
+       },
+   "properties": 
+       {"street": "S OF SCE OC", "color": "lime", "perpx": "0.916423", "perpy": "-0.400211"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 35.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.715964,33.824439]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 1", "color": "lime", "perpx": "0.994559", "perpy": "0.104175"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 36.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.716485,33.829413]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 2", "color": "lime", "perpx": "0.986289", "perpy": "0.165028"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 36.37",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717081,33.832975]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 3", "color": "lime", "perpx": "0.986289", "perpy": "0.165028"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 36.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717671,33.839984]
+       },
+   "properties": 
+       {"street": "W R WILDLIFE", "color": "lime", "perpx": "0.987599", "perpy": "-0.156997"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 37.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.716931,33.844639]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 1", "color": "lime", "perpx": "0.999335", "perpy": "-0.036462"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 37.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71672,33.850422]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 2", "color": "lime", "perpx": "0.999335", "perpy": "-0.036462"}
+},  
+{
+   "type": "Feature",
+   "id": "241 N 37.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.716773,33.856526]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 3", "color": "lime", "perpx": "0.997345", "perpy": "-0.072816"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 18.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.602781,33.640172]
+       },
+   "properties": 
+       {"street": "SANTA MARGUERITA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 18.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.606132,33.646855]
+       },
+   "properties": 
+       {"street": "TRABUCO CREEK", "color": "lime", "perpx": "-0.899199", "perpy": "-0.437539"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 19.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.612415,33.651498]
+       },
+   "properties": 
+       {"street": "MELINDA", "color": "lime", "perpx": "-0.198462", "perpy": "-0.980109"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 19.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.620208,33.653076]
+       },
+   "properties": 
+       {"street": "LOS ALISOS 1", "color": "lime", "perpx": "-0.333218", "perpy": "-0.94285"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 20.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.632465,33.657968]
+       },
+   "properties": 
+       {"street": "UPPER OSO", "color": "lime", "perpx": "-0.376202", "perpy": "-0.926538"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 22.02",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.654243,33.669094]
+       },
+   "properties": 
+       {"street": "PORTOLA S 2", "color": "lime", "perpx": "-0.353878", "perpy": "-0.935292"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 22.61",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.663291,33.67261]
+       },
+   "properties": 
+       {"street": "LAKE FOREST", "color": "lime", "perpx": "-0.360927", "perpy": "-0.932594"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 22.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.666424,33.673843]
+       },
+   "properties": 
+       {"street": "BAKE", "color": "lime", "perpx": "-0.418678", "perpy": "-0.908135"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 23.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.671674,33.677298]
+       },
+   "properties": 
+       {"street": "ALTON 1", "color": "lime", "perpx": "-0.779725", "perpy": "-0.626123"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 23.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.674584,33.681564]
+       },
+   "properties": 
+       {"street": "ALTON 2", "color": "lime", "perpx": "-0.800996", "perpy": "-0.59867"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 24.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.681883,33.688049]
+       },
+   "properties": 
+       {"street": "N OF ALTON", "color": "lime", "perpx": "-0.574042", "perpy": "-0.818826"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 25.15",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.695456,33.696803]
+       },
+   "properties": 
+       {"street": "PORTOLA N2", "color": "lime", "perpx": "-0.435805", "perpy": "-0.900041"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 25.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.699698,33.698857]
+       },
+   "properties": 
+       {"street": "TOMATO 1", "color": "lime", "perpx": "-0.432673", "perpy": "-0.901551"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 25.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.704109,33.700961]
+       },
+   "properties": 
+       {"street": "TOMATO 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 26.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71368,33.705538]
+       },
+   "properties": 
+       {"street": "TOMATO 4", "color": "lime", "perpx": "-0.356385", "perpy": "-0.934339"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 26.58",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717092,33.707275]
+       },
+   "properties": 
+       {"street": "133-1", "color": "lime", "perpx": "-0.712032", "perpy": "-0.702147"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 26.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719081,33.709292]
+       },
+   "properties": 
+       {"street": "133-2", "color": "lime", "perpx": "-0.712032", "perpy": "-0.702147"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 27.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720884,33.714276]
+       },
+   "properties": 
+       {"street": "133-3", "color": "lime", "perpx": "-0.999239", "perpy": "0.039011"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 27.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72046,33.718798]
+       },
+   "properties": 
+       {"street": "BEE CANYON", "color": "lime", "perpx": "-0.99165", "perpy": "0.128962"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 27.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.719567,33.723287]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "-0.98462", "perpy": "0.174712"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 28.09",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.718803,33.728394]
+       },
+   "properties": 
+       {"street": "S OF JEFFREY", "color": "lime", "perpx": "-0.991031", "perpy": "0.13363"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 28.44",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71813,33.733511]
+       },
+   "properties": 
+       {"street": "N OF JEFFREY", "color": "lime", "perpx": "-0.991631", "perpy": "0.129107"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 28.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717633,33.73777]
+       },
+   "properties": 
+       {"street": "N OF HAUL ROAD", "color": "lime", "perpx": "-0.992127", "perpy": "-0.125239"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 28.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.718081,33.741319]
+       },
+   "properties": 
+       {"street": "HAUL-CULVER", "color": "lime", "perpx": "-0.992127", "perpy": "-0.125239"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 29.34",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.721164,33.746148]
+       },
+   "properties": 
+       {"street": "S OF CULVER S", "color": "lime", "perpx": "-0.534518", "perpy": "-0.845157"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 29.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.726132,33.74929]
+       },
+   "properties": 
+       {"street": "N OF CULVER S", "color": "lime", "perpx": "-0.530397", "perpy": "-0.84775"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 30",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.730537,33.752046]
+       },
+   "properties": 
+       {"street": "CULVER-CULVER 1", "color": "lime", "perpx": "-0.773985", "perpy": "-0.633203"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 30.33",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.732805,33.756517]
+       },
+   "properties": 
+       {"street": "CULVER-CULVER 2", "color": "lime", "perpx": "-0.999994", "perpy": "0.00336"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 30.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.732284,33.762314]
+       },
+   "properties": 
+       {"street": "S OF CULVER N", "color": "lime", "perpx": "-0.986194", "perpy": "-0.165595"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 31.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.734012,33.766637]
+       },
+   "properties": 
+       {"street": "N OF CULVER N", "color": "lime", "perpx": "-0.712957", "perpy": "-0.701208"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 31.44",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.739531,33.770618]
+       },
+   "properties": 
+       {"street": "S OF EOC OC", "color": "lime", "perpx": "-0.547969", "perpy": "-0.836499"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 31.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.745706,33.774682]
+       },
+   "properties": 
+       {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.550286", "perpy": "-0.834976"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 32.29",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.7482,33.780289]
+       },
+   "properties": 
+       {"street": "CHAPMAN 2", "color": "lime", "perpx": "-0.997214", "perpy": "0.074589"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 32.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.745698,33.786034]
+       },
+   "properties": 
+       {"street": "CHAPMAN 3", "color": "lime", "perpx": "-0.656814", "perpy": "0.754052"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 32.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74219,33.788553]
+       },
+   "properties": 
+       {"street": "CHAPMAN 4", "color": "lime", "perpx": "-0.536155", "perpy": "0.84412"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 33.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.73675,33.791961]
+       },
+   "properties": 
+       {"street": "N OF CHAPMAN", "color": "lime", "perpx": "-0.511805", "perpy": "0.859102"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 33.68",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.732055,33.794954]
+       },
+   "properties": 
+       {"street": "S OF SANT CREEK", "color": "lime", "perpx": "-0.521007", "perpy": "0.853552"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 34.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.727285,33.798558]
+       },
+   "properties": 
+       {"street": "N OF SANT CR1", "color": "lime", "perpx": "-0.634504", "perpy": "0.77292"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 34.38",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.725304,33.803726]
+       },
+   "properties": 
+       {"street": "N OF SANT CR2", "color": "lime", "perpx": "-0.931918", "perpy": "0.36267"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 34.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.72335,33.808747]
+       },
+   "properties": 
+       {"street": "S OF OAK", "color": "lime", "perpx": "-0.84356", "perpy": "0.537034"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 35.08",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.720094,33.81365]
+       },
+   "properties": 
+       {"street": "N OF OAK", "color": "lime", "perpx": "-0.915178", "perpy": "0.40305"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 35.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.71784,33.818768]
+       },
+   "properties": 
+       {"street": "S OF SCE OC", "color": "lime", "perpx": "-0.915178", "perpy": "0.40305"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 35.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717155,33.824805]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 1", "color": "lime", "perpx": "-0.999904", "perpy": "-0.013843"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 36.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717224,33.829789]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 2", "color": "lime", "perpx": "-0.990694", "perpy": "-0.136107"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 36.43",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717841,33.83428]
+       },
+   "properties": 
+       {"street": "WINDY RIDGE 3", "color": "lime", "perpx": "-0.990694", "perpy": "-0.136107"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 36.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.718159,33.840335]
+       },
+   "properties": 
+       {"street": "W R WILDLIFE", "color": "lime", "perpx": "-0.985859", "perpy": "0.167575"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 37.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717372,33.844965]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 1", "color": "lime", "perpx": "-0.999815", "perpy": "0.019254"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 37.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717261,33.850729]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 2", "color": "lime", "perpx": "-0.999815", "perpy": "0.019254"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 37.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717346,33.856811]
+       },
+   "properties": 
+       {"street": "N OF W R WILDLIFE 3", "color": "lime", "perpx": "-0.999884", "perpy": "-0.015214"}
+},  
+{
+   "type": "Feature",
+   "id": "241 S 38.23",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.717429,33.862266]
+       },
+   "properties": 
+       {"street": "S OF 91", "color": "lime", "perpx": "-0.999884", "perpy": "-0.015214"}
+},  
+
+{
+   "type": "Feature",
+   "id": "261 N 0.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.800349,33.712252]
+       },
+   "properties": 
+       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.797696,33.715376]
+       },
+   "properties": 
+       {"street": "WALNUT 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.795181,33.717083]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 0.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.789435,33.720342]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 1.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.782735,33.72367]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 1.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.777645,33.727564]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 2", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 2.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.772751,33.733387]
+       },
+   "properties": 
+       {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "0.766466", "perpy": "-0.642285"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 2.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.772751,33.733387]
+       },
+   "properties": 
+       {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "0.766466", "perpy": "-0.642285"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 2.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.768065,33.738979]
+       },
+   "properties": 
+       {"street": "PORTOLA  1", "color": "lime", "perpx": "0.904237", "perpy": "-0.42703"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 3.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.765231,33.74498]
+       },
+   "properties": 
+       {"street": "PORTOLA 2", "color": "lime", "perpx": "0.983838", "perpy": "-0.179058"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 3.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764319,33.749991]
+       },
+   "properties": 
+       {"street": "PORTOLA 3", "color": "lime", "perpx": "0.984423", "perpy": "-0.175816"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 3.79",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763603,33.754]
+       },
+   "properties": 
+       {"street": "PORTOLA 4", "color": "lime", "perpx": "0.984423", "perpy": "-0.175816"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 4.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.76135,33.758685]
+       },
+   "properties": 
+       {"street": "S OF UTILITY", "color": "lime", "perpx": "0.885102", "perpy": "-0.465397"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 4.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759099,33.762966]
+       },
+   "properties": 
+       {"street": "N OF UTILITY", "color": "lime", "perpx": "0.980133", "perpy": "-0.198343"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.758414,33.766351]
+       },
+   "properties": 
+       {"street": "HANDY 1", "color": "lime", "perpx": "0.999501", "perpy": "-0.031586"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 4.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.75831,33.769642]
+       },
+   "properties": 
+       {"street": "HANDY 2", "color": "lime", "perpx": "0.997022", "perpy": "-0.077121"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 5.27",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.757935,33.77449]
+       },
+   "properties": 
+       {"street": "HANDY 3", "color": "lime", "perpx": "0.997022", "perpy": "-0.077121"}
+},  
+{
+   "type": "Feature",
+   "id": "261 N 5.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.75497,33.779145]
+       },
+   "properties": 
+       {"street": "CHAPMAN", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.800638,33.7124]
+       },
+   "properties": 
+       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.795434,33.717315]
+       },
+   "properties": 
+       {"street": "S OF 5", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 0.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.789693,33.720604]
+       },
+   "properties": 
+       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 1.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.782999,33.723902]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 1.75",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.777924,33.727725]
+       },
+   "properties": 
+       {"street": "IRVINE BLVD 2", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 2.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.773023,33.733529]
+       },
+   "properties": 
+       {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "-0.769852", "perpy": "0.638223"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 2.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.773023,33.733529]
+       },
+   "properties": 
+       {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "-0.769852", "perpy": "0.638223"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 2.71",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.768378,33.739132]
+       },
+   "properties": 
+       {"street": "PORTOLA  1", "color": "lime", "perpx": "-0.910548", "perpy": "0.413404"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 3.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.765643,33.745156]
+       },
+   "properties": 
+       {"street": "PORTOLA 2", "color": "lime", "perpx": "-0.982145", "perpy": "0.188125"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 3.51",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.764687,33.750147]
+       },
+   "properties": 
+       {"street": "PORTOLA 3", "color": "lime", "perpx": "-0.984863", "perpy": "0.173336"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 3.79",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763983,33.754147]
+       },
+   "properties": 
+       {"street": "PORTOLA 4", "color": "lime", "perpx": "-0.984863", "perpy": "0.173336"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 4.14",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.761762,33.758827]
+       },
+   "properties": 
+       {"street": "S OF UTILITY", "color": "lime", "perpx": "-0.884264", "perpy": "0.466987"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 4.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.759498,33.763114]
+       },
+   "properties": 
+       {"street": "N OF UTILITY", "color": "lime", "perpx": "-0.980989", "perpy": "0.194064"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 4.7",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.758825,33.766516]
+       },
+   "properties": 
+       {"street": "HANDY 1", "color": "lime", "perpx": "-0.999193", "perpy": "0.040173"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 4.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.758692,33.769824]
+       },
+   "properties": 
+       {"street": "HANDY 2", "color": "lime", "perpx": "-0.997492", "perpy": "0.070782"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 5.27",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.758346,33.7747]
+       },
+   "properties": 
+       {"street": "HANDY 3", "color": "lime", "perpx": "-0.997492", "perpy": "0.070782"}
+},  
+{
+   "type": "Feature",
+   "id": "261 S 5.64",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.75529,33.779357]
+       },
+   "properties": 
+       {"street": "CHAPMAN", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "405 N 0.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.746598,33.64809]
+       },
+   "properties": 
+       {"street": "IRVINE C1", "color": "lime", "perpx": "0.282096", "perpy": "0.959386"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.11",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.74955,33.648958]
+       },
+   "properties": 
+       {"street": "IRVINE C2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.57",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.757101,33.651141]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "0.202053", "perpy": "0.979375"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 1.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763194,33.652204]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 2.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.770173,33.65368]
+       },
+   "properties": 
+       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.04",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.780107,33.659163]
+       },
+   "properties": 
+       {"street": "SAND CANYON", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784046,33.661319]
+       },
+   "properties": 
+       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "0.480131", "perpy": "0.877197"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 3.86",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793258,33.663379]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 4.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796176,33.663798]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.812902,33.666407]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813561,33.66659]
+       },
+   "properties": 
+       {"street": "SPRUCE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.821657,33.669218]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "0.332642", "perpy": "0.943053"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 5.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.824699,33.670291]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 6.21",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832271,33.672851]
+       },
+   "properties": 
+       {"street": "HARVARD", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 6.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.842488,33.676465]
+       },
+   "properties": 
+       {"street": "JAMBOREE1", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 7.07",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845871,33.677945]
+       },
+   "properties": 
+       {"street": "JAMBOREE2", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 7.73",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.85598,33.682442]
+       },
+   "properties": 
+       {"street": "MACARTHUR 1", "color": "lime", "perpx": "0.408917", "perpy": "0.912572"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 8.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.864081,33.686072]
+       },
+   "properties": 
+       {"street": "AIRPORT", "color": "lime", "perpx": "0.321527", "perpy": "0.9469"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 8.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866348,33.686795]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "0.126754", "perpy": "0.991934"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 9.46",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.884653,33.687523]
+       },
+   "properties": 
+       {"street": "BRISTOL 1", "color": "lime", "perpx": "0.0", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 9.65",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.887956,33.687523]
+       },
+   "properties": 
+       {"street": "BRISTOL 2", "color": "lime", "perpx": "0.0", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 10.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.909664,33.688017]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 11.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.918196,33.688872]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 12.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.930032,33.693692]
+       },
+   "properties": 
+       {"street": "HAMPSHIRE", "color": "lime", "perpx": "0.384478", "perpy": "0.923134"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 12.85",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.940729,33.69816]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 13.74",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.953701,33.704947]
+       },
+   "properties": 
+       {"street": "BROOKHUR1", "color": "lime", "perpx": "0.642988", "perpy": "0.765876"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 13.97",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.956518,33.707312]
+       },
+   "properties": 
+       {"street": "BROOKHUR2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 14.82",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.966959,33.716027]
+       },
+   "properties": 
+       {"street": "WARNER", "color": "lime", "perpx": "0.643494", "perpy": "0.765452"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 15.17",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.971245,33.719628]
+       },
+   "properties": 
+       {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.639234", "perpy": "0.769012"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 15.39",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.973953,33.721879]
+       },
+   "properties": 
+       {"street": "MAGNOLIA2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 16.52",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.988885,33.732527]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "0.571725", "perpy": "0.820445"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 16.76",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.992088,33.734759]
+       },
+   "properties": 
+       {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 17.92",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.00667,33.746378]
+       },
+   "properties": 
+       {"street": "GOLDEN WEST", "color": "lime", "perpx": "0.642886", "perpy": "0.765962"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 19.24",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.022852,33.759918]
+       },
+   "properties": 
+       {"street": "WESTMINISTER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 22.55",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.073325,33.774552]
+       },
+   "properties": 
+       {"street": "SEAL BEACH 1", "color": "lime", "perpx": "-0.000845", "perpy": "1.0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 23.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.083341,33.774556]
+       },
+   "properties": 
+       {"street": "S OF 7TH ST", "color": "lime", "perpx": "0.026307", "perpy": "0.999654"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 23.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.089644,33.778545]
+       },
+   "properties": 
+       {"street": "SALMON", "color": "lime", "perpx": "0.941439", "perpy": "0.337182"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 23.92",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.090834,33.782737]
+       },
+   "properties": 
+       {"street": "S OF 605", "color": "lime", "perpx": "0.96041", "perpy": "0.278592"}
+},  
+{
+   "type": "Feature",
+   "id": "405 N 24.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.092441,33.785381]
+       },
+   "properties": 
+       {"street": "N OF 605", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 0.77",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.744091,33.647015]
+       },
+   "properties": 
+       {"street": "IRVINE C1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 0.96",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.747203,33.64795]
+       },
+   "properties": 
+       {"street": "IRVINE C2", "color": "lime", "perpx": "-0.287743", "perpy": "-0.957708"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 1.57",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.757205,33.650789]
+       },
+   "properties": 
+       {"street": "N OF 133", "color": "lime", "perpx": "-0.197097", "perpy": "-0.980384"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 1.93",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.763315,33.651837]
+       },
+   "properties": 
+       {"street": "S OF 133", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 2.35",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.770361,33.653346]
+       },
+   "properties": 
+       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 2.88",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.778085,33.657534]
+       },
+   "properties": 
+       {"street": "SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 3.31",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.784273,33.660957]
+       },
+   "properties": 
+       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 3.84",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.793047,33.66293]
+       },
+   "properties": 
+       {"street": "JEFFREY 1", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 4.03",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.796283,33.663404]
+       },
+   "properties": 
+       {"street": "JEFFREY 2", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.81298,33.666093]
+       },
+   "properties": 
+       {"street": "YALE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.813632,33.666292]
+       },
+   "properties": 
+       {"street": "SPRUCE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.820882,33.668738]
+       },
+   "properties": 
+       {"street": "CULVER 1", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 5.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.823958,33.669737]
+       },
+   "properties": 
+       {"street": "CULVER 2", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 6.21",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.832329,33.672571]
+       },
+   "properties": 
+       {"street": "HARVARD", "color": "lime", "perpx": "-0.314462", "perpy": "-0.94927"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 6.8",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.84179,33.675863]
+       },
+   "properties": 
+       {"street": "JAMBOREE1", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 7.01",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.845019,33.677283]
+       },
+   "properties": 
+       {"street": "JAMBOREE2", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 7.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.855449,33.681922]
+       },
+   "properties": 
+       {"street": "MACARTHUR1", "color": "lime", "perpx": "-0.399707", "perpy": "-0.916643"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.86423,33.685751]
+       },
+   "properties": 
+       {"street": "AIRPORT", "color": "lime", "perpx": "-0.358185", "perpy": "-0.933651"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.4",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.866474,33.686517]
+       },
+   "properties": 
+       {"street": "RED HILL", "color": "lime", "perpx": "-0.259554", "perpy": "-0.965729"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 8.9",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.875063,33.687245]
+       },
+   "properties": 
+       {"street": "N OF 55", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 9.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.88618,33.687251]
+       },
+   "properties": 
+       {"street": "BRISTOL 1", "color": "lime", "perpx": "-0.013748", "perpy": "-0.999905"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 10.28",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.899035,33.68748]
+       },
+   "properties": 
+       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 10.48",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.902507,33.687582]
+       },
+   "properties": 
+       {"street": "N OF 73", "color": "lime", "perpx": "-0.028158", "perpy": "-0.999603"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 11.2",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.915002,33.687942]
+       },
+   "properties": 
+       {"street": "HARBOR 1", "color": "lime", "perpx": "-0.248611", "perpy": "-0.968603"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 11.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.91995,33.689212]
+       },
+   "properties": 
+       {"street": "HARBOR 2", "color": "lime", "perpx": "-0.364549", "perpy": "-0.931184"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 12.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.930222,33.693448]
+       },
+   "properties": 
+       {"street": "HAMPSHIRE", "color": "lime", "perpx": "-0.385484", "perpy": "-0.922714"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 12.5",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.9355,33.695653]
+       },
+   "properties": 
+       {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 13.3",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.947913,33.700854]
+       },
+   "properties": 
+       {"street": "TALBERT", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 13.81",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.954762,33.705479]
+       },
+   "properties": 
+       {"street": "BROOKHURST2", "color": "lime", "perpx": "-0.559633", "perpy": "-0.828741"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 14.72",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.965935,33.714839]
+       },
+   "properties": 
+       {"street": "WARNER", "color": "lime", "perpx": "-0.642116", "perpy": "-0.766608"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 15.16",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.971343,33.71936]
+       },
+   "properties": 
+       {"street": "MAGNOLIA 1", "color": "lime", "perpx": "-0.644821", "perpy": "-0.764334"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 16.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.98561,33.72995]
+       },
+   "properties": 
+       {"street": "EDINGER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 16.6",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-117.990146,33.733102]
+       },
+   "properties": 
+       {"street": "BEACH 1", "color": "lime", "perpx": "-0.580003", "perpy": "-0.814614"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 17.66",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.003642,33.743534]
+       },
+   "properties": 
+       {"street": "BOLSA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 17.98",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.007585,33.7468]
+       },
+   "properties": 
+       {"street": "GOLDEN WEST", "color": "lime", "perpx": "-0.646922", "perpy": "-0.762556"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 19.05",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.020707,33.757778]
+       },
+   "properties": 
+       {"street": "WESTMINSTER", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 20.69",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.041297,33.77403]
+       },
+   "properties": 
+       {"street": "BOLSA CHICA", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 22.54",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.073289,33.774257]
+       },
+   "properties": 
+       {"street": "SEAL BEACH 1", "color": "lime", "perpx": "-0.007511", "perpy": "-0.999972"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 23.19",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.084694,33.774466]
+       },
+   "properties": 
+       {"street": "N OF 7TH ST", "color": "lime", "perpx": "-0.224563", "perpy": "-0.974459"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 23.62",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.089913,33.778421]
+       },
+   "properties": 
+       {"street": "SALMON", "color": "lime", "perpx": "-0.946836", "perpy": "-0.321715"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 23.92",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.0911,33.782679]
+       },
+   "properties": 
+       {"street": "S OF 605", "color": "lime", "perpx": "-0.966235", "perpy": "-0.257663"}
+},  
+{
+   "type": "Feature",
+   "id": "405 S 24.12",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.092624,33.785289]
+       },
+   "properties": 
+       {"street": "N OF 605", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+
+{
+   "type": "Feature",
+   "id": "605 N 1.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.082822,33.80097]
+       },
+   "properties": 
+       {"street": "KATELLA 1", "color": "lime", "perpx": "0", "perpy": "0"}
+},  
+{
+   "type": "Feature",
+   "id": "605 S 1.26",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.083136,33.80104]
+       },
+   "properties": 
+       {"street": "KATELLA 1", "color": "lime", "perpx": "-0.712287", "perpy": "0.701888"}
+},  
+{
+   "type": "Feature",
+   "id": "605 S 1.49",
+   "geometry":
+       {
+        "type": "Point",
+        "coordinates": [-118.081675,33.804047]
+       },
+   "properties": 
+       {"street": "KATELLA 2", "color": "lime", "perpx": "0", "perpy": "0"}
+}   
+  ]
+}
Index: trunk/webapps/cptms/data_layers/cms_locations_D12.gjson
===================================================================
--- trunk/webapps/cptms/data_layers/cms_locations_D12.gjson	(revision 326)
+++ trunk/webapps/cptms/data_layers/cms_locations_D12.gjson	(revision 326)
@@ -0,0 +1,901 @@
+{
+  "type": "FeatureCollection",
+  "features": [
+  {
+  "type": "Feature",
+  "id": "1200022",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.630113,33.444697]
+      },
+  "properties":
+      {
+      "location":"N I-5  4.01",
+      "street":"VISTA HERMOSA"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200023",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669201,33.481886]
+      },
+  "properties":
+      {
+      "location":"N I-5  8.01",
+      "street":"AEROPUERTO"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200024",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706059,33.613779]
+      },
+  "properties":
+      {
+      "location":"N I-5 18.59",
+      "street":"EL TORO"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200025",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.807584,33.728551]
+      },
+  "properties":
+      {
+      "location":"N I-5 28.54",
+      "street":"S/O REDHILL"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200026",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860465,33.759171]
+      },
+  "properties":
+      {
+      "location":"N I-5 32.36",
+      "street":"17TH ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200027",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889301,33.791531]
+      },
+  "properties":
+      {
+      "location":"N I-5 35.16",
+      "street":"STATE COLLEGE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200028",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.948993,33.840168]
+      },
+  "properties":
+      {
+      "location":"N I-5 40.03",
+      "street":"BROOKHURST ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200029",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.697775,33.608063]
+      },
+  "properties":
+      {
+      "location":"S I-5 17.96",
+      "street":"LOS ALISOS AVE."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200030",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.766893,33.687054]
+      },
+  "properties":
+      {
+      "location":"S I-5 24.78",
+      "street":"JEFFREY"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200031",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862165,33.759473]
+      },
+  "properties":
+      {
+      "location":"S I-5 32.44",
+      "street":"17TH ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200032",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.904051,33.804356]
+      },
+  "properties":
+      {
+      "location":"S I-5 36.46",
+      "street":"ANAHEIM BLVD"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200033",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.929983,33.829882]
+      },
+  "properties":
+      {
+      "location":"S I-5 38.70",
+      "street":"BROADWAY AVE."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200034",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.006132,33.870302]
+      },
+  "properties":
+      {
+      "location":"S I-5 43.96",
+      "street":"ARTESIA ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200035",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913378,33.76994]
+      },
+  "properties":
+      {
+      "location":"E SR-22  8.27",
+      "street":"HARBOR ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200036",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843417,33.776622]
+      },
+  "properties":
+      {
+      "location":"W SR-22 12.42",
+      "street":"CAMBRIDGE ST."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200037",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847695,33.712247]
+      },
+  "properties":
+      {
+      "location":"N SR-55  8.21",
+      "street":"DYER ROAD"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200038",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831691,33.822628]
+      },
+  "properties":
+      {
+      "location":"N SR-55 16.12",
+      "street":"MEATS AVE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200039",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875754,33.683906]
+      },
+  "properties":
+      {
+      "location":"S SR-55  5.68",
+      "street":"PAULARINO"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200040",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.843494,33.717264]
+      },
+  "properties":
+      {
+      "location":"S SR-55  8.64",
+      "street":"WARNER AVE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200041",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831216,33.767232]
+      },
+  "properties":
+      {
+      "location":"S SR-55 12.30",
+      "street":"SANTA CLARA AVE."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200042",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.832172,33.808725]
+      },
+  "properties":
+      {
+      "location":"S SR-55 15.16",
+      "street":"KATELLA"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200043",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879574,33.786456]
+      },
+  "properties":
+      {
+      "location":"N SR-57 11.18",
+      "street":"CHAPMAN AVE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200044",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875932,33.825274]
+      },
+  "properties":
+      {
+      "location":"N SR-57 13.91",
+      "street":"WAGNER AVE."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200045",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876328,33.825497]
+      },
+  "properties":
+      {
+      "location":"S SR-57 13.92",
+      "street":"WAGNER AVE."
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200046",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880875,33.889973]
+      },
+  "properties":
+      {
+      "location":"S SR-57 18.41",
+      "street":"YORBA LINDA BLVD"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200047",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.018053,33.855681]
+      },
+  "properties":
+      {
+      "location":"E SR-91  1.46",
+      "street":"HOLDER"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200048",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900723,33.853692]
+      },
+  "properties":
+      {
+      "location":"E SR-91  4.60",
+      "street":"ACACIA"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200049",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.944242,33.854316]
+      },
+  "properties":
+      {
+      "location":"W SR-91  2.09",
+      "street":"EUCLID"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200050",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.813397,33.852168]
+      },
+  "properties":
+      {
+      "location":"W SR-91 10.19",
+      "street":"LAKEVIEW"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200051",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.689271,33.873408]
+      },
+  "properties":
+      {
+      "location":"W SR-91 17.82",
+      "street":"WIER CANYON"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200052",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831322,33.672632]
+      },
+  "properties":
+      {
+      "location":"N I-405  6.15",
+      "street":"HARVARD"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200053",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.971297,33.719788]
+      },
+  "properties":
+      {
+      "location":"N I-405 15.18",
+      "street":"MAGNOLIA ST"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200055",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.796762,33.663333]
+      },
+  "properties":
+      {
+      "location":"S I-405  4.06",
+      "street":"JEFFREY"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200056",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.928345,33.692524]
+      },
+  "properties":
+      {
+      "location":"S I-405 12.04",
+      "street":"NEW HAMPSHIRE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200057",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.060253,33.774024]
+      },
+  "properties":
+      {
+      "location":"S I-405 21.80",
+      "street":"SEAL BEACH"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1200058",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.081678,33.817992]
+      },
+  "properties":
+      {
+      "location":"S I-605  0.81",
+      "street":"WARDLOW"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1208488",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880268,33.887518]
+      },
+  "properties":
+      {
+      "location":"N SR-57 18.24",
+      "street":"YORBA LINDA"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1211184",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.745482,33.647931]
+      },
+  "properties":
+      {
+      "location":"N I-405  0.87",
+      "street":"IRVINE CENTER DRIVE"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1211185",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.851222,33.679969]
+      },
+  "properties":
+      {
+      "location":"S I-405  7.41",
+      "street":"VON KARMAN"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1211967",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969424,33.766029]
+      },
+  "properties":
+      {
+      "location":"W SR-22  5.00",
+      "street":"MAGNOLIA AT 22"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1211978",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830808,33.758616]
+      },
+  "properties":
+      {
+      "location":"N SR-55 11.71",
+      "street":"17th ST"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1212138",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.661704,33.510279]
+      },
+  "properties":
+      {
+      "location":"S I-5 10.17",
+      "street":"Ortega Hwy"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1212822",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.859224,33.846746]
+      },
+  "properties":
+      {
+      "location":"E SR-91  7.12",
+      "street":"Kraemer"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1212823",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.767451,33.864767]
+      },
+  "properties":
+      {
+      "location":"E SR-91 13.05",
+      "street":"E of Imperial"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214503",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.639346,33.449613]
+      },
+  "properties":
+      {
+      "location":"S I-5  4.64",
+      "street":"Vista Hermosa"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214504",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672768,33.546096]
+      },
+  "properties":
+      {
+      "location":"N I-5 12.86",
+      "street":"Avery Pkwy"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214505",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.67218,33.570674]
+      },
+  "properties":
+      {
+      "location":"S I-5 14.57",
+      "street":"Crown Valley Pkwy"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214506",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733182,33.642772]
+      },
+  "properties":
+      {
+      "location":"N I-5 21.14",
+      "street":"405 fwy"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214507",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.775036,33.700544]
+      },
+  "properties":
+      {
+      "location":"N I-5 25.82",
+      "street":"Yale OC"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214508",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.805112,33.725985]
+      },
+  "properties":
+      {
+      "location":"S I-5 28.32",
+      "street":"Tustin Ranch OC"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214509",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.903163,33.657101]
+      },
+  "properties":
+      {
+      "location":"N SR-55  3.25",
+      "street":"Santa Isabella"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214510",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878706,33.680209]
+      },
+  "properties":
+      {
+      "location":"N SR-55  5.38",
+      "street":"Baker Street"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214511",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877915,33.796586]
+      },
+  "properties":
+      {
+      "location":"S SR-57 11.86",
+      "street":"Orangewood Ave"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214512",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879528,33.86806]
+      },
+  "properties":
+      {
+      "location":"S SR-57 16.88",
+      "street":"Placentia OH"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214513",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.878697,33.935067]
+      },
+  "properties":
+      {
+      "location":"S SR-57 21.52",
+      "street":"Lambert Rd"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214514",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.01674,33.754335]
+      },
+  "properties":
+      {
+      "location":"S I-405 18.72",
+      "street":"Edwards"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1214956",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.845635,33.775533]
+      },
+  "properties":
+      {
+      "location":"E SR-22 12.28",
+      "street":"Cambridge Street"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1217542",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.76848,33.69002]
+      },
+  "properties":
+      {
+      "location":"S I-5 25.00",
+      "street":"Test CMS"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218442",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.624421,33.519067]
+      },
+  "properties":
+      {
+      "location":"E SR-74  2.31",
+      "street":"Antonio"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218482",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.59611,33.401633]
+      },
+  "properties":
+      {
+      "location":"N I-5  0.38",
+      "street":"County Line"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218483",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.023301,33.774078]
+      },
+  "properties":
+      {
+      "location":"E SR-22  1.77",
+      "street":"Springdale"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218484",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.725774,33.584286]
+      },
+  "properties":
+      {
+      "location":"N SR-73 14.77",
+      "street":"Laguna_Hills"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218485",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.866717,33.657071]
+      },
+  "properties":
+      {
+      "location":"N SR-73 24.91",
+      "street":"North of Jamboree"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "1218486",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.818984,33.61494]
+      },
+  "properties":
+      {
+      "location":"S SR-73 20.75",
+      "street":"South of Wildlife"
+      }
+  }
+]
+}
Index: trunk/webapps/cptms/data_layers/cmsStatusD12.csv
===================================================================
--- trunk/webapps/cptms/data_layers/cmsStatusD12.csv	(revision 317)
+++ trunk/webapps/cptms/data_layers/cmsStatusD12.csv	(revision 317)
@@ -0,0 +1,64 @@
+1200022,2019-03-15,21:50:40,12,"VISTA HERMOSA","San Clemente",-117.630113,33.444697,206,North,Orange,I-5,,,4.01,,76.25,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","  MINUTES TO:   ","405 FREEWAY   16","JW AIRPORT    22","Not Reported",,,
+1200023,2019-03-15,21:50:40,12,AEROPUERTO,"San Juan Capistrano",-117.669201,33.481886,88,North,Orange,I-5,,,8.01,,80.27,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","  MINUTES TO:   ","405 FREEWAY   12","55 FREEWAY    21","Not Reported",,,
+1200024,2019-03-15,21:50:40,12,"EL TORO","Laguna Hills",-117.706059,33.613779,380,North,Orange,I-5,,,18.59,,90.83,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200025,2019-03-15,21:50:40,12,"S/O REDHILL",Tustin,-117.807584,33.728551,95,North,Orange,I-5,,R,28.54,,100.78,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200026,2019-03-15,21:50:40,12,"17TH ST.","Santa Ana",-117.860465,33.759171,180,North,Orange,I-5,,,32.36,,104.63,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200027,2019-03-15,21:50:40,12,"STATE COLLEGE",Orange,-117.889301,33.791531,150,North,Orange,I-5,,,35.16,,107.4,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200028,2019-03-15,21:50:40,12,"BROOKHURST ST.",Anaheim,-117.948993,33.840168,127,North,Orange,I-5,,,40.03,,112.27,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200029,2019-03-15,21:50:40,12,"LOS ALISOS AVE.","Laguna Hills",-117.697775,33.608063,393,South,Orange,I-5,,,17.96,,90.21,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200030,2019-03-15,21:50:40,12,JEFFREY,Irvine,-117.766893,33.687054,170,South,Orange,I-5,,R,24.78,,97.04,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200031,2019-03-15,21:50:40,12,"17TH ST.","Santa Ana",-117.862165,33.759473,170,South,Orange,I-5,,,32.44,,104.75,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200032,2019-03-15,21:50:40,12,"ANAHEIM BLVD",Anaheim,-117.904051,33.804356,154,South,Orange,I-5,,,36.46,,108.65,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","  MINUTES TO:   ","55 FREEWAY     6","133 FREEWAY   13","Not Reported",,,
+1200033,2019-03-15,21:50:40,12,"BROADWAY AVE.",Anaheim,-117.929983,33.829882,127,South,Orange,I-5,,,38.7,,110.93,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","  MINUTES TO:   ","55 FREEWAY     8","133 FREEWAY   15","Not Reported",,,
+1200034,2019-03-15,21:50:40,12,"ARTESIA ST.","Buena Park",-118.006132,33.870302,78,South,Orange,I-5,,,43.96,,116.23,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200035,2019-03-15,21:50:40,12,"HARBOR ST.","Garden Grove",-117.913378,33.76994,108,East,Orange,SR-22,,R,8.27,,9.74,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200036,2019-03-15,21:50:40,12,"CAMBRIDGE ST.",Orange,-117.843417,33.776622,206,West,Orange,SR-22,,R,12.42,,13.98,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200037,2019-03-15,21:50:40,12,"DYER ROAD","Santa Ana",-117.847695,33.712247,68,North,Orange,SR-55,,R,8.21,,8.22,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200038,2019-03-15,21:50:40,12,"MEATS AVE",Orange,-117.831691,33.822628,275,North,Orange,SR-55,,,16.12,,16.07,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200039,2019-03-15,21:50:40,12,PAULARINO,"Costa Mesa",-117.875754,33.683906,45,South,Orange,SR-55,,R,5.68,,5.68,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200040,2019-03-15,21:50:40,12,"WARNER AVE",Tustin,-117.843494,33.717264,85,South,Orange,SR-55,,R,8.64,,8.64,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200041,2019-03-15,21:50:40,12,"SANTA CLARA AVE.",Tustin,-117.831216,33.767232,203,South,Orange,SR-55,,,12.3,,12.27,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200042,2019-03-15,21:50:40,12,KATELLA,Orange,-117.832172,33.808725,269,South,Orange,SR-55,,,15.16,,15.12,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200043,2019-03-15,21:50:40,12,"CHAPMAN AVE",Orange,-117.879574,33.786456,154,North,Orange,SR-57,,,11.18,,0.46,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported",,"91 FWY     4 MIN","LAMBERT   10 MIN","Not Reported",,,
+1200044,2019-03-15,21:50:40,12,"WAGNER AVE.",Anaheim,-117.875932,33.825274,200,North,Orange,SR-57,,,13.91,,3.18,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200045,2019-03-15,21:50:40,12,"WAGNER AVE.",Anaheim,-117.876328,33.825497,196,South,Orange,SR-57,,,13.92,,3.19,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200046,2019-03-15,21:50:40,12,"YORBA LINDA BLVD",Fullerton,-117.880875,33.889973,285,South,Orange,SR-57,,,18.41,,7.67,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200047,2019-03-15,21:50:40,12,HOLDER,"Buena Park",-118.018053,33.855681,78,East,Orange,SR-91,,R,1.46,,16.18,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200048,2019-03-15,21:50:40,12,ACACIA,Anaheim,-117.900723,33.853692,180,East,Orange,SR-91,,,4.6,,22.98,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200049,2019-03-15,21:50:40,12,EUCLID,Fullerton,-117.944242,33.854316,141,West,Orange,SR-91,,,2.09,,20.46,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200050,2019-03-15,21:50:40,12,LAKEVIEW,Anaheim,-117.813397,33.852168,282,West,Orange,SR-91,,R,10.19,,28.56,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1200051,2019-03-15,21:50:40,12,"WIER CANYON",Anaheim,-117.689271,33.873408,465,West,Orange,SR-91,,R,17.82,L,36.19,true,"Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported","Not Reported"
+1200052,2019-03-15,21:50:40,12,HARVARD,Irvine,-117.831322,33.672632,62,North,Orange,I-405,,,6.15,,5.93,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200053,2019-03-15,21:50:40,12,"MAGNOLIA ST","Fountain Valley",-117.971297,33.719788,42,North,Orange,I-405,,,15.18,,14.93,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200055,2019-03-15,21:50:40,12,JEFFREY,Irvine,-117.796762,33.663333,121,South,Orange,I-405,,,4.06,,3.81,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200056,2019-03-15,21:50:40,12,"NEW HAMPSHIRE","Costa Mesa",-117.928345,33.692524,39,South,Orange,I-405,,,12.04,,11.79,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM - 9 AM","Not Reported",,,
+1200057,2019-03-15,21:50:40,12,"SEAL BEACH","Seal Beach",-118.060253,33.774024,29,South,Orange,I-405,,,21.8,,21.55,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1200058,2019-03-15,21:50:40,12,WARDLOW,"Long Beach",-118.081678,33.817992,42,South,"Los Angeles",I-605,,R,0.81,,2.86,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1208488,2019-03-15,21:50:40,12,"YORBA LINDA",Fullerton,-117.880268,33.887518,278,North,Orange,SR-57,,,18.24,,7.5,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1211184,2019-03-15,21:50:40,12,"IRVINE CENTER DRIVE",Irvine,-117.745482,33.647931,236,North,Orange,I-405,,,0.87,,0.62,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1211185,2019-03-15,21:50:40,12,"VON KARMAN",Irvine,-117.851222,33.679969,62,South,Orange,I-405,,,7.41,,7.19,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1211967,2019-03-15,21:50:40,12,"MAGNOLIA AT 22","Garden Grove",-117.969424,33.766029,68,West,Orange,SR-22,,R,5,,6.43,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM - 9 AM","Not Reported",,,
+1211978,2019-03-15,21:50:40,12,"17th ST",Tustin,-117.830808,33.758616,160,North,Orange,SR-55,,,11.71,,11.69,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1212138,2019-03-15,21:50:40,12,"Ortega Hwy","San Juan Capistrano",-117.661704,33.510279,216,South,Orange,I-5,,,10.17,,82.43,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1212822,2019-03-15,21:50:40,12,Kraemer,Anaheim,-117.859224,33.846746,226,East,Orange,SR-91,,,7.12,,25.5,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1212823,2019-03-15,21:50:40,12,"E of Imperial",Anaheim,-117.767451,33.864767,314,East,Orange,SR-91,,R,13.05,,31.4,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214503,2019-03-15,21:50:40,12,"Vista Hermosa","San Clemente",-117.639346,33.449613,190,South,Orange,I-5,,,4.64,,76.88,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214504,2019-03-15,21:50:40,12,"Avery Pkwy","Mission Viejo",-117.672768,33.546096,252,North,Orange,I-5,,,12.86,,85.12,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214505,2019-03-15,21:50:40,12,"Crown Valley Pkwy","Mission Viejo",-117.67218,33.570674,288,South,Orange,I-5,,,14.57,,86.82,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214506,2019-03-15,21:50:40,12,"405 fwy",Irvine,-117.733182,33.642772,252,North,Orange,I-5,,,21.14,,93.4,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214507,2019-03-15,21:50:40,12,"Yale OC",Irvine,-117.775036,33.700544,150,North,Orange,I-5,,R,25.82,,98.06,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214508,2019-03-15,21:50:40,12,"Tustin Ranch OC",Tustin,-117.805112,33.725985,91,South,Orange,I-5,,R,28.32,,100.57,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214509,2019-03-15,21:50:40,12,"Santa Isabella","Costa Mesa",-117.903163,33.657101,72,North,Orange,SR-55,,R,3.25,,3.25,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1214510,2019-03-15,21:50:40,12,"Baker Street","Costa Mesa",-117.878706,33.680209,55,North,Orange,SR-55,,R,5.38,,5.38,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214511,2019-03-15,21:50:40,12,"Orangewood Ave",Orange,-117.877915,33.796586,154,South,Orange,SR-57,,,11.86,,1.14,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214512,2019-03-15,21:50:40,12,"Placentia OH",Placentia,-117.879528,33.86806,223,South,Orange,SR-57,,,16.88,,6.16,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214513,2019-03-15,21:50:40,12,"Lambert Rd",Brea,-117.878697,33.935067,570,South,Orange,SR-57,,,21.52,,10.79,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1214514,2019-03-15,21:50:40,12,Edwards,Westminster,-118.01674,33.754335,39,South,Orange,I-405,,,18.72,,18.48,true,"Not Reported","Not Reported","1 Page (Normal)","Not Reported","Not Reported","I-405 TO CLOSE","AT FAIRVIEW RD","SAT 11 PM-9 AM","Not Reported",,,
+1214956,2019-03-15,21:50:40,12,"Cambridge Street","Santa Ana",-117.845635,33.775533,190,East,Orange,SR-22,,R,12.28,,13.85,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1217542,2019-03-15,21:50:40,12,"Test CMS",Orange,-117.76848,33.69002,150,South,Orange,I-5,,R,25,,,false,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218442,2019-03-15,21:50:40,12,Antonio,"San Juan Capistrano",-117.624421,33.519067,170,East,Orange,SR-74,,R,2.31,,2.31,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218482,2019-03-15,21:50:40,12,"County Line","San Clemente",-117.59611,33.401633,127,North,Orange,I-5,,,0.38,,72.64,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218483,2019-03-15,21:50:40,12,Springdale,Westminster,-118.023301,33.774078,49,East,Orange,SR-22,,R,1.77,,3.23,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218484,2019-03-15,21:50:40,12,Laguna_Hills,"Aliso Viejo",-117.725774,33.584286,452,North,Orange,SR-73,,,14.77,,4.77,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218485,2019-03-15,21:50:40,12,"North of Jamboree","Newport Beach",-117.866717,33.657071,59,North,Orange,SR-73,,,24.91,,14.91,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
+1218486,2019-03-15,21:50:40,12,"South of Wildlife","Newport Coast",-117.818984,33.61494,718,South,Orange,SR-73,,,20.75,,10.75,true,"Not Reported","Not Reported",Blank,"Not Reported","Not Reported",,,,"Not Reported",,,
Index: trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted_prepped.csv
===================================================================
--- trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted_prepped.csv	(revision 352)
+++ trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted_prepped.csv	(revision 352)
@@ -0,0 +1,1215 @@
+1 N 12.39,33.565462,-117.828018,1 SB REEF POINT DR,0.547592,0.836745,lime
+1 N 12.78,33.568992,-117.833412,1 SB CRYSTAL HEIGHTS,0.71338,0.700778,lime
+1 N 13.36,33.575502,-117.839807,1 SB LOS TRANCOS,0.71338,0.700778,lime
+1 N 16.43,33.605811,-117.875914,1 NB AVOCADO AVE,0.565236,0.82493,lime
+1 N 17.01,33.611026,-117.883525,1 NB IRVINE TERRACE,0.565236,0.82493,lime
+1 N 17.62,33.613432,-117.893777,1 NB PROMONTORY PT,0.37769,0.925932,lime
+1 N 18.07,33.61624,-117.900661,1 NB BAYSIDE DRIVE,0.37769,0.925932,lime
+1 N 18.83,33.616119,-117.913843,1 NB BALBOA BAY,0.380476,0.924791,lime
+1 N 19.51,33.620457,-117.924387,1 SB RIVERSIDE AVE,0.140764,0.990043,lime
+1 N 20.03,33.621716,-117.933242,1 NB S OF 55,0.140764,0.990043,lime
+1 S 12.39,33.565462,-117.828018,1 SB REEF POINT DR,-0.547592,-0.836745,lime
+1 S 12.78,33.568992,-117.833412,1 SB CRYSTAL HEIGHTS,-0.713433,-0.700723,lime
+1 S 13.36,33.575503,-117.839807,1 SB LOS TRANCOS,-0.713433,-0.700723,lime
+1 S 16.43,33.605675,-117.876053,1 NB AVOCADO AVE,-0.566243,-0.824239,lime
+1 S 17.01,33.610881,-117.883631,1 NB IRVINE TERRACE,-0.566243,-0.824239,lime
+1 S 17.62,33.613228,-117.893843,1 NB PROMONTORY PT,-0.399609,-0.916686,lime
+1 S 18.07,33.616208,-117.900679,1 NB BAYSIDE DRIVE,-0.399609,-0.916686,lime
+1 S 18.83,33.61612,-117.913849,1 NB BALBOA BAY,-0.371678,-0.928362,lime
+1 S 19.51,33.620357,-117.924432,1 SB RIVERSIDE AVE,-0.133399,-0.991062,lime
+1 S 20.03,33.621545,-117.933258,1 NB S OF 55,-0.133399,-0.991062,lime
+5 N 0.65,33.40516,-117.597992,S. LUIS REY,0,0,lime
+5 N 10.1,33.50939,-117.660803,EL HORNO,0.920027,0.391855,lime
+5 N 10.4,33.513534,-117.662568,SERRA PARK,0.919833,0.392311,lime
+5 N 10.7,33.517677,-117.664335,JUNIPERO SERRA,0.919833,0.392311,lime
+5 N 11.05,33.52247,-117.666382,JUNIPERO SERRA,0.924678,0.38075,lime
+5 N 11.06,33.522606,-117.666438,JUNIPERO SERRA,0,0,white
+5 N 11.37,33.526621,-117.66866,TRABUCO,0.874948,0.484218,lime
+5 N 11.91,33.53247,-117.674488,WILDWOOD,0.999898,-0.014276,lime
+5 N 12.26,33.537513,-117.674416,S OF 73,0,0,white
+5 N 1.24,33.413051,-117.601964,MAGDALENA,0,0,white
+5 N 1.26,33.413319,-117.6021,MAGDALENA,0.891749,0.45253,lime
+5 N 12.8,33.545242,-117.673098,AVERY 1,0.993425,-0.114487,lime
+5 N 13.05,33.548817,-117.672686,AVERY PARK,0.999609,-0.027961,lime
+5 N 13.06,33.54896,-117.672682,AVERY PARK,0,0,white
+5 N 13.57,33.556241,-117.672812,CROWN VA1,0.999812,0.019403,lime
+5 N 13.71,33.558239,-117.672849,CROWN VA1,0.999976,0.006993,lime
+5 N 13.7,33.558096,-117.672848,CROWN VA1,0,0,white
+5 N 13.87,33.560549,-117.672791,CROWN VA2,0.996005,-0.089297,lime
+5 N 13.88,33.560694,-117.672778,CROWN VA2,0,0,white
+5 N 14.46,33.569099,-117.671844,FAIRCOURT,0.993882,-0.110445,lime
+5 N 15.13,33.578849,-117.67162,OSO PARK 1,0.999789,-0.020544,lime
+5 N 15.14,33.578995,-117.671617,OSO PARK1,0,0,white
+5 N 15.35,33.582052,-117.67157,OSO PARK2,0,0,white
+5 N 15.36,33.582197,-117.671571,OSO PARK2,0.999908,-0.01358,lime
+5 N 15.8,33.588603,-117.671484,CERVANTES,0.999908,-0.01358,lime
+5 N 16.37,33.596326,-117.674275,LA PAZ 1,0.652225,0.758026,lime
+5 N 16.51,33.597861,-117.676059,LA PAZ 1,0,0,white
+5 N 16.52,33.597965,-117.676194,LA PAZ 1,0.610278,0.792187,lime
+5 N 16.69,33.599252,-117.678685,LA PAZ 2,0,0,white
+5 N 16.7,33.599314,-117.678839,LA PAZ 2,0,0,white
+5 N 17.43,33.604242,-117.68984,ALICIA 1,0,0,white
+5 N 17.44,33.604332,-117.689974,ALICIA 1,0.557556,0.830139,lime
+5 N 17.63,33.606025,-117.692734,ALICIA 2,0,0,white
+5 N 17.64,33.606111,-117.692884,ALICIA 2,0,0,white
+5 N 18.17,33.60972,-117.70083,ANKERTON,0.59407,0.804413,lime
+5 N 1.83,33.420685,-117.606498,EL CAMINO REAL,0,0,white
+5 N 1.84,33.420802,-117.6066,EL CAMINO REAL,0,0,white
+5 N 18.61,33.613883,-117.706467,EL TORO 1,0.647648,0.761939,lime
+5 N 18.62,33.613985,-117.706587,EL TORO 1,0.647648,0.761939,lime
+5 N 18.82,33.616112,-117.70901,EL TORO 2,0,0,white
+5 N 18.83,33.616217,-117.709128,EL TORO 2,0,0,white
+5 N 19.33,33.621929,-117.714379,RED ROBIN,0.73619,0.676774,lime
+5 N 20.23,33.631998,-117.724216,OLDFIELD,0.651823,0.758371,lime
+5 N 20.24,33.632102,-117.724337,OLDFIELD,0.735536,0.677486,lime
+5 N 20,33.629553,-117.721491,LAKE FOR2,0,0,white
+5 N 20.59,33.636144,-117.72806,BAKE 1,0.735536,0.677486,lime
+5 N 20.94,33.640323,-117.731437,BAKE 2,0.77975,0.626091,lime
+5 N 21.25,33.644068,-117.734444,At 405,0.77975,0.626091,lime
+5 N 22.1,33.654371,-117.742629,ALTON 2,0.780869,0.624695,lime
+5 N 22.2,33.655581,-117.743597,ALTON 3,0.780869,0.624695,lime
+5 N 22.75,33.662274,-117.748817,BARRANCA,0.770018,0.638022,lime
+5 N 23.05,33.66578,-117.751722,S OF 133,0.776343,0.630311,lime
+5 N 23.2,33.667646,-117.753237,N OF 133,0.776343,0.630311,lime
+5 N 23.5,33.671657,-117.755266,S OF SAND CNYN,0.972906,0.2312,lime
+5 N 23.69,33.674367,-117.75591,SAND CANYON 1,0.813783,0.581169,lime
+5 N 24.05,33.67881,-117.759083,SAND CANYON 2,0.701651,0.712521,lime
+5 N 2.45,33.428587,-117.6116,PRESIDIO,0,0,white
+5 N 24.5,33.68378,-117.76413,N OF SAND CNYN,0.701651,0.712521,lime
+5 N 2.47,33.428811,-117.611817,PRESIDIO,0,0,white
+5 N 25.08,33.691182,-117.768954,JEFFREY 1,0,0,white
+5 N 25.15,33.692068,-117.769532,JEFFREY 2,0,0,white
+5 N 25.8,33.700287,-117.774934,YALE,0.835661,0.549245,lime
+5 N 26.56,33.709761,-117.781713,CULVER 1,0.673811,0.738904,lime
+5 N 26.81,33.712411,-117.784619,CULVER 2,0.673811,0.738904,lime
+5 N 27.55,33.719297,-117.794408,JAMBOREE 1,0,0,white
+5 N 27.56,33.719391,-117.794541,JAMBOREE 2,0,0,white
+5 N 27.7,33.720695,-117.796397,JAMBOREE 2,0.570509,0.821292,lime
+5 N 28.1,33.724394,-117.801722,TUSTIN RANCH,0.570509,0.821292,lime
+5 N 2.8,33.432425,-117.615519,PALIZADA,0.698551,0.71556,lime
+5 N 28.98,33.732444,-117.813606,RED HILL,0.577035,0.816719,lime
+5 N 29.24,33.73489,-117.817068,RED HILL,0,0,white
+5 N 29.79,33.738115,-117.825811,NEWPORT*,0.29944,0.954115,lime
+5 N 30.2,33.740283,-117.832416,S OF 55,0.333225,0.942847,lime
+5 N 30,33.739183,-117.829214,B ST.,0,0,white
+5 N 30.4,33.741403,-117.835585,N OF 55,0.333225,0.942847,lime
+5 N 30.6,33.742605,-117.838695,WILLIAMS,0.572697,0.819767,lime
+5 N 30.8,33.744413,-117.841283,1ST,0,0,white
+5 N 30.9,33.745655,-117.842095,1ST,0.928052,0.372451,lime
+5 N 31.23,33.750124,-117.844061,4TH,0.715791,0.698315,lime
+5 N 31,33.747013,-117.84264,N55 to N5 HOV VIA,0.928052,0.372451,lime
+5 N 31.4,33.752049,-117.845939,CONCORD,0.715791,0.698315,lime
+5 N 31.602,33.753768,-117.848819,GRAND 1 HOV OFF,0,0,white
+5 N 31.6,33.753753,-117.848788,GRAND 1,0.435561,0.900159,lime
+5 N 31.73,33.754689,-117.850781,GRAND 2,0,0,white
+5 N 31.9,33.755834,-117.85344,GRAND 2,0.395503,0.918465,lime
+5 N 32.25,33.758263,-117.858902,17TH 1,0.447214,0.894427,lime
+5 N 3.23,33.43749,-117.619773,PICO 1,0.498751,0.866745,lime
+5 N 32.3,33.758644,-117.859664,17TH 1,0,0,white
+5 N 32.5,33.760465,-117.862379,17TH 2,0.753317,0.657658,lime
+5 N 32.6,33.761599,-117.863369,17TH 3,0,0,white
+5 N 33.2,33.76901,-117.86784,MAIN 2,0.824993,0.565143,lime
+5 N 33.3,33.770299,-117.868723,BROADWAY,0.824993,0.565143,lime
+5 N 33,33.766579,-117.866456,MAIN 1,0.869034,0.494752,lime
+5 N 33.6,33.773944,-117.871893,SANTIAGO,0.783267,0.621685,lime
+5 N 33.8,33.776455,-117.873886,S OF 22,0.783267,0.621685,lime
+5 N 34.2,33.781151,-117.878226,LA VETA,0.58161,0.813468,lime
+5 N 34.3,33.782039,-117.879468,N OF 57,0.544875,0.838517,lime
+5 N 34.4,33.782887,-117.880773,N OF 57*,0.668811,0.743433,lime
+5 N 34.6,33.785047,-117.883174,CHAPMAN 1,0.668811,0.743433,lime
+5 N 35.1,33.790771,-117.888724,STATE COLLEGE,0.673354,0.73932,lime
+5 N 35,33.789689,-117.887536,CHAPMAN 2,0,0,white
+5 N 35.4,33.793754,-117.891888,ORANGEWOOD 1,0.700471,0.713681,lime
+5 N 3.56,33.440202,-117.624486,PICO 2,0.498751,0.866745,lime
+5 N 35.6,33.795663,-117.893833,GENE AUTRY,0.700471,0.713681,lime
+5 N 36.4,33.803764,-117.902246,ORANGEWOOD 2,0.641147,0.767418,lime
+5 N 36.48,33.805074,-117.903814,KATELLA,0.614618,0.788825,lime
+5 N 36.6,33.806644,-117.905829,ANAHEIM 2,0.614618,0.788825,lime
+5 N 37,33.811147,-117.910643,S OF HARBOR,0.690175,0.723642,lime
+5 N 37.38,33.815354,-117.915054,HARBOR,0.700541,0.713613,lime
+5 N 37.7,33.818891,-117.918657,BALL,0.696671,0.717391,lime
+5 N 38.1,33.823323,-117.923123,SOUTH 2,0,0,white
+5 N 38,33.822186,-117.92205,SOUTH 1,0.727279,0.686342,lime
+5 N 38.9,33.832016,-117.931513,LINCOLN,0,0,white
+5 N 39.09,33.833722,-117.934272,LINCOLN,0.276022,0.961151,lime
+5 N 39.3,33.834815,-117.938078,EUCLID 1,0.36034,0.932821,lime
+5 N 39.6,33.836731,-117.943038,EUCLID 2,0.478822,0.877912,lime
+5 N 40.04,33.840124,-117.949259,CRESCENT,0.478822,0.877912,lime
+5 N 4.02,33.44466,-117.630415,HERMOSA 1,0,0,white
+5 N 40.5,33.843721,-117.955716,BROOKHURST 1,0.541489,0.840708,lime
+5 N 40.7,33.845442,-117.958388,BROOKHURST 2,0,0,white
+5 N 40.98,33.847549,-117.962444,LA PALMA,0.442245,0.896895,lime
+5 N 4.1,33.445434,-117.631445,HERMOSA 2,0.600745,0.799441,lime
+5 N 41.34,33.850294,-117.968011,GILBERT,0.442245,0.896895,lime
+5 N 41.8,33.854226,-117.974766,MAGNOLIA,0.61619,0.787597,lime
+5 N 41.9,33.855211,-117.976025,MAGNOLIA 2,0.61619,0.787597,lime
+5 N 42.52,33.859271,-117.98503,ORANGETHORPE 2,0.456565,0.88969,lime
+5 N 42.7,33.860615,-117.987649,N OF ORANGETHORPE,0.456565,0.88969,lime
+5 N 43.01,33.863248,-117.991902,STANTON,0.437215,0.899357,lime
+5 N 43.28,33.865195,-117.995907,BEACH 1,0,0,white
+5 N 43.3,33.865349,-117.996199,BEACH 1,0.466495,0.884524,lime
+5 N 43.6,33.867724,-118.00058,BEACH 2,0.460988,0.887406,lime
+5 N 43.9,33.870031,-118.005021,Western,0.460988,0.887406,lime
+5 N 44.35,33.874466,-118.011177,ARTESIA,0,0,white
+5 N 4.7,33.450411,-117.639897,S OF VAQUERO,0.480833,0.876812,lime
+5 N 5.25,33.45478,-117.647864,N OF VAQUERO,0.393632,0.919268,lime
+5 N 5.4,33.455773,-117.650183,N OF VAQUERO,0.393632,0.919268,lime
+5 N 5.73,33.458342,-117.655008,ESTRELLA1,0,0,white
+5 N 5.89,33.459637,-117.657305,ESTRELLA2,0,0,white
+5 N 6.47,33.464404,-117.665509,SACRAMENTO,0.523797,0.851843,lime
+5 N 6.8,33.467227,-117.6701,5NB PCH 3 OFF RAMPS,0,0,white
+5 N 6.91,33.468032,-117.671714,LAS RAMBLAS,0,0,white
+5 N 7.46,33.475073,-117.674271,CAPISTRANO,0.816519,-0.577318,lime
+5 N 7.99,33.481685,-117.669596,AEROPUERTO,0.816519,-0.577318,lime
+5 N 8.64,33.489561,-117.663255,S JUAN CREEK,0.839468,-0.54341,lime
+5 N 9.15,33.495938,-117.659127,PLAZA,0.972984,-0.230873,lime
+5 N 9.4,33.499516,-117.658278,ORTEGA  1,0.972984,-0.230873,lime
+5 N 9.67,33.503442,-117.658516,ORTEGA 1,0,0,white
+5 N 9.69,33.503727,-117.658585,ORTEGA  2,0.971921,0.235307,lime
+5 S 0.64,33.404943,-117.598167,S LUIS REY,-0.892883,-0.450288,lime
+5 S 0.9,33.408425,-117.599923,CALAFIA,0,0,white
+5 S 10.1,33.5093,-117.661127,EL HORNO,-0.918881,-0.394535,lime
+5 S 10.4,33.513441,-117.662905,SERRA PARK,-0.920608,-0.390487,lime
+5 S 10.7,33.517588,-117.664664,JUNIPERO SERRA,-0.920608,-0.390487,lime
+5 S 11.05,33.522341,-117.6667,JUNIPERO SERRA,-0.878964,-0.476887,lime
+5 S 11.37,33.526418,-117.668912,TRABUCO,-0.878964,-0.476887,lime
+5 S 11.91,33.53231,-117.674919,WILDWOOD,-0.999508,0.03137,lime
+5 S 12.4,33.539447,-117.674695,S of 73,0,0,white
+5 S 1.26,33.41325,-117.602338,MAGDALENA,-0.9013,-0.433194,lime
+5 S 12.8,33.545217,-117.673404,AVERY 1,-0.993564,0.113275,lime
+5 S 13.05,33.548822,-117.672993,AVERY PARK,-0.993564,0.113275,lime
+5 S 13.6,33.556667,-117.673131,CROWN VA1,-0.999988,0.004899,lime
+5 S 13.87,33.560545,-117.673112,CROWN VA2,-0.999988,0.004899,lime
+5 S 14.46,33.569098,-117.67216,Faircourt,-0.999773,0.021323,lime
+5 S 1.49,33.416348,-117.603827,EL CAMINO REAL,0,0,white
+5 S 15.03,33.577397,-117.671983,OSO PARK1,-0.999891,0.014798,lime
+5 S 15.3,33.581316,-117.671925,OSO PARK2,-0.999911,0.013321,lime
+5 S 15.8,33.588522,-117.671829,CERVANTES,-0.999911,0.013321,lime
+5 S 16.3,33.595354,-117.673779,LA PAZ 1,-0.688838,-0.724915,lime
+5 S 16.5,33.597607,-117.67615,LA PAZ 2,-0.688838,-0.724915,lime
+5 S 17.26,33.602645,-117.687691,ALICIA 1,0,0,white
+5 S 17.49,33.604617,-117.69087,ALICIA 2,-0.527137,-0.849781,lime
+5 S 18.17,33.609505,-117.700998,ANKERTON,-0.573702,-0.819064,lime
+5 S 18.5,33.612561,-117.705361,EL TORO 1,-0.647397,-0.762153,lime
+5 S 18.7,33.614654,-117.707825,EL TORO 2,-0.647397,-0.762153,lime
+5 S 19.33,33.621819,-117.714838,RED ROBIN,-0.735437,-0.677593,lime
+5 S 19.8,33.627286,-117.719875,LAKE FOR1,0,0,white
+5 S 19.9,33.628454,-117.720919,LAKE FOR2,0,0,white
+5 S 20.23,33.631888,-117.724695,OLDFIELD,-0.650261,-0.759711,lime
+5 S 20.24,33.631989,-117.724813,OLDFIELD,-0.737725,-0.675102,lime
+5 S 20.59,33.635959,-117.728446,BAKE 1,-0.737725,-0.675102,lime
+5 S 20.95,33.640308,-117.731896,BAKE 2,-0.792319,-0.610107,lime
+5 S 21.25,33.643978,-117.734722,At 405,-0.792319,-0.610107,lime
+5 S 2.14,33.424652,-117.609039,PRESIDIO,0,0,white
+5 S 21.92,33.652076,-117.741205,ALTON 1,0,0,white
+5 S 22.1,33.654255,-117.74294,ALTON 1,-0.78542,-0.618963,lime
+5 S 22.14,33.654741,-117.743323,ALTON 2,-0.78542,-0.618963,lime
+5 S 22.75,33.662021,-117.749253,BARRANCA,-0.788481,-0.615059,lime
+5 S 23.05,33.665581,-117.75203,S OF 133,-0.781645,-0.623724,lime
+5 S 23.1,33.66617,-117.7525,N OF 133,0,0,white
+5 S 23.2,33.667502,-117.753539,5S TO 133S/BARA,-0.809521,-0.587091,lime
+5 S 23.3,33.668794,-117.754476,TEST MVDS,0,0,white
+5 S 23.5,33.6716,-117.755616,S OF SAND CNYN,-0.975596,-0.219572,lime
+5 S 23.69,33.674297,-117.756223,SAND CANYON 1,-0.809826,-0.58667,lime
+5 S 24.05,33.67863,-117.759362,SAND CANYON 2,-0.809826,-0.58667,lime
+5 S 24.5,33.683599,-117.764425,N OF SAND CNYN,-0.835705,-0.549178,lime
+5 S 24.84,33.687939,-117.767277,JEFFREY 1,0,0,white
+5 S 25.8,33.700148,-117.775267,YALE,-0.828715,-0.559671,lime
+5 S 26.35,33.70706,-117.779935,CULVER 1,0,0,white
+5 S 26.66,33.710634,-117.783134,CULVER 2,-0.654674,-0.755912,lime
+5 S 26.81,33.712186,-117.784926,CULVER 2,-0.654674,-0.755912,lime
+5 S 27.43,33.717966,-117.793071,JAMBOREE 1,0,0,white
+5 S 27.7,33.72047,-117.796638,JAMBOREE 2,-0.574555,-0.818466,lime
+5 S 28.1,33.724136,-117.801999,TUSTIN RANCH,-0.556796,-0.83065,lime
+5 S 2.8,33.432273,-117.615724,PALIZADA,-0.768234,-0.640169,lime
+5 S 28.35,33.726403,-117.805381,TUSTIN RANCH,0,0,white
+5 S 29.02,33.732587,-117.814369,RED HILL,-0.566824,-0.823839,lime
+5 S 29.7,33.737386,-117.824499,NEWPORT*,0,0,white
+5 S 29.79,33.737856,-117.825947,NEWPORT,-0.30873,-0.95115,lime
+5 S 29.9,33.738432,-117.827716,B ST,0,0,white
+5 S 29.94,33.738636,-117.828362,NEWPORT,0,0,white
+5 S 30.2,33.740098,-117.832494,S OF 55*,-0.326161,-0.945314,lime
+5 S 30.4,33.741219,-117.835743,N OF 55,-0.33389,-0.942612,lime
+5 S 30.6,33.742378,-117.839015,WILLIAMS (VIADUCT),-0.33389,-0.942612,lime
+5 S 30.9,33.745553,-117.842538,1ST,-0.927915,-0.372793,lime
+5 S 31.23,33.749928,-117.844652,4TH,-0.697138,-0.716937,lime
+5 S 31,33.746922,-117.843088,S5 to S55 HOV VIA,-0.927915,-0.372793,lime
+5 S 31.4,33.751759,-117.846535,CONCORD,-0.504083,-0.863655,lime
+5 S 31.6,33.753388,-117.849326,GRAND 1,-0.504083,-0.863655,lime
+5 S 31.9,33.755475,-117.853795,GRAND 2,-0.382512,-0.923951,lime
+5 S 32.25,33.757943,-117.859225,17TH 1,-0.583453,-0.812147,lime
+5 S 3.23,33.437336,-117.619943,PICO 1,-0.498994,-0.866606,lime
+5 S 32,33.756108,-117.855324,GRAND 2,0,0,white
+5 S 32.58,33.761104,-117.863625,17TH 2,-0.583453,-0.812147,lime
+5 S 33.2,33.768742,-117.868373,MAIN 2,-0.830562,-0.556927,lime
+5 S 33.3,33.770032,-117.869238,BROADWAY,-0.830562,-0.556927,lime
+5 S 33,33.766429,-117.866976,MAIN 1,-0.855987,-0.516997,lime
+5 S 33.6,33.773768,-117.872316,SANTIAGO,-0.780234,-0.625487,lime
+5 S 33.8,33.776289,-117.874337,S OF 22,-0.780234,-0.625487,lime
+5 S 34.1,33.779824,-117.87776,LA VETA,0,0,white
+5 S 34.2,33.780805,-117.878897,LA VETA,-0.617542,-0.786538,lime
+5 S 34.3,33.781682,-117.880014,N OF 57,-0.575376,-0.817889,lime
+5 S 34,33.778694,-117.876548,5N&S La Veta,0,0,white
+5 S 34.4,33.782529,-117.881218,N OF 57*,-0.675711,-0.737167,lime
+5 S 34.6,33.784761,-117.883653,CHAPMAN 1,-0.675711,-0.737167,lime
+5 S 35.2,33.791651,-117.890222,STATE COLLEGE,-0.670989,-0.741468,lime
+5 S 35.4,33.793517,-117.892284,ORANGEWOOD 1,-0.668203,-0.743979,lime
+5 S 3.56,33.440044,-117.624646,PICO 2,-0.605568,-0.795794,lime
+5 S 35.6,33.79536,-117.894336,GENE AUTRY,-0.668203,-0.743979,lime
+5 S 36.31,33.802101,-117.901359,KATELLA,0,0,white
+5 S 36.4,33.803614,-117.902924,HOV GENE AUTRY OFF,-0.661771,-0.749706,lime
+5 S 36.48,33.804788,-117.904254,ANAHEIM 1,-0.654355,-0.756187,lime
+5 S 36.6,33.806478,-117.906207,ANAHEIM 2,-0.688863,-0.724891,lime
+5 S 37,33.810933,-117.910895,S OF HARBOR,-0.688863,-0.724891,lime
+5 S 37.48,33.816263,-117.916397,HARBOR,-0.689841,-0.723961,lime
+5 S 37.7,33.818669,-117.918922,BALL,-0.697036,-0.717036,lime
+5 S 38,33.82198,-117.922328,SOUTH 1,-0.750414,-0.660968,lime
+5 S 38.48,33.827601,-117.927279,PEPPER,0,0,white
+5 S 39.3,33.834594,-117.938264,EUCLID 1,-0.361622,-0.932325,lime
+5 S 39,33.832791,-117.933068,LINCOLN,-0.327822,-0.944739,lime
+5 S 39.6,33.8365,-117.943178,EUCLID 2,-0.471004,-0.882131,lime
+5 S 40.04,33.839851,-117.949454,CRESCENT,-0.48436,-0.874869,lime
+5 S 40.5,33.843443,-117.955942,BROOKHURST 1,-0.48436,-0.874869,lime
+5 S 40.98,33.847169,-117.96276,LA PALMA,-0.460852,-0.887477,lime
+5 S 4.1,33.445303,-117.631557,HERMOSA 2,-0.605568,-0.795794,lime
+5 S 41.34,33.85001,-117.968231,GILBERT,-0.460852,-0.887477,lime
+5 S 41.81,33.854064,-117.975069,MAGNOLIA 91E OFF,0,0,white
+5 S 41.8,33.853961,-117.97494,MAGNOLIA,-0.623956,-0.781459,lime
+5 S 41.9,33.854882,-117.976235,MAGNOLIA 2,-0.57431,-0.818638,lime
+5 S 42.52,33.859063,-117.985205,ORANGETHORPE 2,-0.473855,-0.880603,lime
+5 S 42.7,33.860447,-117.987777,N OF ORANGETHORPE,-0.473855,-0.880603,lime
+5 S 43.01,33.862901,-117.992155,STANTON,-0.493087,-0.86998,lime
+5 S 43.3,33.865235,-117.996273,BEACH 1,-0.493087,-0.86998,lime
+5 S 43,33.86282,-117.992016,SB 5 to EB 91,0,0,white
+5 S 43.6,33.867596,-118.000667,BEACH 2,-0.455465,-0.890254,lime
+5 S 43.9,33.869887,-118.005145,Western,-0.455465,-0.890254,lime
+5 S 44.2,33.872567,-118.009266,ARTESIA 1,0,0,white
+5 S 4.7,33.450269,-117.640023,S OF VAQUERO,-0.478189,-0.878257,lime
+5 S 5.25,33.454615,-117.648005,N OF VAQUERO,-0.395835,-0.918322,lime
+5 S 5.4,33.455612,-117.650318,N OF VAQUERO,-0.443289,-0.896379,lime
+5 S 5.59,33.457014,-117.653153,ESTRELLA,0,0,white
+5 S 6.47,33.464281,-117.665631,SACRAMENTO,-0.56275,-0.826627,lime
+5 S 6.6,33.465471,-117.667379,RTE 1 SB,0,0,white
+5 S 7.46,33.475102,-117.674584,CAPISTRANO,-0.815879,0.578222,lime
+5 S 7.99,33.481738,-117.669881,AEROPUERTO,-0.815879,0.578222,lime
+5 S 8.6,33.489176,-117.663917,S JUAN CREEK,-0.836267,0.548322,lime
+5 S 9.15,33.496001,-117.659442,PLAZA,-0.971491,0.237077,lime
+5 S 9.4,33.499521,-117.658583,ORTEGA 1,-0.996721,-0.080919,lime
+5 S 9.69,33.503672,-117.65892,ORTEGA  2,-0.996721,-0.080919,lime
+22 E 0.2,33.774295,-118.093885,COLLEGE PARK,0,0,lime
+22 E 10.13,33.778903,-117.882341,BRISTOL,0.009671,-0.999953,lime
+22 E 10.35,33.778938,-117.878722,W OF 5,-0.018208,-0.999834,lime
+22 E 10.53,33.778882,-117.875647,W OF 5,-0.163762,-0.9865,lime
+22 E 10.71,33.77834,-117.872382,E OF 5,-0.163762,-0.9865,lime
+22 E 1.08,33.774261,-118.034947,VALLEY V2,0,0,white
+22 E 11.25,33.778206,-117.862808,MAIN,-0.226291,-0.97406,lime
+22 E 11.68,33.776567,-117.855753,GLASSELL1,-0.249497,-0.968376,lime
+22 E 12.01,33.77516,-117.850292,GLASSELL2,0.111941,-0.993715,lime
+22 E 12.25,33.775624,-117.846173,CONCORD,0.111941,-0.993715,lime
+22 E 12.7,33.776625,-117.838553,TUSTIN,0,0,lime
+22 E 1.41,33.774239,-118.029233,VIA LOS ALISOS,-0.00385,-0.999993,lime
+22 E 1.74,33.774214,-118.023517,SPRINGDALE CENSUS,0.0,-1.0,lime
+22 E 1.75,33.774214,-118.023344,SPRINGDALE,-0.000902,-1.0,lime
+22 E 2.07,33.774209,-118.0178,YUMA,-0.000902,-1.0,lime
+22 E 2.49,33.774494,-118.010537,KNOTT 1,-0.13051,-0.991447,lime
+22 E 2.71,33.774003,-118.006807,GARDEN GROV,-0.410336,-0.911934,lime
+22 E 2.88,33.772807,-118.004149,KNOTT 2,-0.410336,-0.911934,lime
+22 E 3.44,33.771171,-117.994688,BEACH 1,-0.057103,-0.998368,lime
+22 E 3.73,33.770894,-117.989845,BEACH 2,-0.058722,-0.998274,lime
+22 E 4.03,33.770587,-117.984626,WILSON,-0.058722,-0.998274,lime
+22 E 4.34,33.769467,-117.979526,NEWLAND,-0.583276,-0.812274,lime
+22 E 4.6,33.767032,-117.976135,MAGNOLIA1,-0.198967,-0.980006,lime
+22 E 4.99,33.765717,-117.969658,MAGNOLIA2,-0.198967,-0.980006,lime
+22 E 5.57,33.765798,-117.959406,BROOKHUR1,0.009319,-0.999957,lime
+22 E 5.63,33.765808,-117.958333,BROOKHUR1,0,0,white
+22 E 5.77,33.765809,-117.955835,BROOKHUR2,0.010191,-0.999948,lime
+22 E 6.05,33.765858,-117.951027,HOPE,0.010191,-0.999948,lime
+22 E 6.34,33.76591,-117.946095,WARD,0.008461,-0.999964,lime
+22 E 6.61,33.765949,-117.941486,TAFT,0.008037,-0.999968,lime
+22 E 6.94,33.765995,-117.935763,EUCLID,0.008037,-0.999968,lime
+22 E 7.29,33.766038,-117.929691,NEWHOPE,-0.00578,-0.999983,lime
+22 E 7.3,33.766037,-117.929518,NEWHOPE CENSUS,-0.00578,-0.999983,lime
+22 E 7.72,33.76705,-117.922361,HARBOR 1,0.32366,-0.946173,lime
+22 E 8.02,33.768707,-117.917517,HARBOR 2,0.34339,-0.939193,lime
+22 E 8.3,33.77033,-117.913078,PEARCE,0.34339,-0.939193,lime
+22 E 8.68,33.773077,-117.907372,GARDEN G1,0.456112,-0.889922,lime
+22 E 9.04,33.775838,-117.901985,GARDEN GROVE 2,0.456112,-0.889922,lime
+22 E 9.44,33.778512,-117.895881,LEWIS,0.063537,-0.997979,lime
+22 E 9.7,33.778925,-117.889394,THE CITY DRIVE,-0.007156,-0.999974,lime
+22 E 9.9,33.778902,-117.88618,HESPERIAN,-0.007156,-0.999974,lime
+22 W 0.2,33.774472,-118.093888,COLLEGE PARK,0,0,lime
+22 W 0.89,33.774686,-118.038174,VALLEY V1,0,0,white
+22 W 10.14,33.779081,-117.882183,BRISTOL,-0.00667,0.999978,lime
+22 W 10.35,33.779104,-117.878735,W OF 5,0.021147,0.999776,lime
+22 W 10.53,33.779039,-117.875662,W OF 5,0.174163,0.984717,lime
+22 W 10.71,33.778461,-117.872394,E OF 5,0.174163,0.984717,lime
+22 W 11.23,33.778348,-117.863135,MAIN,0.219291,0.97566,lime
+22 W 11.68,33.776676,-117.855696,GLASSELL1,0.249721,0.968318,lime
+22 W 12.01,33.775279,-117.850279,GLASSELL2,-0.113292,0.993562,lime
+22 W 12.25,33.775744,-117.846201,CONCORD,-0.113292,0.993562,lime
+22 W 12.7,33.776862,-117.838554,TUSTIN,0,0,lime
+22 W 1,33.774521,-118.036302,VALLEY V2,0,0,white
+22 W 1.41,33.774397,-118.029216,VIA LOS ALISOS,0.001402,0.999999,lime
+22 W 1.74,33.774389,-118.02351,SPRINGDALE CENSUS,-0.00578,0.999983,lime
+22 W 1.75,33.77439,-118.023337,SPRINGDALE,0.003425,0.999994,lime
+22 W 2.07,33.774371,-118.017789,YUMA,0.003425,0.999994,lime
+22 W 2.49,33.774652,-118.010501,KNOTT 1,0.127522,0.991836,lime
+22 W 2.71,33.774166,-118.006721,GARDEN GROV,0.421869,0.906657,lime
+22 W 2.88,33.772939,-118.004084,KNOTT 2,0.421869,0.906657,lime
+22 W 3.45,33.771348,-117.994525,BEACH 1,0.061692,0.998095,lime
+22 W 3.73,33.771057,-117.989817,BEACH2,0.055628,0.998452,lime
+22 W 4.03,33.770765,-117.984576,WILSON,0.055628,0.998452,lime
+22 W 4.34,33.769612,-117.979437,NEWLAND,0.582785,0.812626,lime
+22 W 4.6,33.767155,-117.976011,MAGNOLIA1,0.196678,0.980468,lime
+22 W 4.99,33.765877,-117.96964,MAGNOLIA2,0.196678,0.980468,lime
+22 W 5.57,33.765954,-117.959407,BROOKHUR1,-0.004759,0.999989,lime
+22 W 5.77,33.765971,-117.955835,BROOKHUR2,-0.006239,0.999981,lime
+22 W 6.05,33.766001,-117.951027,HOPE,-0.006239,0.999981,lime
+22 W 6.34,33.76605,-117.946098,WARD,-0.006293,0.99998,lime
+22 W 6.61,33.766079,-117.94149,TAFT,-0.011359,0.999935,lime
+22 W 6.94,33.766144,-117.935768,EUCLID,-0.011359,0.999935,lime
+22 W 7.29,33.766181,-117.929696,NEWHOPE,-0.00578,0.999983,lime
+22 W 7.3,33.766182,-117.929523,NEWHOPE CENSUS,-0.00578,0.999983,lime
+22 W 7.72,33.767174,-117.922445,HARBOR 1,-0.323962,0.94607,lime
+22 W 7.93,33.768341,-117.919037,HARBOR 2,-0.337825,0.941209,lime
+22 W 8.3,33.770454,-117.91315,PEARCE,-0.337825,0.941209,lime
+22 W 8.68,33.773193,-117.907475,GARDEN G1,-0.456614,0.889665,lime
+22 W 9.04,33.775964,-117.902076,GARDEN G2,-0.456614,0.889665,lime
+22 W 9.44,33.77865,-117.895924,LEWIS,-0.068365,0.99766,lime
+22 W 9.69,33.779085,-117.889576,CITY DRIVE,0.007955,0.999968,lime
+22 W 9.9,33.779058,-117.886182,HESPERIAN,0.007955,0.999968,lime
+55 N 10.2,33.737088,-117.833583,N OF 5 OFF,0,0,white
+55 N 10,33.734423,-117.833528,MCFADDEN,0.999787,0.020634,lime
+55 N 10.4,33.739982,-117.83368,S OF 5,0.999923,0.012439,lime
+55 N 10.5,33.741429,-117.833698,N OF 5,0.97478,-0.22317,lime
+55 N 11.1,33.749859,-117.831768,FOURTH 2,0,0,white
+55 N 11.74,33.759105,-117.830994,17TH 1,0,0,white
+55 N 12.3,33.767287,-117.830905,SANTA CLARA,0.999999,0.001196,lime
+55 N 12,33.762898,-117.830834,17TH 2,0,0,white
+55 N 12.7,33.773139,-117.830912,FAIRHAVEN,0.999999,0.001196,lime
+55 N 13.9,33.790409,-117.830884,CHAPMAN 2,0,0,white
+55 N 14.4,33.797732,-117.831045,Walnut,0.994412,0.105571,lime
+55 N 14.6,33.800652,-117.831355,COLLINS,0.994412,0.105571,lime
+55 N 15.22,33.809608,-117.831849,KATELLA 1,0.999767,0.021575,lime
+55 N 15.4,33.812203,-117.831905,KATELLA  2,0,0,white
+55 N 15.8,33.817981,-117.831919,TAFT,1.0,0.000172,lime
+55 N 16.2,33.823807,-117.83192,MEATS,1.0,0.000172,lime
+55 N 17.12,33.837111,-117.834992,LINCOLN 2,0,0,lime
+55 N 2.7,33.650995,-117.909275,VICTORIA1,0,0,white
+55 N 2.77,33.651784,-117.908497,VICTORIA1,0.712053,-0.702126,lime
+55 N 3.07,33.655235,-117.905264,VICTORIA2,0.7454,-0.666618,lime
+55 N 3.091,33.655481,-117.905044,VICTORIA2,0,0,white
+55 N 3.59,33.661052,-117.899494,FAIR 1,0.711701,-0.702482,lime
+55 N 3.97,33.665298,-117.895303,FAIR 2,0.711701,-0.702482,lime
+55 N 4.58,33.671785,-117.888101,BRISTOL,0.612685,-0.790327,lime
+55 N 4.7,33.672968,-117.886575,BAKER 1,0.649874,-0.760042,lime
+55 N 5.06,33.676702,-117.882208,BAKER 2,0.649874,-0.760042,lime
+55 N 5.51,33.681801,-117.877327,PAULARINO 1,0.73612,-0.676851,lime
+55 N 5.8,33.685142,-117.874255,PAULARINO 2,0.725068,-0.688678,lime
+55 N 5.87,33.685939,-117.873498,PAULARINO 2,0.719864,-0.694115,lime
+55 N 6.1,33.688567,-117.870964,AIRPORT AT 55 NB,0,0,white
+55 N 6.35,33.691451,-117.868181,MAIN,0.719595,-0.694394,lime
+55 N 6.94,33.698026,-117.861831,MACARTHU1,0.740557,-0.671994,lime
+55 N 7.1,33.699873,-117.860155,MACARTHU2,0,0,white
+55 N 7.16,33.70056,-117.8595,MACARTHU2,0,0,white
+55 N 7.85,33.708364,-117.85183,DYER 1,0,0,white
+55 N 8.12,33.711314,-117.848847,DYER 2,0.71172,-0.702463,lime
+55 N 8.6,33.716619,-117.843611,WARNER,0.71172,-0.702463,lime
+55 N 9.41,33.726049,-117.83503,EDINGER 2,0,0,white
+55 N 9.84,33.732101,-117.833555,MCFADDEN,0.999932,-0.011627,lime
+55 S 10,33.734422,-117.83402,MCFADDEN,-0.999946,-0.010425,lime
+55 S 10.4,33.739982,-117.833908,S OF 5,-0.999756,0.022109,lime
+55 S 10.5,33.741429,-117.833876,N OF 5,-0.987616,0.156888,lime
+55 S 10.84,33.746251,-117.83311,FOURTH 2,0,0,white
+55 S 11.62,33.75738,-117.831392,17TH 1,0,0,white
+55 S 12.3,33.767289,-117.83108,SANTA CLARA,-0.999999,-0.001368,lime
+55 S 12.7,33.773138,-117.831088,FAIRHAVEN,-0.999999,-0.001368,lime
+55 S 13.51,33.784755,-117.831128,CHAPMAN 1,0,0,white
+55 S 13.75,33.788212,-117.831081,CHAPMAN 2,0,0,white
+55 S 14.4,33.797729,-117.831223,Walnut,-0.994624,-0.10355,lime
+55 S 14.6,33.800649,-117.831527,COLLINS,-0.994624,-0.10355,lime
+55 S 15.22,33.809605,-117.832031,KATELLA 1,-0.999968,-0.008001,lime
+55 S 15.8,33.817979,-117.832098,TAFT,-1.0,0.000172,lime
+55 S 16.2,33.823807,-117.832097,MEATS,-1.0,0.000172,lime
+55 S 16.71,33.830875,-117.834539,LINCOLN 1,0,0,white
+55 S 17.12,33.837162,-117.835146,LINCOLN 2,-0.995372,-0.096102,lime
+55 S 2.77,33.651901,-117.908673,VICTORIA1,-0.732846,0.680394,lime
+55 S 3.07,33.655366,-117.905456,VICTORIA2,-0.732846,0.680394,lime
+55 S 3.59,33.661183,-117.899681,FAIR 1,-0.712081,0.702098,lime
+55 S 3.96,33.66532,-117.895602,FAIR 2,0,0,white
+55 S 3.97,33.665433,-117.895493,FAIR 2,-0.719731,0.694253,lime
+55 S 4.58,33.671928,-117.888309,BRISTOL,-0.612257,0.790659,lime
+55 S 4.7,33.673112,-117.88678,BAKER 1,-0.639107,0.769118,lime
+55 S 5.06,33.676789,-117.882355,BAKER 2,-0.639107,0.769118,lime
+55 S 5.51,33.681935,-117.87755,PAULARINO 1,-0.722093,0.691796,lime
+55 S 5.8,33.685224,-117.874399,N405 to S55,-0.719715,0.69427,lime
+55 S 5.87,33.686016,-117.873635,PAULARINO 2,-0.725185,0.688554,lime
+55 S 6.35,33.691579,-117.868353,MAIN,-0.725185,0.688554,lime
+55 S 6.88,33.697495,-117.862677,MACARTHU1,-0.710326,0.703873,lime
+55 S 7.03,33.699146,-117.861041,MACARTHU2,-0.710326,0.703873,lime
+55 S 7.62,33.705879,-117.854598,DYER 1,0,0,white
+55 S 8.12,33.711451,-117.849099,DYER 2,-0.708914,0.705295,lime
+55 S 8.6,33.71674,-117.843837,WARNER,-0.711107,0.703084,lime
+55 S 9.19,33.723387,-117.837265,EDINGER 1,0,0,white
+55 S 9.84,33.73212,-117.833996,MCFADDEN,-0.999946,-0.010425,lime
+57 N 10.8,33.779069,-117.873418,RTE 22 & 5 NB,0,0,lime
+57 N 11.1,33.78435,-117.879424,AT CHAPMAN OFF,0.991811,0.127713,lime
+57 N 11.22,33.787426,-117.879769,CHAPMAN 1,0,0,white
+57 N 11.2,33.786905,-117.879753,CHAPMAN 1,0.999529,0.030696,lime
+57 N 11.3,33.788781,-117.879807,CHAPMAN 2,0,0,white
+57 N 11.39,33.790105,-117.879799,CHAPMAN 2,0,0,white
+57 N 11.68,33.794121,-117.878448,ORANGEWO1,0,0,white
+57 N 11.78,33.795482,-117.877848,ORANGEWO2,0,0,white
+57 N 12.5,33.805531,-117.880058,KATELLA 1,0.984745,-0.174004,lime
+57 N 12.7,33.808355,-117.879559,KATELLA 2,0,0,white
+57 N 12.74,33.808904,-117.879353,KATELLA 2,0,0,white
+57 N 12.9,33.811084,-117.878472,DOUGLASS,0.927151,-0.374688,lime
+57 N 13.3,33.816586,-117.876479,BALL 1,0,0,white
+57 N 13.38,33.81772,-117.876254,BALL 1,0.980879,-0.194619,lime
+57 N 13.5,33.819435,-117.87605,BALL 2,0,0,white
+57 N 13.56,33.820297,-117.875999,BALL 2,0.999993,-0.00368,lime
+57 N 13.9,33.825188,-117.875981,Wagner,0.999993,-0.00368,lime
+57 N 14.4,33.83238,-117.875965,South,0.999995,-0.003244,lime
+57 N 14.73,33.837126,-117.87595,LINCOLN 1,0.999982,-0.00608,lime
+57 N 14.7,33.836695,-117.875951,LINCOLN 1,0,0,white
+57 N 14.9,33.839593,-117.875935,LINCOLN 2,0.999936,-0.011332,lime
+57 N 15.1,33.842505,-117.875902,UNDERHILL,0.999936,-0.011332,lime
+57 N 15.4,33.846873,-117.875931,LA PALMA,0.996618,-0.082174,lime
+57 N 15.7,33.851227,-117.875572,N of 91,0.996618,-0.082174,lime
+57 N 16.11,33.857169,-117.875678,LA JOLLA,0.947346,0.320213,lime
+57 N 16.5,33.862728,-117.877557,ORANGETHORPE,0.95802,0.286703,lime
+57 N 17,33.869812,-117.879677,PLACENTIA,0.95802,0.286703,lime
+57 N 17.7,33.879813,-117.880294,NUTWOOD,0,0,white
+57 N 17.75,33.880532,-117.88031,NUTWOOD,0,0,white
+57 N 18.3,33.888435,-117.880484,YORBA LI1,0.999634,0.027056,lime
+57 N 18.49,33.891206,-117.880559,YORBA LI2,0,0,white
+57 N 18.5,33.891352,-117.880561,YORBA LI2,0,0,white
+57 N 18.85,33.896472,-117.880822,Bastanchury,0.997832,0.065812,lime
+57 N 19.1,33.900126,-117.881063,ROLLING  HILLS,0.997832,0.065812,lime
+57 N 19.8,33.909962,-117.883309,IMPERIAL1,0.998732,-0.050333,lime
+57 N 20.05,33.913565,-117.882887,IMPERIAL2,0.93136,-0.364101,lime
+57 N 20,33.912859,-117.883163,IMPERIAL2,0,0,white
+57 N 21.1,33.928813,-117.879984,LAMBERT,0,0,white
+57 N 21.16,33.929701,-117.879881,LAMBERT,0,0,white
+57 N 22,33.940872,-117.875138,TONNER,0,0,lime
+57 S 10.8,33.777415,-117.874735,RTE 22 & 5,0,0,lime
+57 S 11.08,33.783256,-117.880197,CHAPMAN 1,-0.99935,0.036044,lime
+57 S 11.2,33.786694,-117.880073,AT CHAPMAN OFF,-0.996864,0.079133,lime
+57 S 11.55,33.792388,-117.879621,ORANGEWOOD,0,0,white
+57 S 12.4,33.804096,-117.88008,KATELLA 1,0,0,white
+57 S 12.58,33.806677,-117.880243,KATELLA 2,-0.945662,0.325152,lime
+57 S 12.9,33.811089,-117.878726,DOUGLASS,-0.945662,0.325152,lime
+57 S 13.27,33.816163,-117.876814,BALL 1,-0.983876,0.178852,lime
+57 S 13.45,33.818721,-117.876349,BALL 2,-0.999897,0.01437,lime
+57 S 13.9,33.825192,-117.876256,Wagner,-0.999897,0.01437,lime
+57 S 14.4,33.832386,-117.876232,South,-0.999935,0.011398,lime
+57 S 14.65,33.835983,-117.876191,LINCOLN 1,-0.999998,0.001928,lime
+57 S 14.83,33.838577,-117.876186,LINCOLN 2,-0.999986,-0.005368,lime
+57 S 15.1,33.842489,-117.876207,UNDERHILL,-0.999986,-0.005368,lime
+57 S 15.4,33.846832,-117.876202,LA PALMA,-0.996812,0.079791,lime
+57 S 15.7,33.851167,-117.875855,N of 91,-0.996812,0.079791,lime
+57 S 16.11,33.857092,-117.876106,LA JOLLA,-0.960098,-0.279663,lime
+57 S 16.46,33.862118,-117.87757,ORANGETHOR,-0.960098,-0.279663,lime
+57 S 17.18,33.872312,-117.880462,CHAPMAN 3,0,0,white
+57 S 17,33.869773,-117.879875,PLACENTIA,-0.974301,-0.225252,lime
+57 S 17.41,33.87562,-117.880503,NUTWOOD,0,0,white
+57 S 18.18,33.886705,-117.880716,YORBA LI1,0,0,white
+57 S 18.37,33.889447,-117.880785,YORBA LI2,-0.999684,-0.025156,lime
+57 S 18.85,33.896472,-117.881094,Bastanchury,-0.99801,-0.063058,lime
+57 S 19.1,33.900128,-117.881325,ROLLING HILLS,-0.99801,-0.063058,lime
+57 S 19.73,33.90899,-117.883224,IMPERIAL1,-0.986464,-0.163975,lime
+57 S 19.94,33.91201,-117.883726,IMPERIAL2,-0.953779,0.30051,lime
+57 S 20.7,33.92289,-117.880298,LAMBERT,0,0,white
+57 S 22.06,33.94149,-117.874675,TONNER,0,0,white
+57 S 22,33.940956,-117.875322,TONNER,-0.636543,0.771242,lime
+73 N 10.59,33.545677,-117.674552,CAPISTRANO,0.971174,0.238373,lime
+73 N 10.9,33.550126,-117.675644,SORRENTO,0.940629,0.339435,lime
+73 N 11.22,33.554546,-117.677239,CABOT,0.940629,0.339435,lime
+73 N 11.64,33.557803,-117.683209,GREENFIELD 1,0.198325,0.980136,lime
+73 N 11.8,33.55839,-117.68611,GREENFIELD 1,0.198325,0.980136,lime
+73 N 12.1,33.559873,-117.690855,GREENFIELD 2,0.471098,0.882081,lime
+73 N 12.31,33.562029,-117.693351,ROCKRIDGE,0.802439,0.596734,lime
+73 N 12,33.559105,-117.689417,GREENFIELD 2,0.471098,0.882081,lime
+73 N 12.52,33.564588,-117.695254,WESTRIDGE,0.701895,0.712281,lime
+73 N 12.83,33.567967,-117.698683,MOULTON,0.701895,0.712281,lime
+73 N 13.14,33.571095,-117.702528,PACIFIC PARK,0.63793,0.770095,lime
+73 N 13.2,33.571708,-117.703268,PACIFIC PARK,0.577247,0.816569,lime
+73 N 13.38,33.573435,-117.705711,LA PAZ  1,0.577247,0.816569,lime
+73 N 13.6,33.574966,-117.70902,LA PAZ 1,0,0,white
+73 N 13.7,33.575554,-117.710558,ALICIA,0.357106,0.934064,lime
+73 N 13.9,33.576682,-117.713695,ALICIA,0,0,white
+73 N 13.96,33.577091,-117.714614,ALISO 1,0.4066,0.913606,lime
+73 N 14.4,33.580619,-117.720958,ALISO 3,0.580052,0.81458,lime
+73 N 14.7,33.583441,-117.724921,ALISO 4,0.578216,0.815884,lime
+73 N 14.95,33.585779,-117.72822,LAGUNA HILLS,0.329384,0.944196,lime
+73 N 15.26,33.58748,-117.733096,GLENWOOD 1,0.329384,0.944196,lime
+73 N 15.7,33.588223,-117.740639,EL TORO 1,0.158104,0.987422,lime
+73 N 15.9,33.588765,-117.744024,EL TORO 1,0.32185,0.946791,lime
+73 N 15.96,33.589091,-117.744983,EL TORO 2,0.321018,0.947073,lime
+73 N 16.25,33.590678,-117.749665,EL TORO 3,0.321018,0.947073,lime
+73 N 16.59,33.591624,-117.755573,EL TORO 4,0.151183,0.988506,lime
+73 N 16.6,33.59165,-117.755743,EL TORO 4,0.151183,0.988506,lime
+73 N 16.98,33.593909,-117.76171,RTE 133 3,0.57864,0.815583,lime
+73 N 17.2,33.595997,-117.764653,RTE 133 4,0.57864,0.815583,lime
+73 N 17.62,33.598966,-117.770961,S OF PM 18,0.126344,0.991986,lime
+73 N 17.95,33.599693,-117.776669,AT PM 18,0.126344,0.991986,lime
+73 N 18.3,33.601969,-117.782151,WILDLIFE,0.16463,0.986355,lime
+73 N 18.59,33.602777,-117.786992,CATALINA 1,0.16463,0.986355,lime
+73 N 19.5,33.607825,-117.801253,CATALINA 2,0.300702,0.953718,lime
+73 N 19.8,33.609334,-117.806039,CATALINA 3,0.300702,0.953718,lime
+73 N 20.2,33.610446,-117.812765,SAND CANYON 1,0.469891,0.882724,lime
+73 N 20.4,33.611986,-117.815658,SAND CANYON 2,0.469891,0.882724,lime
+73 N 20.6,33.614224,-117.817786,SAND CANYON 3,0.871209,0.490912,lime
+73 N 20.8,33.616831,-117.819255,SAND CANYON 4,0.796595,0.604514,lime
+73 N 21.1,33.620522,-117.822056,SAND CANYON 5,0.796595,0.604514,lime
+73 N 21.5,33.623392,-117.828171,NEWPORT COAST 1,0.622803,0.782378,lime
+73 N 21.8,33.626366,-117.831907,NEWPORT COAST 2,0.622803,0.782378,lime
+73 N 22.2,33.629759,-117.837358,S OF BONITA,0.284483,0.958681,lime
+73 N 22.5,33.631208,-117.842241,BONITA 1,0.292278,0.956333,lime
+73 N 22.8,33.632697,-117.847113,BONITA 2,0.292278,0.956333,lime
+73 N 23.2,33.635664,-117.852976,N OF BONITA,0.589389,0.80785,lime
+73 N 23.5,33.638513,-117.856881,BISON 1,0.800308,0.599589,lime
+73 N 23.73,33.64132,-117.858984,BISON 2,0.934342,0.356378,lime
+73 N 23.9,33.643656,-117.859875,BISON 2,0.976131,0.217185,lime
+73 N 24.1,33.646501,-117.860508,MACARTHUR 2,0.976131,0.217185,lime
+73 N 24.4,33.650823,-117.8614,UNIVERSITY SOUT,0.853282,0.52145,lime
+73 N 24.68,33.654387,-117.863578,MACARTHUR BLVD,0,0,white
+73 N 24.72,33.654806,-117.864027,JAMBOREE 1,0.635445,0.772146,lime
+73 N 24.78,33.655401,-117.86475,JAMBOREE 2,0.635445,0.772146,lime
+73 N 25.25,33.659804,-117.870921,ORCHID,0.565437,0.824792,lime
+73 N 25.7,33.663519,-117.87634,CAMPUS,0.565437,0.824792,lime
+73 N 26.3,33.67012,-117.883175,S OF 55,0.756677,0.653789,lime
+73 N 26.7,33.674893,-117.887299,N OF 55,0.76071,0.649092,lime
+73 N 26.791,33.675963,-117.888212,N55 TO N73 On,0.76071,0.649092,lime
+73 N 27.2,33.680652,-117.892318,BEAR 1,0.737613,0.675223,lime
+73 N 27.4,33.683052,-117.894515,BEAR 2,0.737613,0.675223,lime
+73 N 27.72,33.686594,-117.897754,FAIRVIEW,0,0,lime
+73 S 10.59,33.545627,-117.674915,CAPISTRANO,-0.969543,-0.244923,lime
+73 S 10.9,33.550021,-117.676025,SORRENTO,-0.942619,-0.333871,lime
+73 S 11.22,33.554335,-117.677553,CABOT,-0.942619,-0.333871,lime
+73 S 11.64,33.557463,-117.683347,GREENFIELD 1,-0.204557,-0.978855,lime
+73 S 11.8,33.558059,-117.686199,GREENFIELD 1,-0.204557,-0.978855,lime
+73 S 12.1,33.559525,-117.69095,GREENFIELD 2,-0.452101,-0.891967,lime
+73 S 12.31,33.56161,-117.693516,ROCKRIDGE,-0.799245,-0.601005,lime
+73 S 12,33.558786,-117.689492,GREENFIELD 2,-0.452101,-0.891967,lime
+73 S 12.52,33.564154,-117.695429,WESTRIDGE,-0.799245,-0.601005,lime
+73 S 12.83,33.567532,-117.698836,MOULTON,-0.62128,-0.783589,lime
+73 S 12.9,33.568221,-117.699705,MOULTON,0,0,white
+73 S 13.14,33.570836,-117.702926,PACIFIC PARK,-0.631459,-0.775409,lime
+73 S 13.2,33.571494,-117.703734,PACIFIC PARK,-0.587164,-0.809468,lime
+73 S 13.38,33.573158,-117.706028,LA PAZ  1,-0.587164,-0.809468,lime
+73 S 13.7,33.575244,-117.71075,ALICIA,-0.354891,-0.934908,lime
+73 S 13.96,33.576781,-117.714799,ALISO 1,-0.354891,-0.934908,lime
+73 S 14.4,33.580299,-117.721195,ALISO 3,-0.578216,-0.815884,lime
+73 S 14.7,33.583126,-117.725184,ALISO 4,-0.56863,-0.822593,lime
+73 S 14.95,33.585421,-117.728504,LAGUNA HILLS,-0.332032,-0.943268,lime
+73 S 15.26,33.587118,-117.733325,GLENWOOD 1,-0.332032,-0.943268,lime
+73 S 15.7,33.587924,-117.740964,EL TORO 1,-0.173867,-0.984769,lime
+73 S 15.9,33.588528,-117.744385,EL TORO 1,-0.317685,-0.948196,lime
+73 S 15.96,33.588855,-117.745361,EL TORO 2,-0.317685,-0.948196,lime
+73 S 16.2,33.590166,-117.749258,EL TORO 2,0,0,white
+73 S 16.25,33.590342,-117.750156,EL TORO 3,-0.192332,-0.98133,lime
+73 S 16.59,33.59118,-117.755882,EL TORO 4,-0.141421,-0.989949,lime
+73 S 16.6,33.591203,-117.756043,EL TORO 4,-0.141421,-0.989949,lime
+73 S 16.98,33.593514,-117.761968,RTE 133 3,-0.569484,-0.822002,lime
+73 S 17.2,33.595564,-117.764927,RTE 133 4,-0.569484,-0.822002,lime
+73 S 17.62,33.59849,-117.771217,S OF PM 18,-0.12791,-0.991786,lime
+73 S 17.95,33.599221,-117.776885,AT PM 18,-0.12791,-0.991786,lime
+73 S 18.3,33.601523,-117.78232,WILDLIFE,-0.168311,-0.985734,lime
+73 S 18.59,33.602353,-117.787181,CATALINA 1,-0.168311,-0.985734,lime
+73 S 19.5,33.607237,-117.801595,CATALINA 2,-0.309175,-0.951005,lime
+73 S 19.8,33.608817,-117.806455,CATALINA 3,-0.309175,-0.951005,lime
+73 S 20.2,33.610123,-117.813251,SAND CANYON 1,-0.472863,-0.881136,lime
+73 S 20.4,33.611697,-117.816184,SAND CANYON 2,-0.472863,-0.881136,lime
+73 S 20.6,33.614005,-117.8183,SAND CANYON 3,-0.879015,-0.476793,lime
+73 S 20.8,33.616669,-117.819745,SAND CANYON 4,-0.795225,-0.606314,lime
+73 S 21.1,33.620205,-117.822441,SAND CANYON 5,-0.795225,-0.606314,lime
+73 S 21.5,33.623005,-117.828338,NEWPORT COAST 1,-0.61327,-0.789873,lime
+73 S 21.8,33.625981,-117.832171,NEWPORT COAST 2,-0.61327,-0.789873,lime
+73 S 22.2,33.629475,-117.837662,S OF BONITA,-0.283058,-0.959103,lime
+73 S 22.5,33.630935,-117.842609,BONITA 1,-0.294979,-0.955504,lime
+73 S 22.8,33.632444,-117.847497,BONITA 2,-0.294979,-0.955504,lime
+73 S 23.2,33.635399,-117.853396,N OF BONITA,-0.600727,-0.799454,lime
+73 S 23.5,33.638307,-117.857266,BISON 1,-0.780647,-0.624972,lime
+73 S 23.7,33.640714,-117.859193,MACARTHUR 1,-0.924825,-0.380393,lime
+73 S 23.9,33.643454,-117.86032,BISON 2,-0.974437,-0.22466,lime
+73 S 24.1,33.646308,-117.860978,MACARTHUR 2,-0.977116,-0.212707,lime
+73 S 24.4,33.650695,-117.861933,UNIVERSITY SOUT,-0.977116,-0.212707,lime
+73 S 24.72,33.65462,-117.864335,JAMBOREE 1,-0.633861,-0.773447,lime
+73 S 24.78,33.655174,-117.865011,JAMBOREE 2,-0.633861,-0.773447,lime
+73 S 25.25,33.659515,-117.871215,ORCHID,-0.566542,-0.824033,lime
+73 S 25.7,33.66324,-117.876633,CAMPUS,-0.566542,-0.824033,lime
+73 S 26.3,33.669908,-117.88342,S OF 55,-0.750726,-0.660614,lime
+73 S 26.72,33.674875,-117.887796,S73 TO S55,-0.742508,-0.669837,lime
+73 S 26.7,33.67464,-117.887584,N OF 55,-0.742508,-0.669837,lime
+73 S 27.2,33.68058,-117.892743,BEAR 1,-0.749261,-0.662275,lime
+73 S 27.4,33.682854,-117.894753,BEAR 2,-0.749261,-0.662275,lime
+73 S 27.72,33.686456,-117.898045,FAIRVIEW,0,0,lime
+74 E 0.241,33.503721,-117.654478,Rancho Viejo,0,0,lime
+74 E 0.77,33.508745,-117.647923,74 EB SUNDANCE DRIVE,0.490721,-0.871317,lime
+74 E 10.01,33.567766,-117.544319,LOCATION 25,0.920786,-0.390067,lime
+74 E 1.01,33.51067,-117.644505,CALLE ENTRADERO,0.490721,-0.871317,lime
+74 E 1.277,33.512477,-117.640482,Via Cordova,0.250148,-0.968208,lime
+74 E 1.33,33.512701,-117.639615,LOCATION 14,0,0,white
+74 E 1.503,33.513581,-117.63683,74 WB STRAWBERRY LN,0,0,white
+74 E 3.39,33.522498,-117.60673,LOCATION 15,-0.434313,-0.900762,lime
+74 E 3.98,33.518349,-117.598125,LOCATION 16,-0.277019,-0.960865,lime
+74 E 4.79,33.514576,-117.585038,LOCATION 17,-0.277019,-0.960865,lime
+74 E 5.95,33.515135,-117.565581,LOCATION 18,0.66599,-0.74596,lime
+74 E 6.35,33.519299,-117.560917,LOCATION 19,0.66599,-0.74596,lime
+74 E 6.98,33.525739,-117.55384,LOCATION 20,0.918082,-0.396391,lime
+74 E 7.33,33.530443,-117.551809,LOCATION 21,0.918082,-0.396391,lime
+74 E 8.03,33.540039,-117.548668,LOCATION 22,0.996899,0.078698,lime
+74 E 8,33.539611,-117.54873,NICHOLS INSTITUTE,0.98967,-0.143363,lime
+74 E 8.43,33.545676,-117.549113,LOCATION 23,0.996899,0.078698,lime
+74 E 9.7,33.56355,-117.546105,LOCATION 24,0.920786,-0.390067,lime
+74 W 0.241,33.503721,-117.654477,Rancho Viejo,0,0,lime
+74 W 0.77,33.508745,-117.647923,74 EB SUNDANCE DRIVE,-0.490721,0.871317,lime
+74 W 10.01,33.567766,-117.544319,LOCATION 25,-0.920786,0.390067,lime
+74 W 1.01,33.51067,-117.644505,CALLE ENTRADERO,-0.409922,0.912121,lime
+74 W 1.277,33.512478,-117.640482,Via Cordova,-0.409922,0.912121,lime
+74 W 3.39,33.522498,-117.606729,LOCATION 15,0.434354,0.900742,lime
+74 W 3.98,33.518349,-117.598125,LOCATION 16,0.277019,0.960865,lime
+74 W 4.79,33.514576,-117.585038,LOCATION 17,0.277019,0.960865,lime
+74 W 5.95,33.515135,-117.565581,74 EB GIBBY ROAD,-0.66599,0.74596,lime
+74 W 6.35,33.519299,-117.560917,LOCATION 19,-0.66599,0.74596,lime
+74 W 6.98,33.525739,-117.55384,LOCATION 20,-0.918082,0.396391,lime
+74 W 7.33,33.530443,-117.551809,LOCATION 21,-0.918082,0.396391,lime
+74 W 8.03,33.540039,-117.548667,LOCATION 22,-0.996885,-0.078874,lime
+74 W 8,33.539611,-117.548729,NICHOLS INSTITUTE,-0.98967,0.143363,lime
+74 W 8.43,33.545676,-117.549113,LOCATION 23,-0.996885,-0.078874,lime
+74 W 9.7,33.56355,-117.546105,LOCATION 24,-0.920786,0.390067,lime
+91 E 0.45,33.85912,-118.034919,MAGNOLIA,-0.383803,-0.923415,lime
+91 E 0.6,33.858147,-118.032578,ORANGETHORPE,0,0,white
+91 E 0.76,33.854376,-117.967371,GILBERT,-0.057735,-0.998332,lime
+91 E 10.08,33.850669,-117.814377,LAKEVIEW1,0.643266,-0.765643,lime
+91 E 10.1,33.850874,-117.814133,LAKEVIEW2,0.613864,-0.789412,lime
+91 E 10.27,33.852542,-117.811988,LAKEVIEW2,0,0,white
+91 E 10.84,33.85429,-117.80262,W OF IMPERIAL,0.183427,-0.983033,lime
+91 E 1.12,33.853799,-117.961156,BROOKHURST,-0.035152,-0.999382,lime
+91 E 11.49,33.854176,-117.791386,IMPERIAL1,0.098358,-0.995151,lime
+91 E 11.5,33.854193,-117.791214,IMPERIAL1,0.257772,-0.966206,lime
+91 E 11.7,33.855071,-117.787923,IMPERIAL2,0.431464,-0.90213,lime
+91 E 12.175,33.858505,-117.780743,E OF IMPERIAL,0.43844,-0.898761,lime
+91 E 12.762,33.862813,-117.771912,MIDPOINT,0.436887,-0.899516,lime
+91 E 1.32,33.855843,-118.020532,HOLDER,-0.030437,-0.999537,lime
+91 E 13.349,33.867107,-117.763071,W OF SCALES,0.436887,-0.899516,lime
+91 E 1,33.856083,-118.026091,VALLEY VIEW,-0.035152,-0.999382,lime
+91 E 1.37,33.853902,-117.95679,BROOKHURST,0,0,white
+91 E 14.43,33.870278,-117.744781,WEIR CNYN1,0.155667,-0.98781,lime
+91 E 14.4,33.870197,-117.745295,WEIR CNYN1,0.155667,-0.98781,lime
+91 E 14.62,33.870757,-117.741504,WEIR CNYN2,0,0,white
+91 E 14.6,33.870709,-117.74185,WEIR CNYN2,0,0,white
+91 E 15.11,33.869894,-117.73308,East OF WEIR,-0.101912,-0.994793,lime
+91 E 15.793,33.866822,-117.722179,West OF GYPSUM,-0.008286,-0.999966,lime
+91 E 16.4,33.866735,-117.71168,GYPSUM 1,0,0,white
+91 E 16.6,33.868014,-117.708584,GYPSUM 2,0,0,white
+91 E 17.044,33.871104,-117.701858,E OF GYPSUM,0.417464,-0.908693,lime
+91 E 18.13,33.870739,-117.6845,COAL,-0.376251,-0.926518,lime
+91 E 1.81,33.855903,-118.011986,KNOTT 1,0,0,white
+91 E 18,33.871539,-117.68647,W of COAL,-0.376251,-0.926518,lime
+91 E 18.435,33.869165,-117.68015,E OF COAL,0,0,lime
+91 E 1.99,33.855926,-118.008847,KNOTT 2,-0.02939,-0.999568,lime
+91 E 2.11,33.854017,-117.943921,EUCLID,-0.02939,-0.999568,lime
+91 E 2.4,33.854029,-117.938876,EUCLID,0.032946,0.999457,lime
+91 E 2.58,33.855997,-117.998577,BEACH 1,0.008629,-0.999963,lime
+91 E 2.76,33.856024,-117.995448,BEACH 2,0,0,white
+91 E 3.13,33.853691,-117.926206,HARBOR 1,0.044312,0.999018,lime
+91 E 3,33.856035,-117.991253,E OF STANTON,-0.036012,-0.999351,lime
+91 E 3.4,33.856265,-117.984237,W OF 5,0.044312,0.999018,lime
+91 E 3.91,33.853681,-117.912688,LEMON,0.01578,-0.999875,lime
+91 E 4.18,33.853755,-117.907999,EAST,0.004058,-0.999992,lime
+91 E 4.35,33.853767,-117.905042,EAST,0,0,white
+91 E 4.77,33.853874,-117.897738,ACACIA,0.011516,-0.999934,lime
+91 E 4.8,33.85388,-117.897217,ACACIA,0.011516,-0.999934,lime
+91 E 5.14,33.854108,-117.891311,STATE COLLEGE,-0.031896,-0.999491,lime
+91 E 5.35,33.853992,-117.887676,STATE COLLEGE,0,0,white
+91 E 5.5,33.853485,-117.885166,PLACENTIA,-0.197993,-0.980203,lime
+91 E 6.05,33.850044,-117.876605,W OF 57,-0.41458,-0.910013,lime
+91 E 6.3,33.848316,-117.872812,E OF 57,-0.41458,-0.910013,lime
+91 E 6.82,33.846226,-117.864299,LA PALMA,0.171763,-0.985138,lime
+91 E 7.3,33.847636,-117.856212,GLASSELL1,0.242383,-0.970181,lime
+91 E 7.48,33.848381,-117.85323,GLASSELL2,0.242318,-0.970197,lime
+91 E 7.86,33.849953,-117.846936,GROVE,0.143226,-0.98969,lime
+91 E 8.36,33.851164,-117.838568,TUSTIN,0.143226,-0.98969,lime
+91 W 0.4,33.85962,-118.035622,ORANGETHORPE,0,0,white
+91 W 0.45,33.856235,-117.972391,MAGNOLIA,-0.045438,-0.998967,lime
+91 W 0.49,33.859047,-118.034214,ORANGETHORPE,0,0,white
+91 W 0.76,33.854549,-117.967351,GILBERT,-0.028816,-0.999585,lime
+91 W 10.1,33.851107,-117.814374,LAKEVIEW 2,-0.654394,0.756154,lime
+91 W 10.14,33.851525,-117.813891,LAKEVIEW2,-0.654394,0.756154,lime
+91 W 10.84,33.854556,-117.802756,W OF IMPERIAL,0.020315,0.999794,lime
+91 W 1.12,33.853951,-117.961157,BROOKHURST,-0.034899,-0.999391,lime
+91 W 11.3,33.854393,-117.794734,IMPERIAL1,0,0,white
+91 W 11.38,33.854368,-117.793339,IMPERIAL1,0,0,white
+91 W 11.5,33.854451,-117.791255,IMPERIAL1,-0.168785,0.985653,lime
+91 W 11.59,33.854713,-117.789725,IMPERIAL2,-0.310943,0.950429,lime
+91 W 11.6,33.854766,-117.789563,IMPERIAL2,-0.416479,0.909145,lime
+91 W 12.175,33.858773,-117.780816,E OF IMPERIAL,-0.438994,0.89849,lime
+91 W 12.762,33.863077,-117.772007,MIDPOINT,-0.437889,0.899029,lime
+91 W 1.32,33.856023,-118.020493,HOLDER,-0.034899,-0.999391,lime
+91 W 13.349,33.867371,-117.763191,W OF SCALES,-0.437889,0.899029,lime
+91 W 1,33.856241,-118.026045,VALLEY VIEW,0.03527,0.999378,lime
+91 W 14.2,33.869973,-117.74891,WEIR CNYN1,0,0,white
+91 W 14.26,33.870169,-117.747893,WEIR CNYN1,0,0,white
+91 W 14.43,33.870661,-117.744997,WEIR CNYN2,-0.177649,0.984094,lime
+91 W 14.5,33.870876,-117.743806,WEIR CNYN2,0.048587,0.998819,lime
+91 W 15.11,33.870372,-117.733445,East OF WEIR,0.048587,0.998819,lime
+91 W 15.793,33.867126,-117.722277,West OF GYPSUM,0.08815,0.996107,lime
+91 W 16.2,33.866503,-117.715237,GYPSUM 1,0,0,white
+91 W 1.69,33.856065,-118.014055,KNOTT 1,0,0,white
+91 W 17.044,33.871439,-117.701993,E OF GYPSUM,-0.129654,0.991559,lime
+91 W 17.84,33.873131,-117.689053,COAL,0,0,white
+91 W 18.1,33.871434,-117.685149,COAL,0.402928,0.915232,lime
+91 W 18,33.872075,-117.686605,W of COAL,0.402928,0.915232,lime
+91 W 18.435,33.869436,-117.680194,E OF COAL,0,0,lime
+91 W 1.99,33.856125,-118.008835,KNOTT 2,0.029813,0.999556,lime
+91 W 2.11,33.854189,-117.943925,EUCLID,0.029813,0.999556,lime
+91 W 2.4,33.856174,-118.001703,BEACH 1,-0.000863,1.0,lime
+91 W 2.6,33.856177,-117.998227,BEACH 2,-0.000863,1.0,lime
+91 W 3.13,33.853907,-117.926204,HARBOR 1,-0.05087,-0.998705,lime
+91 W 3,33.85622,-117.991257,E OF STANTON,0.035533,0.999368,lime
+91 W 3.4,33.856869,-117.984356,W OF 5,-0.05087,-0.998705,lime
+91 W 3.87,33.857654,-117.976502,MAGNOLIA,0,0,white
+91 W 3.91,33.853895,-117.912686,LEMON,-0.00639,0.99998,lime
+91 W 4.18,33.853925,-117.907991,EAST,-0.00639,0.99998,lime
+91 W 4.77,33.854035,-117.897729,ACACIA,-0.017239,0.999851,lime
+91 W 4.8,33.854044,-117.897207,ACACIA,-0.04484,0.998994,lime
+91 W 5.14,33.854309,-117.891303,STATE COLLEGE,0.073866,0.997268,lime
+91 W 5.5,33.85385,-117.885106,PLACENTIA,0.073866,0.997268,lime
+91 W 6.05,33.850258,-117.87661,W OF 57,0.417273,0.908781,lime
+91 W 6.15,33.849561,-117.875092,W OF 57,0,0,white
+91 W 6.3,33.848505,-117.872819,E OF 57,0.397217,0.917725,lime
+91 W 6.42,33.847706,-117.870973,LA PALMA,0,0,white
+91 W 6.82,33.84645,-117.864265,LA PALMA,0.184041,0.982919,lime
+91 W 7.31,33.847931,-117.855999,KRAEMER 1,-0.238718,0.971089,lime
+91 W 7.4,33.848299,-117.854502,KRAEMER 2,-0.241819,0.970321,lime
+91 W 7.86,33.850205,-117.846854,GROVE,-0.13485,0.990866,lime
+91 W 8.36,33.851349,-117.838448,TUSTIN,-0.13485,0.990866,lime
+91 W 9.9,33.849084,-117.816715,LAKEVIEW1,0,0,white
+91 W 9.95,33.849591,-117.816135,LAKEVIEW1,0,0,white
+133 N 10.05,33.676181,-117.752421,MARINE WAY,0.971108,-0.23864,lime
+133 N 10.5,33.680812,-117.748819,N OF MARINE,0.780739,-0.624857,lime
+133 N 10.73,33.683166,-117.746935,S OF PM 11,0.780739,-0.624857,lime
+133 N 11.08,33.687048,-117.743737,AT PM 11,0.766025,-0.642811,lime
+133 N 11.35,33.690256,-117.741045,N OF PM 11,0.764276,-0.64489,lime
+133 N 11.6,33.69322,-117.738544,IRVINE BLVD 1,0,0,white
+133 N 11.7,33.694404,-117.737541,IRVINE BLVD 1,0.763019,-0.646375,lime
+133 N 12.05,33.698464,-117.733959,IRVINE BLVD 3,0.72056,-0.693393,lime
+133 N 12,33.697907,-117.734495,IRVINE BLVD 3 (loop),0,0,white
+133 N 12.42,33.70238,-117.72971,S OF PORTOLA,0.731326,-0.682028,lime
+133 N 12.77,33.706148,-117.726196,133NB to 241NB,0,0,white
+133 N 13.04,33.709447,-117.724497,ORANGE 1,0.889028,-0.457853,lime
+133 N 13.42,33.71555,-117.721749,ORANGE 2,0,0,lime
+133 N 4.34,33.596159,-117.760506,LOCATION 26,0.962924,0.269774,lime
+133 N 4.5,33.598397,-117.761133,AT 73,0,0,white
+133 N 4.79,33.602492,-117.760884,LOCATION 27,0.974473,-0.224504,lime
+133 N 5.3,33.609693,-117.759225,LOCATION 28,0.974473,-0.224504,lime
+133 N 5.81,33.616805,-117.756717,LOCATION 29,0.975925,-0.218108,lime
+133 N 6,33.6197,-117.75607,AT LAKE FOREST,0,0,white
+133 N 6.37,33.625088,-117.757397,LOCATION 30,0.80608,0.591806,lime
+133 N 6.81,33.630223,-117.761167,LOCATION 31,0.80608,0.591806,lime
+133 N 7.35,33.637439,-117.760626,LOCATION 32,0,0,white
+133 N 7.72,33.64216,-117.761812,LOCATION 34,0,0,white
+133 N 7.76,33.642699,-117.761973,LOCATION 33,0,0,white
+133 N 8.732,33.657392,-117.757636,BARRANCA 1,0,0,white
+133 N 8.866,33.659542,-117.756294,BARRANCA1,0,0,white
+133 N 9.1,33.663305,-117.753976,BARRANCA2,0,0,white
+133 N 9,33.661697,-117.754967,BARRANCA1,0.851313,-0.524659,lime
+133 N 9.37,33.667495,-117.753044,S OF 5,0.976143,-0.217128,lime
+133 N 9.77,33.672836,-117.753243,N OF 5,0.971108,-0.23864,lime
+133 S 10.05,33.676396,-117.752844,MARINE WAY,-0.974264,0.225409,lime
+133 S 10.5,33.68106,-117.74924,N OF MARINE,-0.764221,0.644955,lime
+133 S 10.73,33.683386,-117.747277,S OF PM 11,-0.764221,0.644955,lime
+133 S 11.08,33.687243,-117.744014,AT PM 11,-0.767026,0.641617,lime
+133 S 11.35,33.690454,-117.741328,N OF PM 11,-0.764252,0.644918,lime
+133 S 11.7,33.694604,-117.737826,IRVINE BLVD 1,-0.756644,0.653828,lime
+133 S 12.05,33.698681,-117.734303,IRVINE BLVD 3,-0.679098,0.734047,lime
+133 S 12.42,33.702574,-117.730095,S OF PORTOLA,-0.679098,0.734047,lime
+133 S 13.04,33.710914,-117.72449,ORANGE 1,-0.898001,0.439993,lime
+133 S 13.42,33.715749,-117.722121,ORANGE 2,-0.898001,0.439993,lime
+133 S 4,33.591062,-117.759529,N of 73,0,0,white
+133 S 4.38,33.596721,-117.760662,LOCATION 40,-0.980541,-0.196316,lime
+133 S 4.81,33.602769,-117.7608,LOCATION 39,-0.948647,0.316336,lime
+133 S 4.8,33.60263,-117.760843,AT LAKE FOREST,0,0,white
+133 S 5.26,33.609099,-117.759202,LOCATION 38,-0.951762,0.306837,lime
+133 S 5,33.605393,-117.759925,AT 73 (BLUETOOTH),0,0,white
+133 S 5.81,33.616804,-117.756718,LOCATION 37,-0.951762,0.306837,lime
+133 S 6.38,33.625214,-117.75749,LOCATION 36,-0.805163,-0.593053,lime
+133 S 6.8,33.630107,-117.761094,LOCATION 35,-0.805163,-0.593053,lime
+133 S 9,33.66184,-117.7553,BARRANCA2,-0.952044,0.305962,lime
+133 S 9.37,33.667665,-117.753428,S OF 5,-0.952044,0.305962,lime
+133 S 9.77,33.673029,-117.753623,N OF 5,-0.974264,0.225409,lime
+142 E 0.753,33.90979,-117.85227,IMPERIAL HWY & VALEN,0.843501,-0.537127,lime
+142 E 0.975,33.912612,-117.850473,Nasa ST,0.843501,-0.537127,lime
+142 E 1.41,33.918427,-117.847872,BRIRCH ST & VALENCIA,0.99709,-0.076235,lime
+142 E 1.768,33.923881,-117.847455,CRAB CNYN & VELLAENC,-0.116472,-0.993194,lime
+142 E 2.11,33.922967,-117.839661,LOCATION 44,-0.277876,-0.960617,lime
+142 E 2.2,33.92256,-117.838254,CARB CNYN @ SANTA FE,-0.277876,-0.960617,lime
+142 E 2.8,33.921188,-117.828619,CALL BOX 484,-0.288898,-0.95736,lime
+142 E 2.84,33.921,-117.827996,CALL BOX 484,-0.288898,-0.95736,lime
+142 E 3.6,33.922015,-117.816185,LOCATION 46,0.307112,-0.951673,lime
+142 E 3.81,33.92304,-117.812985,LOCATION 47,0.295298,-0.955405,lime
+142 E 3.8,33.922997,-117.813142,CARBO CNYN& REBEY RD,0.264157,-0.96448,lime
+142 E 4.2,33.924905,-117.806951,LOCATION 48,0.295298,-0.955405,lime
+142 E 4.81,33.929088,-117.797865,CALL BOX 481,0.753367,-0.6576,lime
+142 E 4.82,33.929206,-117.797762,LOCATION 49,0,0,white
+142 E 4.84,33.929441,-117.797555,CALL BOX 481,0.750397,-0.660988,lime
+142 E 5.49,33.937043,-117.791973,LOCATION 51,0.981109,-0.193458,lime
+142 E 5.5,33.937185,-117.791945,LOCATION 50,0.981109,-0.193458,lime
+142 E 6,33.942293,-117.78641,LOCATION 52,0,0,white
+142 W 0.753,33.90979,-117.85227,IMPERIAL HWY & VALEN,-0.843501,0.537127,lime
+142 W 0.975,33.912612,-117.850473,Nasa ST,-0.843501,0.537127,lime
+142 W 1.41,33.918427,-117.847872,BRIRCH ST & VALENCIA,-0.998431,0.055999,lime
+142 W 1.76,33.923865,-117.847567,LOCATION 43,0,0,white
+142 W 1.768,33.923881,-117.847455,CRAB CNYN & VELLAENC,-0.141421,0.989949,lime
+142 W 2.11,33.922967,-117.839661,LOCATION 44,0.277876,0.960617,lime
+142 W 2.2,33.92256,-117.838254,CARB CNYN @ SANTA FE,0.277876,0.960617,lime
+142 W 2.61,33.922131,-117.831553,LOCATION 45,0,0,white
+142 W 2.8,33.921188,-117.828619,CALL BOX 484,0.288898,0.95736,lime
+142 W 2.84,33.921,-117.827996,CALL BOX 484,0.288898,0.95736,lime
+142 W 3.6,33.922015,-117.816184,LOCATION 46,-0.307112,0.951673,lime
+142 W 3.81,33.92304,-117.812984,LOCATION 47,-0.295298,0.955405,lime
+142 W 3.8,33.922997,-117.813141,CARBO CNYN& REBEY RD,-0.264157,0.96448,lime
+142 W 4.2,33.924905,-117.80695,LOCATION 48,-0.295298,0.955405,lime
+142 W 4.81,33.929089,-117.797865,CALL BOX 481,-0.750334,0.661059,lime
+142 W 4.84,33.929442,-117.797554,CALL BOX 481,-0.750334,0.661059,lime
+142 W 5.49,33.937043,-117.791973,LOCATION 51,-0.981109,0.193458,lime
+142 W 5.5,33.937185,-117.791945,LOCATION 50,-0.981109,0.193458,lime
+241 N 17.8,33.63353,-117.599074,ANTONIO 2,0.94076,0.339073,lime
+241 N 17.9,33.634945,-117.599584,SOLAR ANTONIO 2,0.894427,0.447214,lime
+241 N 18.08,33.637405,-117.600814,BANDERAS,0,0,white
+241 N 18.7,33.645877,-117.605062,SANTA MARGUERITA,0.90141,0.432966,lime
+241 N 18.8,33.647249,-117.605721,TRABUCO CREEK,0.90141,0.432966,lime
+241 N 19.3,33.651938,-117.612216,MELINDA,0.193918,0.981018,lime
+241 N 19.76,33.653482,-117.620027,LOS ALISOS 1,0.32691,0.945056,lime
+241 N 19.86,33.654041,-117.621643,SOLAR LOS ALISOS 1,0.323887,0.946096,lime
+241 N 20.13,33.655536,-117.62601,LOS ALISOS 2,0,0,white
+241 N 20.54,33.658363,-117.632286,UPPER OSO,0.410703,0.911769,lime
+241 N 21.61,33.666889,-117.647778,PORTOLA S 1,0.3701,0.928992,lime
+241 N 21.93,33.668867,-117.652743,PORTOLA S 2,0.3701,0.928992,lime
+241 N 22.61,33.672946,-117.663113,LAKE FOREST,0.37314,0.927775,lime
+241 N 22.71,33.673571,-117.664667,SOLAR LAKE FOREST,0.383214,0.92366,lime
+241 N 22.81,33.674212,-117.666212,BAKE,0.42005,0.907501,lime
+241 N 22.91,33.67491,-117.66772,SOLAR BAKE,0.42005,0.907501,lime
+241 N 23.2,33.677671,-117.671424,ALTON 1,0.787657,0.616114,lime
+241 N 23.3,33.678874,-117.672365,SOLAR ALTON 1,0.787657,0.616114,lime
+241 N 23.54,33.681906,-117.67436,ALTON 2,0.8,0.6,lime
+241 N 23.65,33.68325,-117.675368,SOLAR ALTON 2,0.8,0.6,lime
+241 N 24.16,33.688336,-117.681661,N OF ALTON,0.567343,0.823482,lime
+241 N 24.26,33.689253,-117.682992,SOLAR N OF ALTON,0.567343,0.823482,lime
+241 N 24.8,33.694263,-117.690124,SOUTH OF PORTOLA,0.483192,0.875514,lime
+241 N 25.15,33.697044,-117.695163,PORTOLA N2,0.436189,0.899855,lime
+241 N 25.43,33.699076,-117.699355,TOMATO 1,0.434917,0.900471,lime
+241 N 25.53,33.6998,-117.700854,SOLAR TOMATO 1,0.434917,0.900471,lime
+241 N 25.95,33.702783,-117.707184,TOMATO 3,0,0,white
+241 N 26.05,33.703475,-117.708703,SOLAR TOMATO 3,0,0,white
+241 N 26.35,33.70568,-117.713171,TOMATO 4,0.38021,0.9249,lime
+241 N 26.4,33.705999,-117.713947,SOLAR TOMATO 4,0.487943,0.872876,lime
+241 N 26.58,33.707439,-117.716523,133-1,0.690231,0.723589,lime
+241 N 26.76,33.709384,-117.718562,133-2,0.690231,0.723589,lime
+241 N 27.12,33.714309,-117.720349,133-3,0.999048,-0.043617,lime
+241 N 27.22,33.715752,-117.720286,SOLAR 133-3,0.999048,-0.043617,lime
+241 N 27.43,33.718783,-117.719917,BEE CANYON,0.991505,-0.130067,lime
+241 N 27.53,33.720239,-117.719726,SOLAR BEE CANYON,0.991505,-0.130067,lime
+241 N 27.74,33.723299,-117.719302,N OF 133,0.991174,-0.132564,lime
+241 N 27.84,33.724757,-117.719107,SOLAR N OF 133,0.991174,-0.132564,lime
+241 N 28.09,33.728406,-117.71867,S OF JEFFREY,0.991789,-0.127885,lime
+241 N 28.19,33.729864,-117.718482,SOLAR S OF JEFFREY,0.991828,-0.127583,lime
+241 N 28.44,33.73351,-117.718013,N OF JEFFREY,0.991828,-0.127583,lime
+241 N 28.73,33.737751,-117.71751,N OF HAUL ROAD,0.99277,0.120036,lime
+241 N 28.97,33.741266,-117.717935,HAUL-CULVER,0.99277,0.120036,lime
+241 N 29.34,33.746087,-117.720909,S OF CULVER S,0.544008,0.83908,lime
+241 N 29.69,33.749247,-117.725783,N OF CULVER S,0.51441,0.857544,lime
+241 N 30.1,33.753089,-117.731261,SOLAR CUL-CULVER 1,0.749117,0.662437,lime
+241 N 30.33,33.756276,-117.732601,CULVER-CULVER 2,0.999169,0.040755,lime
+241 N 30,33.751905,-117.730214,CULVER-CULVER 1,0.749117,0.662437,lime
+241 N 30.43,33.757747,-117.732661,SOLAR CUL-CULVER 2,0.999169,0.040755,lime
+241 N 30.72,33.76201,-117.732107,S OF CULVER N,0.994307,0.106557,lime
+241 N 30.82,33.763475,-117.732264,SOLAR S OF CULVER N,0.994307,0.106557,lime
+241 N 31.03,33.766355,-117.733568,N OF CULVER N,0.738172,0.674612,lime
+241 N 31.13,33.767528,-117.73464,SOLAR N OF CULVER N,0.738172,0.674612,lime
+241 N 31.44,33.770424,-117.738882,S OF EOC OC,0.546231,0.837634,lime
+241 N 31.54,33.771335,-117.740279,SOLAR S OF EOC OC,0.572437,0.819949,lime
+241 N 31.88,33.774559,-117.744897,CHAPMAN 1,0.572437,0.819949,lime
+241 N 32.29,33.780001,-117.747616,CHAPMAN 2,0.997824,-0.065933,lime
+241 N 32.39,33.781469,-117.747519,SOLAR CHAPMAN 2,0.997824,-0.065933,lime
+241 N 32.71,33.785685,-117.745126,CHAPMAN 3,0.6879,-0.725806,lime
+241 N 32.81,33.786792,-117.743958,SOLAR CHAPMAN 3,0.563196,-0.826323,lime
+241 N 32.97,33.788286,-117.741766,CHAPMAN 4,0.563196,-0.826323,lime
+241 N 33.35,33.791626,-117.736347,N OF CHAPMAN,0.530321,-0.847797,lime
+241 N 33.45,33.792513,-117.734929,SOLAR N OF CHAPMAN,0.530321,-0.847797,lime
+241 N 33.68,33.794622,-117.731726,S OF SANT CREEK,0.51738,-0.855756,lime
+241 N 33.78,33.795518,-117.730244,SOLAR S OF SANT CK,0.632614,-0.774467,lime
+241 N 34.03,33.798225,-117.72693,N OF SANT CR1,0.632614,-0.774467,lime
+241 N 34.38,33.803371,-117.724852,N OF SANT CR2,0.937209,-0.348768,lime
+241 N 34.72,33.808431,-117.722969,S OF OAK,0.843058,-0.537823,lime
+241 N 34.82,33.809812,-117.722088,SOLAR S OF OAK,0.825697,-0.564113,lime
+241 N 35.08,33.813341,-117.719677,N OF OAK,0.916423,-0.400211,lime
+241 N 35.43,33.818484,-117.717431,S OF SCE OC,0.916423,-0.400211,lime
+241 N 35.82,33.824439,-117.715964,WINDY RIDGE 1,0.994559,0.104175,lime
+241 N 36.14,33.829413,-117.716485,WINDY RIDGE 2,0.986289,0.165028,lime
+241 N 36.37,33.832975,-117.717081,WINDY RIDGE 3,0.986289,0.165028,lime
+241 N 36.82,33.839984,-117.717671,W R WILDLIFE,0.987599,-0.156997,lime
+241 N 37.12,33.844639,-117.716931,N OF W R WILDLIFE 1,0.999335,-0.036462,lime
+241 N 37.49,33.850422,-117.71672,N OF W R WILDLIFE 2,0.999335,-0.036462,lime
+241 N 37.88,33.856526,-117.716773,N OF W R WILDLIFE 3,0.997345,-0.072816,lime
+241 N 38.23,33.861991,-117.716374,241N TO 91E ADVANCE,0.960705,0.277572,lime
+241 N 38.31,33.863192,-117.716721,N241 TO E91 RT 91OFF,0,0,white
+241 S 17.8,33.633478,-117.599491,ANTONIO 2,-0.933905,-0.357521,lime
+241 S 17.9,33.634852,-117.600017,SOLAR ANTONIO 2,-0.933905,-0.357521,lime
+241 S 18.3,33.640172,-117.602781,SANTA MARGUERITA,0,0,white
+241 S 18.7,33.645513,-117.605479,SANTA MARGUERITA,-0.899199,-0.437539,lime
+241 S 18.8,33.646855,-117.606132,TRABUCO CREEK,-0.899199,-0.437539,lime
+241 S 19.3,33.651498,-117.612415,MELINDA,-0.198462,-0.980109,lime
+241 S 19.76,33.653076,-117.620208,LOS ALISOS 1,-0.333218,-0.94285,lime
+241 S 19.86,33.653645,-117.621818,SOLAR LOS ALISOS 1,-0.376202,-0.926538,lime
+241 S 20.54,33.657968,-117.632465,UPPER OSO,-0.376202,-0.926538,lime
+241 S 21.61,33.666554,-117.647927,PORTOLA S 1,-0.342636,-0.939468,lime
+241 S 21.71,33.667139,-117.649531,SOLAR PORTOLA S1,0,0,white
+241 S 22.02,33.669094,-117.654243,PORTOLA S 2,-0.353878,-0.935292,lime
+241 S 22.12,33.669671,-117.655768,SOLAR PORTOLA S2,0,0,white
+241 S 22.61,33.67261,-117.663291,LAKE FOREST,-0.360927,-0.932594,lime
+241 S 22.71,33.673218,-117.664862,SOLAR LAKE FOREST,-0.371493,-0.928436,lime
+241 S 22.81,33.673843,-117.666424,BAKE,-0.418678,-0.908135,lime
+241 S 22.91,33.674541,-117.667938,SOLAR BAKE,-0.418678,-0.908135,lime
+241 S 23.2,33.677298,-117.671674,ALTON 1,-0.779725,-0.626123,lime
+241 S 23.3,33.678496,-117.672636,SOLAR ALTON 1,-0.779725,-0.626123,lime
+241 S 23.54,33.681564,-117.674584,ALTON 2,-0.800996,-0.59867,lime
+241 S 23.65,33.682914,-117.675593,SOLAR ALTON 2,-0.800996,-0.59867,lime
+241 S 24.16,33.688049,-117.681883,N OF ALTON,-0.574042,-0.818826,lime
+241 S 24.26,33.68898,-117.683211,SOLAR N OF ALTON,-0.574042,-0.818826,lime
+241 S 24.8,33.694005,-117.690369,SOUTH OF PORTOLA,-0.481939,-0.876205,lime
+241 S 25.15,33.696803,-117.695456,PORTOLA N2,-0.435805,-0.900041,lime
+241 S 25.43,33.698857,-117.699698,TOMATO 1,-0.432673,-0.901551,lime
+241 S 25.53,33.699586,-117.701217,SOLAR TOMATO 1,-0.432673,-0.901551,lime
+241 S 25.72,33.700961,-117.704109,TOMATO 2,0,0,white
+241 S 25.82,33.70167,-117.705642,SOLAR TOMATO 2,0,0,white
+241 S 26.35,33.705538,-117.71368,TOMATO 4,-0.356385,-0.934339,lime
+241 S 26.4,33.705842,-117.714477,SOLAR TOMATO 4,-0.480566,-0.876958,lime
+241 S 26.58,33.707275,-117.717092,133-1,-0.712032,-0.702147,lime
+241 S 26.76,33.709292,-117.719081,133-2,-0.712032,-0.702147,lime
+241 S 27.12,33.714276,-117.720884,133-3,-0.999239,0.039011,lime
+241 S 27.22,33.715736,-117.720827,SOLAR 133-3,-0.999239,0.039011,lime
+241 S 27.43,33.718798,-117.72046,BEE CANYON,-0.99165,0.128962,lime
+241 S 27.53,33.720259,-117.72027,SOLAR BEE CANYON,-0.99165,0.128962,lime
+241 S 27.74,33.723287,-117.719567,N OF 133,-0.98462,0.174712,lime
+241 S 27.84,33.724741,-117.719309,SOLAR N OF 133,-0.98462,0.174712,lime
+241 S 28.09,33.728394,-117.718803,S OF JEFFREY,-0.991031,0.13363,lime
+241 S 28.19,33.729855,-117.718606,SOLAR S OF JEFFREY,-0.991631,0.129107,lime
+241 S 28.44,33.733511,-117.71813,N OF JEFFREY,-0.991631,0.129107,lime
+241 S 28.73,33.73777,-117.717633,N OF HAUL ROAD,-0.992127,-0.125239,lime
+241 S 28.97,33.741319,-117.718081,HAUL-CULVER,-0.992127,-0.125239,lime
+241 S 29.34,33.746148,-117.721164,S OF CULVER S,-0.534518,-0.845157,lime
+241 S 29.69,33.74929,-117.726132,N OF CULVER S,-0.530397,-0.84775,lime
+241 S 30.1,33.753272,-117.73154,SOLAR CUL-CULVER 1,-0.773985,-0.633203,lime
+241 S 30.33,33.756517,-117.732805,CULVER-CULVER 2,-0.999994,0.00336,lime
+241 S 30,33.752046,-117.730537,CULVER-CULVER 1,-0.773985,-0.633203,lime
+241 S 30.43,33.758005,-117.7328,SOLAR CUL-CULVER 2,-0.999994,0.00336,lime
+241 S 30.72,33.762314,-117.732284,S OF CULVER N,-0.986194,-0.165595,lime
+241 S 30.82,33.763785,-117.732531,SOLAR S OF CULVER N,-0.986194,-0.165595,lime
+241 S 31.03,33.766637,-117.734012,N OF CULVER N,-0.712957,-0.701208,lime
+241 S 31.13,33.76779,-117.735146,SOLAR N OF CULVER N,-0.712957,-0.701208,lime
+241 S 31.44,33.770618,-117.739531,S OF EOC OC,-0.547969,-0.836499,lime
+241 S 31.54,33.771541,-117.74094,SOLAR S OF EOC OC,-0.550286,-0.834976,lime
+241 S 31.88,33.774682,-117.745706,CHAPMAN 1,-0.550286,-0.834976,lime
+241 S 32.29,33.780289,-117.7482,CHAPMAN 2,-0.997214,0.074589,lime
+241 S 32.39,33.781773,-117.748089,SOLAR CHAPMAN 2,-0.997214,0.074589,lime
+241 S 32.71,33.786034,-117.745698,CHAPMAN 3,-0.656814,0.754052,lime
+241 S 32.81,33.787108,-117.744465,SOLAR CHAPMAN 3,-0.536155,0.84412,lime
+241 S 32.97,33.788553,-117.74219,CHAPMAN 4,-0.536155,0.84412,lime
+241 S 33.35,33.791961,-117.73675,N OF CHAPMAN,-0.511805,0.859102,lime
+241 S 33.45,33.792829,-117.735293,SOLAR N OF CHAPMAN,-0.511805,0.859102,lime
+241 S 33.68,33.794954,-117.732055,S OF SANT CREEK,-0.521007,0.853552,lime
+241 S 33.78,33.795858,-117.730574,SOLAR S OF SANT CK,-0.634504,0.77292,lime
+241 S 34.03,33.798558,-117.727285,N OF SANT CR1,-0.634504,0.77292,lime
+241 S 34.38,33.803726,-117.725304,N OF SANT CR2,-0.931918,0.36267,lime
+241 S 34.72,33.808747,-117.72335,S OF OAK,-0.84356,0.537034,lime
+241 S 34.82,33.810123,-117.722474,SOLAR S OF OAK,-0.828928,0.559356,lime
+241 S 35.08,33.81365,-117.720094,N OF OAK,-0.915178,0.40305,lime
+241 S 35.43,33.818768,-117.71784,S OF SCE OC,-0.915178,0.40305,lime
+241 S 35.82,33.824805,-117.717155,WINDY RIDGE 1,-0.999904,-0.013843,lime
+241 S 36.14,33.829789,-117.717224,WINDY RIDGE 2,-0.990694,-0.136107,lime
+241 S 36.43,33.83428,-117.717841,WINDY RIDGE 3,-0.990694,-0.136107,lime
+241 S 36.82,33.840335,-117.718159,W R WILDLIFE,-0.985859,0.167575,lime
+241 S 37.12,33.844965,-117.717372,N OF W R WILDLIFE 1,-0.999815,0.019254,lime
+241 S 37.49,33.850729,-117.717261,N OF W R WILDLIFE 2,-0.999815,0.019254,lime
+241 S 37.88,33.856811,-117.717346,N OF W R WILDLIFE 3,-0.999884,-0.015214,lime
+241 S 38.23,33.862266,-117.717429,S OF 91,-0.999884,-0.015214,lime
+241 S 38.64,33.866619,-117.722022,E91 TO S241 RT 91 ON,0,0,white
+261 N 0.04,33.712252,-117.800349,JAMBOREE,0,0,lime
+261 N 0.31,33.715376,-117.797696,WALNUT 2,0,0,white
+261 N 0.5,33.717083,-117.795181,S OF 5,0.493349,-0.869832,lime
+261 N 0.9,33.720342,-117.789435,EL CAMINO REAL,0.493349,-0.869832,lime
+261 N 1.35,33.72367,-117.782735,IRVINE BLVD 1,0.607612,-0.794234,lime
+261 N 1.75,33.727564,-117.777645,IRVINE BLVD 2,0.607612,-0.794234,lime
+261 N 2.24,33.733387,-117.772751,IRVINE RANCH FSTRK,0.766466,-0.642285,lime
+261 N 2.71,33.738979,-117.768065,PORTOLA  1,0.904237,-0.42703,lime
+261 N 3.16,33.74498,-117.765231,PORTOLA 2,0.983838,-0.179058,lime
+261 N 3.51,33.749991,-117.764319,PORTOLA 3,0.984423,-0.175816,lime
+261 N 3.79,33.754,-117.763603,PORTOLA 4,0.984423,-0.175816,lime
+261 N 4.14,33.758685,-117.76135,S OF UTILITY,0.885102,-0.465397,lime
+261 N 4.46,33.762966,-117.759099,N OF UTILITY,0.980133,-0.198343,lime
+261 N 4.7,33.766351,-117.758414,HANDY 1,0.999501,-0.031586,lime
+261 N 4.93,33.769642,-117.75831,HANDY 2,0.997022,-0.077121,lime
+261 N 5.27,33.77449,-117.757935,HANDY 3,0.997022,-0.077121,lime
+261 N 5.64,33.779145,-117.75497,CHAPMAN,0,0,lime
+261 S 0.04,33.7124,-117.800638,JAMBOREE,0,0,lime
+261 S 0.5,33.717315,-117.795434,S OF 5,-0.497099,0.867694,lime
+261 S 0.9,33.720604,-117.789693,EL CAMINO REAL,-0.497099,0.867694,lime
+261 S 1.35,33.723902,-117.782999,IRVINE BLVD 1,-0.601686,0.798733,lime
+261 S 1.75,33.727725,-117.777924,IRVINE BLVD 2,-0.601686,0.798733,lime
+261 S 2.24,33.733529,-117.773023,IRVINE RANCH FSTRK,-0.769852,0.638223,lime
+261 S 2.71,33.739132,-117.768378,PORTOLA  1,-0.910548,0.413404,lime
+261 S 3.16,33.745156,-117.765643,PORTOLA 2,-0.982145,0.188125,lime
+261 S 3.51,33.750147,-117.764687,PORTOLA 3,-0.984863,0.173336,lime
+261 S 3.79,33.754147,-117.763983,PORTOLA 4,-0.984863,0.173336,lime
+261 S 4.14,33.758827,-117.761762,S OF UTILITY,-0.884264,0.466987,lime
+261 S 4.46,33.763114,-117.759498,N OF UTILITY,-0.980989,0.194064,lime
+261 S 4.7,33.766516,-117.758825,HANDY 1,-0.999193,0.040173,lime
+261 S 4.93,33.769824,-117.758692,HANDY 2,-0.997492,0.070782,lime
+261 S 5.27,33.7747,-117.758346,HANDY 3,-0.997492,0.070782,lime
+261 S 5.64,33.779357,-117.75529,CHAPMAN,0,0,lime
+405 N 0.6,33.646486,-117.741156,N OF 5,0,0,lime
+405 N 0.93,33.64809,-117.746598,IRVINE C1,0.282096,0.959386,lime
+405 N 10.1,33.687683,-117.895773,N OF 73,0,0,white
+405 N 10.48,33.687846,-117.902375,N OF 73,0.024682,0.999695,lime
+405 N 10.9,33.688017,-117.909664,FAIRVIEW,0,0,white
+405 N 1.11,33.648958,-117.74955,IRVINE C2,0,0,white
+405 N 11.247,33.688281,-117.915651,TEMP 1 NB,0.226201,0.974081,lime
+405 N 11.4,33.688872,-117.918196,HARBOR 1,0,0,white
+405 N 11.6,33.690091,-117.921335,HYLAND,0.362002,0.932177,lime
+405 N 12.16,33.693692,-117.930032,HAMPSHIRE,0.384478,0.923134,lime
+405 N 12.712,33.697258,-117.938594,TEMP 2 NB,0.389175,0.921164,lime
+405 N 12.85,33.69816,-117.940729,EUCLID,0,0,white
+405 N 13.122,33.699916,-117.94495,LOCATION 5013 NB,0.384103,0.92329,lime
+405 N 13.74,33.704947,-117.953701,BROOKHUR1,0.642988,0.765876,lime
+405 N 13.97,33.707312,-117.956518,BROOKHUR2,0,0,white
+405 N 14.571,33.71347,-117.963904,TMS 5014 NB,0.641837,0.766841,lime
+405 N 14.82,33.716027,-117.966959,WARNER,0.643494,0.765452,lime
+405 N 15.17,33.719628,-117.971245,MAGNOLIA1,0.639234,0.769012,lime
+405 N 15,33.717879,-117.969162,405 TEST,0.643037,0.765835,lime
+405 N 15.39,33.721879,-117.973953,MAGNOLIA2,0,0,white
+405 N 15.66,33.724553,-117.977379,TMS 5015 NB,0.568448,0.822719,lime
+405 N 1.57,33.651141,-117.757101,N OF 133,0.202053,0.979375,lime
+405 N 16.025,33.727931,-117.982268,TMS 5016 NB,0,0,white
+405 N 16.52,33.732527,-117.988885,BEACH 1,0.571725,0.820445,lime
+405 N 16.76,33.734759,-117.992088,BEACH 2,0,0,white
+405 N 1.73,33.651697,-117.759796,AT 133 N405 to S133,0.147572,0.989051,lime
+405 N 17.92,33.746378,-118.00667,GOLDEN WEST,0.642886,0.765962,lime
+405 N 18.696,33.754349,-118.016167,TMC 5017 NB,0.64006,0.768325,lime
+405 N 19.24,33.759918,-118.022852,WESTMINISTER,0,0,white
+405 N 1.93,33.652204,-117.763194,S OF 133,0.206915,0.978359,lime
+405 N 19.631,33.763926,-118.027646,TMS 5018 NB,0.641411,0.767197,lime
+405 N 20.341,33.771206,-118.036355,TMS 2240 NB,0.313135,0.949709,lime
+405 N 21.039,33.774701,-118.046955,TMS 2417 NB,-0.025163,0.999683,lime
+405 N 21.552,33.774476,-118.055894,TMS 5020 NB,-0.001431,0.999999,lime
+405 N 21.912,33.774467,-118.062183,TMS 5021 NB,-0.001431,0.999999,lime
+405 N 22.55,33.774552,-118.073325,SEAL BEACH 1,-0.000845,1.0,lime
+405 N 22.887,33.774547,-118.079243,TMS 268,0,0,white
+405 N 23.12,33.774556,-118.083341,S OF 7TH ST,0.026307,0.999654,lime
+405 N 23.133,33.774562,-118.083569,TMS 2241 NB,0.114396,0.993435,lime
+405 N 23.19,33.774676,-118.084559,N OF 7TH ST,0.114396,0.993435,lime
+405 N 23,33.774554,-118.08123,S OF OLD RANCH PKWY,0,0,white
+405 N 2.35,33.65368,-117.770173,LAGUNA CANYON RD,0.206915,0.978359,lime
+405 N 23.62,33.778545,-118.089644,SALMON,0.941439,0.337182,lime
+405 N 23.641,33.778827,-118.089745,TMS 2218 NB,0.941439,0.337182,lime
+405 N 23.92,33.782737,-118.090834,S OF 605,0.96041,0.278592,lime
+405 N 23.929,33.782868,-118.090872,TMS 2542 NB,0.96041,0.278592,lime
+405 N 24.12,33.785381,-118.092441,N OF 605,0,0,lime
+405 N 2.89,33.657928,-117.777952,SAND CANYON 1,0.494902,0.868949,lime
+405 N 2.99,33.658747,-117.77939,SAND CANYON 2,0,0,white
+405 N 3.04,33.659163,-117.780107,SAND CANYON,0,0,white
+405 N 3.31,33.661319,-117.784046,N OF SAND CANYON,0.480131,0.877197,lime
+405 N 3.86,33.663379,-117.793258,JEFFREY 1,0.142134,0.989847,lime
+405 N 4.03,33.663798,-117.796176,JEFFREY 2,0.142134,0.989847,lime
+405 N 5.01,33.666407,-117.812902,YALE,0.267568,0.963539,lime
+405 N 5.05,33.66659,-117.813561,SPRUCE,0.267568,0.963539,lime
+405 N 5.55,33.669218,-117.821657,CULVER 1,0.332642,0.943053,lime
+405 N 5.74,33.670291,-117.824699,CULVER 2,0.320278,0.947323,lime
+405 N 6.21,33.672851,-117.832271,HARVARD,0.320278,0.947323,lime
+405 N 6.85,33.676465,-117.842488,JAMBOREE1,0.400805,0.916164,lime
+405 N 7.07,33.677945,-117.845871,JAMBOREE2,0.400805,0.916164,lime
+405 N 7.73,33.682442,-117.85598,MACARTHUR 1,0.408917,0.912572,lime
+405 N 8.26,33.686072,-117.864081,AIRPORT,0.321527,0.9469,lime
+405 N 8.35,33.686563,-117.865527,HOV AT 55N FLYOVER**,0.271933,0.962316,lime
+405 N 8.4,33.686795,-117.866348,RED HILL,0.126754,0.991934,lime
+405 N 8.7,33.687449,-117.871466,ANTON,0,0,white
+405 N 9.2,33.687519,-117.880139,AVE. OF ART,0.000886,1.0,lime
+405 N 9.46,33.687523,-117.884653,BRISTOL 1,0.0,1.0,lime
+405 N 9.65,33.687523,-117.887956,BRISTOL 2,0.0,1.0,lime
+405 N 9.9,33.687569,-117.8923,BEAR,0.032807,0.999462,lime
+405 S 0.6,33.646186,-117.741301,N OF 5,-0.284825,-0.958579,lime
+405 S 0.77,33.647015,-117.744091,IRVINE C1,0,0,white
+405 S 0.96,33.64795,-117.747203,IRVINE C2,-0.287743,-0.957708,lime
+405 S 10.28,33.68748,-117.899035,FAIRVIEW,0,0,white
+405 S 10.3,33.687494,-117.899383,FAIRVIEW,0,0,white
+405 S 10.48,33.687582,-117.902507,N OF 73,-0.028158,-0.999603,lime
+405 S 11.2,33.687942,-117.915002,HARBOR 1,-0.248611,-0.968603,lime
+405 S 11.53,33.689396,-117.92042,TEMP 1 SB,0,0,white
+405 S 11.5,33.689212,-117.91995,HARBOR 2,-0.364549,-0.931184,lime
+405 S 12.16,33.693448,-117.930222,HAMPSHIRE,-0.385484,-0.922714,lime
+405 S 12.5,33.695653,-117.9355,EUCLID,0,0,white
+405 S 12.63,33.696514,-117.937506,TEMP 2 SB,-0.394417,-0.918932,lime
+405 S 13.123,33.699731,-117.94515,LOCATION 5013 SB,-0.37653,-0.926404,lime
+405 S 13.3,33.700854,-117.947913,TALBERT,0,0,white
+405 S 13.81,33.705479,-117.954762,BROOKHURST2,-0.559633,-0.828741,lime
+405 S 14.539,33.712977,-117.963712,TMS 5014 SB,-0.642116,-0.766608,lime
+405 S 14.72,33.714839,-117.965935,WARNER,-0.642116,-0.766608,lime
+405 S 15.16,33.71936,-117.971343,MAGNOLIA 1,-0.644821,-0.764334,lime
+405 S 15,33.717709,-117.969386,405 TEST,-0.644821,-0.764334,lime
+405 S 15.722,33.724961,-117.978434,TMS 5015 SB,-0.570833,-0.821066,lime
+405 S 1.57,33.650789,-117.757205,N OF 133,-0.197097,-0.980384,lime
+405 S 16.26,33.72995,-117.98561,EDINGER,0,0,white
+405 S 16.6,33.733102,-117.990146,BEACH 1,-0.580003,-0.814614,lime
+405 S 16.978,33.736657,-117.995139,TMS 5016 SB,0,0,white
+405 S 1.73,33.65133,-117.759896,AT 133,-0.146685,-0.989183,lime
+405 S 17.66,33.743534,-118.003642,BOLSA,0,0,white
+405 S 17.98,33.7468,-118.007585,GOLDEN WEST,-0.646922,-0.762556,lime
+405 S 18,33.747007,-118.007829,GOLDEN WEST,0,0,white
+405 S 18.689,33.754062,-118.016295,TMS 5017 SB,-0.6442,-0.764857,lime
+405 S 19.05,33.757778,-118.020707,WESTMINSTER,0,0,white
+405 S 1.93,33.651837,-117.763315,S OF 133,-0.209415,-0.977827,lime
+405 S 19.641,33.763839,-118.02796,TMS 5018 SB,-0.641235,-0.767345,lime
+405 S 20.336,33.770948,-118.036509,TMS 2240 SB,-0.541255,-0.840859,lime
+405 S 20.69,33.77403,-118.041297,BOLSA CHICA,0,0,white
+405 S 21.032,33.774412,-118.047045,TMS 2417 SB,-0.066312,-0.997799,lime
+405 S 21.519,33.774204,-118.055374,TMS 5020 SB,0.002321,-0.999997,lime
+405 S 21.864,33.77419,-118.061407,TMS 5021 SB,0.002321,-0.999997,lime
+405 S 22.54,33.774257,-118.073289,SEAL BEACH 1,-0.007511,-0.999972,lime
+405 S 23.093,33.77433,-118.083008,TMS 2241 SB,-0.0,-1.0,lime
+405 S 23.12,33.77433,-118.083482,S OF 7TH ST,-0.111511,-0.993763,lime
+405 S 23.19,33.774466,-118.084694,N OF 7TH ST,-0.224563,-0.974459,lime
+405 S 23.262,33.774743,-118.085896,TMS 5022 SB,0,0,white
+405 S 2.35,33.653346,-117.770361,LAGUNA CANYON RD,-0.209415,-0.977827,lime
+405 S 23.62,33.778421,-118.089913,SALMON,-0.946836,-0.321715,lime
+405 S 23.646,33.778783,-118.090036,TMS 2218 SB,-0.965604,-0.260019,lime
+405 S 23.7,33.779548,-118.090242,E22-N405,0,0,white
+405 S 23.919,33.782664,-118.091096,TMS 2542 SB,-0.966235,-0.257663,lime
+405 S 23.92,33.782679,-118.0911,S OF 605,-0.966235,-0.257663,lime
+405 S 24.12,33.785289,-118.092624,N OF 605,0,0,lime
+405 S 2.88,33.657534,-117.778085,SAND CANYON,-0.484045,-0.875043,lime
+405 S 3.31,33.660957,-117.784273,N OF SAND CANYON,-0.484045,-0.875043,lime
+405 S 3.84,33.66293,-117.793047,JEFFREY 1,-0.144931,-0.989442,lime
+405 S 4.03,33.663404,-117.796283,JEFFREY 2,-0.144931,-0.989442,lime
+405 S 5.01,33.666093,-117.81298,YALE,-0.29192,-0.956443,lime
+405 S 5.05,33.666292,-117.813632,SPRUCE,-0.29192,-0.956443,lime
+405 S 5.5,33.668738,-117.820882,CULVER 1,-0.30889,-0.951098,lime
+405 S 5.69,33.669737,-117.823958,CULVER 2,-0.30889,-0.951098,lime
+405 S 6.1,33.671983,-117.830554,HARVARD,0,0,white
+405 S 6.21,33.672571,-117.832329,HARVARD,-0.314462,-0.94927,lime
+405 S 6.8,33.675863,-117.84179,JAMBOREE1,-0.402558,-0.915394,lime
+405 S 7.01,33.677283,-117.845019,JAMBOREE2,-0.402558,-0.915394,lime
+405 S 7.69,33.681922,-117.855449,MACARTHUR1,-0.399707,-0.916643,lime
+405 S 8.26,33.685751,-117.86423,AIRPORT,-0.358185,-0.933651,lime
+405 S 8.35,33.686295,-117.865648,HOV 55S to 405S,-0.259554,-0.965729,lime
+405 S 8.4,33.686517,-117.866474,RED HILL,-0.259554,-0.965729,lime
+405 S 8.9,33.687245,-117.875063,N OF 55,0,0,white
+405 S 9.2,33.687254,-117.880276,AVE. OF ART,0.000508,-1.0,lime
+405 S 9.54,33.687251,-117.88618,BRISTOL 1,-0.013748,-0.999905,lime
+405 S 9.9,33.687337,-117.892435,BEAR,-0.013748,-0.999905,lime
+605 N 1.1,33.799174,-118.084562,N OF 405,0,0,lime
+605 N 1.26,33.80097,-118.082822,KATELLA 1,0,0,lime
+605 S 1.1,33.799259,-118.084891,N OF 405,-0.712287,0.701888,lime
+605 S 1.26,33.80104,-118.083136,KATELLA 1,-0.712287,0.701888,lime
+605 S 1.49,33.804047,-118.081675,KATELLA 2,0,0,white
Index: trunk/webapps/cptms/data_layers/cmsToGeoJson.awk
===================================================================
--- trunk/webapps/cptms/data_layers/cmsToGeoJson.awk	(revision 326)
+++ trunk/webapps/cptms/data_layers/cmsToGeoJson.awk	(revision 326)
@@ -0,0 +1,18 @@
+# Convert a csv with cctv location data to a geojson file
+# This was used for a one-off task to convert the static csv file we manually produced into json
+# Sample invocation:  awk -F',' -f awkpgm1 filename
+
+# Manually remove the first line with column headers before running this.
+
+# Remove quotes around those streets names that have them
+//{gsub("\"","",$5);printf "  {\n  \"type\": \"Feature\",\n  \"id\": \"%s\",\n  \"geometry\":\n      {\n      \"type\": \"Point\",\n      \"coordinates\": [%s,%s]\n      },\n  \"properties\":\n      {\n      \"location\":\"%c %s %5.2f\",\n      \"street\":\"%s\"\n      }\n  },\n", $1,$7,$8,$10,$12,$15, $5}
+
+#
+# When finished prepend:
+#{
+#  "type": "FeatureCollection",
+#  "features": [
+# 
+# and Append:
+#  ] }
+
Index: trunk/webapps/cptms/data_layers/prep_postmiles.py
===================================================================
--- trunk/webapps/cptms/data_layers/prep_postmiles.py	(revision 352)
+++ trunk/webapps/cptms/data_layers/prep_postmiles.py	(revision 352)
@@ -0,0 +1,273 @@
+import collections,math,sys
+# Scan the postmile file to preprocess it to identify N/S pairs
+# that are so close they will overlap in the display. 
+# Compute the perpendicular vector that will be used to adjust their position.
+# Input filename is a Output to stdout.
+# This program adds one extra column to the output, a color, to allow the
+# results to be easily converted to json and displayed for visual verification. 
+# (See the convert csv to json bash/awk script)
+# Before being used in the simulation, remove the last column:
+#     cut -f1-6 -d"," output.txt
+
+# jdalbey Feb 2019
+postmileFile = "d12_vds_uniq_sorted.csv"
+
+# Helper function to find the perpendicular unit vector to the line
+# between two postmiles.
+def findPerpX(ax,ay,bx,by):
+    dx = float(bx) - float(ax);
+    dy = float(by) - float(ay);
+    
+    dist = math.sqrt(dx * dx + dy * dy);
+    try:
+        normX = dy / dist;  # calc a unit vector
+        normY = -dx / dist;
+        return round(normX, 6)
+    except ZeroDivisionError:
+        print "Oops, (",ay,",",ax,") appeared twice,"
+        print "causing findPerp() to divide by zero. Probable cause: duplicates in input"
+        print "Please correct the input file."
+        sys.exit(-1)
+# And same for Y ... I know it's redundant code.
+def findPerpY(ax,ay,bx,by):
+    dx = float(bx) - float(ax);
+    dy = float(by) - float(ay);
+    
+    dist = math.sqrt(dx * dx + dy * dy);
+    
+    normX = dy / dist;  # calc a unit vector
+    normY = -dx / dist;
+    return round(normY, 6)
+
+orientationLookup = {'N':0,'S':1,'E':0,'W':1}
+
+def loadHighways():
+
+    f = open(postmileFile,'r')
+    lines = [line.split(',') for line in f.readlines()]
+    
+    # Create a set containing just the route numbers 
+    routeNums = set()
+    for item in lines:
+        routeNums.add(int(item[0]))
+    # put the route numbers in order
+    sortedRoutes = sorted (routeNums)    
+    # Create the empty postmile collections
+    for route in sortedRoutes:
+        #print route,
+        highways[str(route)]=[collections.OrderedDict(),collections.OrderedDict()]
+    #print
+    # Process all the data, placing it in proper route and collection
+    for item in lines:
+        route = item[0]
+        orientation = orientationLookup[item[1]]
+        postmileItem = item[2]
+        highways[route][orientation][postmileItem]=item
+
+
+def dumpHighways():
+    # Dump the highways data we've organized
+    for item in highways:
+        for cnt in [0,1]:
+            list1 = highways[item][cnt]
+            print "highway",item,list1
+            # show fields for one entry
+            for pm_entry in list1:
+                print pm_entry,list1[pm_entry]
+
+def calcPerpendicularVectors(theList,thePerps,dirSign):
+    size = len(theList)
+    idx = 1
+    while (idx < size-1):
+        # see which is closer, previous or next
+        a = abs(float(theList[idx][2]) - float(theList[idx+1][2]))
+        b = abs(float(theList[idx][2]) - float(theList[idx-1][2]))
+        if ( a<b ):
+            #print "closest to ",theList[idx][1]+theList[idx][2]," is ", theList[idx+1][2],
+            ax=theList[idx][4] #long
+            ay=theList[idx][3] #lat
+            bx=theList[idx+1][4]
+            by=theList[idx+1][3]
+            px = findPerpX(ax,ay,bx,by) * dirSign
+            py = findPerpY(ax,ay,bx,by) * dirSign
+            # TODO: ADd check to see if this pm already assigned px,py
+            thePerps[theList[idx][2]] = [px,py]
+            thePerps[theList[idx+1][2]] = [px,py]
+            #print px,py
+        else:
+            #print ">closest to ",theList[idx][2]," is ", theList[idx-1][2],
+            ax=theList[idx][4]
+            ay=theList[idx][3]
+            bx=theList[idx-1][4]
+            by=theList[idx-1][3]
+            px = findPerpX(bx,by,ax,ay) * dirSign # reverse order so normal stays NB
+            py = findPerpY(bx,by,ax,ay) * dirSign
+            # TODO: ADd check to see if this pm already assigned px,py
+            thePerps[theList[idx][2]] = [px,py]
+            thePerps[theList[idx-1][2]] = [px,py]
+            #print px,py
+        idx += 1
+
+    # Did first and last spots get filled?
+    if theList[0][2] in thePerps:
+        #print "good, the first item ",theList[0][2]," is present"
+        pass
+    else:
+        #print "oops, first item ",theList[0][2]," missing"
+        # I'm too lazy to calc this value, so providing zero meaning no perp vector
+        # Which means if by chance this spot has a "mate" then it won't get adjusted
+        # as it should.  TODO: fix this by using the neighbor as adjacent
+        thePerps[theList[0][2]]=[0,0]
+    if theList[idx][2] in thePerps:
+        #print "good, the last item ",theList[idx][2]," is present"
+        pass
+    else:
+        #print "oops, last item ",theList[idx][2]," is missing"
+        thePerps[theList[idx][2]]=[0,0]
+
+# ------------------------------------------------------------------------------------------
+
+highways = collections.OrderedDict()    
+loadHighways()
+
+
+# Iterate over all the highway routes
+for route in highways:
+    #print "Starting route: ",route
+    # ---------------------------------------------------------------------------------
+    # ## First, compute the perpendicular vectors for each item 
+    # Compute nearest adjacent for each item (in SAME direction)
+    # We create separate north/south lists so it's easier to locate an adjacent spot
+    northlist = list (highways[route][0].values())
+    southlist = list (highways[route][1].values())
+    northPerps = {}  # a dictionary addressed by postmile that yields perp vectors
+    southPerps = {}
+    #print "northsize is ",northSize, "southsize is ",southSize
+    calcPerpendicularVectors(northlist,northPerps, +1)
+    calcPerpendicularVectors(southlist,southPerps, -1)
+    
+    # -------------------------------------------------------------------------------
+    #print "*****"
+    #print "Perps computed for these up pm's:",sorted(northPerps)
+    #print "Perps computed for these down pm's:",sorted (southPerps)
+    
+    # Try to find matching pairs
+    # Create a match list and add matching postmiles to it.
+    north = highways[route][0]
+    south = highways[route][1]
+    matches = []
+    for item in north:
+        # if south ALSO has item add i to matches list
+        if item in south:
+            #print "match for: " + item
+            matches.append(item)
+    
+    #print "found ",len(matches)," matches."
+    #outFile = open("pairedDots.json","w") # put results here
+    #[0xFF0000,0xFF4000,0xFF8000,0xFFBF00,0xFFFF00,0x00FF00,0x00FFFF,0x0080FF,0x0000FF,0x8000FF,0xFF00FF]
+    colorcode = ["lime","red","salmon","deeppink","coral","orangered","yellow","khaki","purple",
+    "slateblue","lightgreen","cyan","blue","slategray"]
+    colorindex=0
+    for match in matches:
+        # We want to output these as json with matching color
+        id = south[match][0] + " " + south[match][1] + " " + south[match][2]
+        print ("%s,%s,%s,%s,%s,%s,%s" % (id,south[match][3],south[match][4],south[match][5].rstrip(),southPerps[south[match][2]][0],southPerps[south[match][2]][1],colorcode[colorindex]))
+        # lookup perpvector for postmile = south[match][2]
+        #perpx = southPerps[south[match][2]][0]
+        #perpy = southPerps[south[match][2]][1]
+        #print perpx, perpy
+        
+        id = north[match][0] + " " + north[match][1] + " " + north[match][2]
+        print ("%s,%s,%s,%s,%s,%s,%s" % (id,north[match][3],north[match][4],north[match][5].rstrip(),northPerps[north[match][2]][0],northPerps[north[match][2]][1],colorcode[colorindex]))
+        # colorindex = (colorindex+1) % 14 # advance to next color
+        # remove them from future consideration
+        south.pop(match)
+        north.pop(match)
+        
+
+    # -----------------------------------------------------------------------
+    leftover_count = len(north)+len(south)
+    #print "Leftover count:",leftover_count
+    # After we've handled all the "matching" pairs of N/S dots
+    # There will be "leftover" single dots 
+    if (leftover_count > 0):
+        #print "Leftovers ... single dots"
+        #print len(north),"North keys", north.keys()
+        #print len(south),"South keys", south.keys()
+        
+         
+        # Assert: there are no matching keys in the two dictionaries,
+        #         they should have been removed by the previous step.
+        # Merge the two sets of keys into one list,
+        # each entry is the postmile and direction
+        mergedKeys = []
+        upLetter = ''
+        downLetter = ''
+        if len(north) > 0:
+            upLetter = north.items()[0][1][1]
+            for item in north.keys():
+                mergedKeys.append(item + upLetter)
+            #print "north keys after merging and letter assigned:",mergedKeys
+        if len(south) > 0:
+            downLetter = south.items()[0][1][1]
+            for item in south.keys():
+                mergedKeys.append(item + downLetter)
+        
+        
+        #Sort the list of keys in ascending order by postmile
+        leftovers = sorted(mergedKeys)
+        # Create a dictionary of postmiles and assigned color, and init to white
+        pm_colors=collections.OrderedDict()
+        for pm in leftovers:
+            pm_colors[pm] = "white"
+        
+        # Look for adjacent items close together in opposite directions
+        # Give them same color dots and assign perpendicular vectors
+        close_count = 0
+        prev = leftovers.pop(0)
+        prev_dir = prev[-1:]
+        prev_pm = prev[:-1]
+        for curr in leftovers:
+            curr_dir = curr[-1:]
+            curr_pm  = curr[:-1]
+            # Only consider adjacent items in OPPOSITE directions
+            if curr_dir != prev_dir:
+                curr_color = "white"
+                # See if they are close enough to be considered a pair
+                if (abs(float(curr_pm) - float(prev_pm)) <= 0.111):
+                    #print "FOUND CLOSE: ",prev, curr
+                    close_count += 1
+                    # tag the previous item with a colored dot
+                    pm_colors[curr_pm+curr_dir]="lime"
+                    pm_colors[prev_pm+prev_dir]="lime"
+               
+            prev = curr
+            prev_dir = curr_dir
+            prev_pm = curr_pm
+                
+        #print "Counted ",close_count," close pairs"
+        # print all the tagged items as csv with their tagged color
+        for spot in pm_colors:
+            curr_dir = spot[-1:]
+            curr_pm  = spot[:-1]
+            if (curr_dir == upLetter):
+                curr_info = north[curr_pm]
+                curr_perpx = northPerps[north[curr_pm][2]][0]
+                curr_perpy = northPerps[north[curr_pm][2]][1]
+            else:
+                curr_info = south[curr_pm]
+                curr_perpx = southPerps[south[curr_pm][2]][0]
+                curr_perpy = southPerps[south[curr_pm][2]][1]
+            id = curr_info[0] + " " + curr_info[1] + " " + curr_info[2]
+            # white dots have no mate so don't need to be adjusted
+            if (pm_colors[spot]=="white"):
+                px=0
+                py=0
+            else:
+                px=curr_perpx
+                py=curr_perpy
+            # output this spot 
+            print ("%s,%s,%s,%s,%s,%s,%s" % (id,curr_info[3],curr_info[4],curr_info[5].rstrip(),px,py,pm_colors[curr_pm+curr_info[1]]))
+            
+
+    
Index: trunk/webapps/cptms/data_layers/cctv_locations_D12.gjson
===================================================================
--- trunk/webapps/cptms/data_layers/cctv_locations_D12.gjson	(revision 317)
+++ trunk/webapps/cptms/data_layers/cctv_locations_D12.gjson	(revision 317)
@@ -0,0 +1,2847 @@
+{
+  "type": "FeatureCollection",
+  "features": [
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0001",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.978854,33.856288]
+      },
+  "properties":
+      {
+      "locationName":"SB 5 N/O MAGNOLIA AVE (S/O 91)",
+      "nearVDS":"5 S 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0007",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.914631,33.815271]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 HARBOR BLVD",
+      "nearVDS":"5 N 37.38" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0013",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.87515,33.778342]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 RTE 22",
+      "nearVDS":"5 N 33.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0016",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.852357,33.754633]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 GRAND AVE",
+      "nearVDS":"5 N 31.73" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0029",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862294,33.759533]
+      },
+  "properties":
+      {
+      "locationName":"SB 5 17TH ST (7TH)",
+      "nearVDS":"5 S 32.25" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0034",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.72058,33.629051]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 BAKE PKWY (LAKE FOREST)",
+      "nearVDS":"5 N 20" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0035",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.736051,33.645333]
+      },
+  "properties":
+      {
+      "locationName":"SB 5 ENTERPRISE ST /12-405 (235)",
+      "nearVDS":"5 S 21.25" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0084",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.65848,33.504043]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 ORTEGA HWY",
+      "nearVDS":"5 N 9.69" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0086",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.666043,33.522207]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 JUNIPERO SERRA RD",
+      "nearVDS":"5 N 11.05" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0088",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672459,33.559112]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 CROWN VALLEY PKWY (MV)",
+      "nearVDS":"5 N 13.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0089",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.683941,33.601512]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 N/O LA PAZ RD (S/O ALICIA)",
+      "nearVDS":"5 N 16.69" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0090",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671157,33.57996]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 OSO PKWY O/C (MV)",
+      "nearVDS":"5 N 15.13" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0091",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.671303,33.588723]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 N/O OSO PKWY",
+      "nearVDS":"5 N 15.35" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0092",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.676321,33.598609]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 LA PAZ RD( MV)",
+      "nearVDS":"5 N 16.51" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0093",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.690447,33.605404]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 ALICIA PKWY ON ( MV)",
+      "nearVDS":"5 N 17.43" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0094",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692358,33.606105]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 ALICIA PKWY",
+      "nearVDS":"5 N 17.63" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0095",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.705866,33.613607]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 EL TORO RD",
+      "nearVDS":"5 N 18.61" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0097",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.712363,33.619999]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 NO EL TORO RD (CARLOTA)",
+      "nearVDS":"5 N 18.61" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0098",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743837,33.656192]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 ALTON PKWY",
+      "nearVDS":"5 N 22.2" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0102",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.767601,33.689427]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 JEFFREY RD",
+      "nearVDS":"5 N 25.08" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0103",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.775138,33.700849]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 YALE AVE",
+      "nearVDS":"5 N 25.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0104",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.782251,33.710579]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 CULVER DR",
+      "nearVDS":"5 N 26.56" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0105",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795451,33.720267]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 JAMBOREE RD",
+      "nearVDS":"5 N 27.56" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0106",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.803943,33.726048]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 TUSTIN RANCH RD",
+      "nearVDS":"5 N 28.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0107",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.820219,33.736483]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 S/O NEWPORT AVE",
+      "nearVDS":"5 N 29.24" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0108",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880263,33.780901]
+      },
+  "properties":
+      {
+      "locationName":"SB 5 22 FWY",
+      "nearVDS":"5 S 34.3" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0109",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.889408,33.791899]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 STATE COLLEGE BLVD",
+      "nearVDS":"5 N 35.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0110",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.896519,33.797148]
+      },
+  "properties":
+      {
+      "locationName":"SB 5 ORANGEWOOD AVE",
+      "nearVDS":"5 S 35.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0111",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.900379,33.802518]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 KATELLA AVE",
+      "nearVDS":"5 N 36.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0112",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.924056,33.825002]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 WEST ST",
+      "nearVDS":"5 N 38.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0113",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.932136,33.832856]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 LINCOLN AVE",
+      "nearVDS":"5 N 38.9" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0114",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.940608,33.835729]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 EUCLID AVE",
+      "nearVDS":"5 N 39.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0116",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.958552,33.845864]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 BROOKHURST ST",
+      "nearVDS":"5 N 40.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0117",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.968164,33.85056]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 GILBERT ST",
+      "nearVDS":"5 N 40.98" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0118",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.973228,33.853368]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 MAGNOLIA AVE",
+      "nearVDS":"5 N 40.98" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0119",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.986973,33.860337]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 N/O ORANGETHORPE BLVD",
+      "nearVDS":"5 N 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0175",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.908082,33.809042]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 ANAHEIM BL",
+      "nearVDS":"5 N 36.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0188",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991956,33.863328]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 MANCHESTER AVE (S/O STANTON)",
+      "nearVDS":"5 N 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0189",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.969203,33.855307]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 GILBERT ST",
+      "nearVDS":"91 W 0.76" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0190",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.000423,33.867939]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 N/O BEACH BLVD",
+      "nearVDS":"5 N 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0192",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672549,33.548608]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 AVERY PKWY",
+      "nearVDS":"5 N 13.05" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0195",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.777357,33.704308]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 N/O YALE AVE",
+      "nearVDS":"5 N 25.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0197",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.812044,33.731601]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 S/O REDHILL AVE",
+      "nearVDS":"5 N 29.24" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0203",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.009814,33.872934]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 S/O ARTESIA BLVD",
+      "nearVDS":"5 N 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0206",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.593436,33.396516]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 CHRISTIANITOS RD",
+      "nearVDS":"5 N 43.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0209",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.611297,33.428438]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 PRESIDIO DR ON",
+      "nearVDS":"5 N 2.47" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0210",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.61506,33.431966]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 AVENIDA PALIZADA ON",
+      "nearVDS":"5 N 2.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0212",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.628059,33.44293]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 VIA HERMOSA",
+      "nearVDS":"5 N 3.56" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0213",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.641033,33.450736]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 S/O AVENIDA VAQUERO ON",
+      "nearVDS":"5 S 5.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0214",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.65494,33.458616]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 CAMINO DE ESTRELLA ON",
+      "nearVDS":"5 N 5.73" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0217",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674086,33.47531]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 STONEHILL DR (CAPISTRANO/STONEHILL)",
+      "nearVDS":"5 N 7.46" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0218",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.669703,33.481338]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 AVENIDA AEROPUERTO",
+      "nearVDS":"5 N 7.99" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0233",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.663318,33.489288]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 VALLE RD ON (SAN JUAN CREEK)",
+      "nearVDS":"5 N 8.64" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0234",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.658465,33.49746]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 S/O ORTEGA HWY (SAN JUAN CREEK)",
+      "nearVDS":"5 N 9.15" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-005-CCTV-0235",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.674252,33.537283]
+      },
+  "properties":
+      {
+      "locationName":"NB 5 73 FWY (NO LOC DESC)",
+      "nearVDS":"73 N 10.59" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0009",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.08761,33.77432]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 7TH ST",
+      "nearVDS":"22 E 1.08" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0030",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.954659,33.7662]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 BROOKHURST ST",
+      "nearVDS":"22 W 5.57" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0031",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.936602,33.766312]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 EUCLID ST",
+      "nearVDS":"22 W 6.94" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0032",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.921177,33.767824]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 HARBOR BLVD",
+      "nearVDS":"22 W 7.72" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0033",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.890292,33.779268]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 CITY DRIVE",
+      "nearVDS":"22 W 9.69" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0154",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.841851,33.776829]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 CAMBRIDGE ST",
+      "nearVDS":"22 W 12.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0155",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.852236,33.774962]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 GLASSELL ST",
+      "nearVDS":"22 E 12.01" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0156",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.862898,33.778524]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 MAIN ST",
+      "nearVDS":"22 W 11.23" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0158",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.974867,33.766151]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 MAGNOLIA ST",
+      "nearVDS":"22 E 4.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0159",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.966973,33.766112]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 MAGNOLIA ST",
+      "nearVDS":"22 W 4.99" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0160",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.98756,33.771132]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 BEACH BLVD",
+      "nearVDS":"22 W 3.73" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0161",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004695,33.772847]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 KNOTT AVE",
+      "nearVDS":"22 E 2.88" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0162",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.010054,33.774904]
+      },
+  "properties":
+      {
+      "locationName":"WB 22 KNOTT AVE",
+      "nearVDS":"22 W 2.49" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0163",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.036332,33.774126]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 VALLEY VIEW AVE",
+      "nearVDS":"22 E 1.08" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-022-CCTV-0164",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.029072,33.774096]
+      },
+  "properties":
+      {
+      "locationName":"EB 22 LOS ALISOS ST",
+      "nearVDS":"22 E 1.75" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0011",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.896617,33.663818]
+      },
+  "properties":
+      {
+      "locationName":"SB 55 DEL MAR AVE",
+      "nearVDS":"55 S 3.97" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0019",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83171,33.748952]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 4TH ST",
+      "nearVDS":"55 N 11.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0020",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.833377,33.734188]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 MCFADDEN AVE",
+      "nearVDS":"55 N 9.84" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0021",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83549,33.724804]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 EDINGER AVE",
+      "nearVDS":"55 N 9.41" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0022",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.844637,33.715353]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 WARNER AVE ",
+      "nearVDS":"55 N 8.12" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0024",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.872133,33.687102]
+      },
+  "properties":
+      {
+      "locationName":"SB 55 @RTE405",
+      "nearVDS":"55 S 5.87" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0198",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.83151,33.776856]
+      },
+  "properties":
+      {
+      "locationName":"SB 55 RTE 22 ",
+      "nearVDS":"22 S 12.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0199",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830684,33.787286]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 CHAPMAN AVE  ",
+      "nearVDS":"55 N 13.9" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0200",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830589,33.795054]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 WALNUT ST",
+      "nearVDS":"55 N 14.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0201",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831286,33.802195]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 COLLINS AVE",
+      "nearVDS":"55 N 14.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0202",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831647,33.809678]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 KATELLA AVE",
+      "nearVDS":"55 N 15.22" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0204",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.831697,33.8211]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 S/O MEATS AVE",
+      "nearVDS":"55 N 15.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0230",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.830642,33.760736]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 17TH ST",
+      "nearVDS":"55 N 11.74" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0238",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.903363,33.656942]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 WILSON ST",
+      "nearVDS":"55 N 3.07" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0239",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.896594,33.663803]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 DEL MAR AVE EXT",
+      "nearVDS":"55 N 3.97" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0240",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.887367,33.672201]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 RTE 73",
+      "nearVDS":"55 N 4.58" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-055-CCTV-0241",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879191,33.679691]
+      },
+  "properties":
+      {
+      "locationName":"NB 55 N/O BAKER ST",
+      "nearVDS":"55 N 5.51" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0006",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875914,33.817703]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 BALL ROAD",
+      "nearVDS":"57 N 13.38" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0078",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879724,33.804529]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 KATELLA AVE",
+      "nearVDS":"57 N 12.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0079",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875687,33.838806]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 LINCOLN AVE",
+      "nearVDS":"57 N 14.9" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0080",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876881,33.861713]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 ORANGETHORPE AVE",
+      "nearVDS":"57 N 16.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0081",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.882671,33.908933]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 IMPERIAL HWY",
+      "nearVDS":"57 N 19.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0082",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879931,33.925622]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 LAMBERT ST",
+      "nearVDS":"57 N 21.16" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0170",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879631,33.788891]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 CHAPMAN AVE (ORANGE)",
+      "nearVDS":"57 N 11.39" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0174",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877786,33.795003]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 ORANGEWOOD AVE ON",
+      "nearVDS":"57 N 11.78" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0176",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875742,33.829361]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 N/O WAGNER AVE",
+      "nearVDS":"57 N 14.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0177",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875195,33.853343]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 S/O MIRALOMA OC",
+      "nearVDS":"57 N 15.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0179",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.879935,33.878329]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 NUTWOOD ST",
+      "nearVDS":"57 N 17.75" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0180",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880176,33.886838]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 YORBA LINDA BLVD",
+      "nearVDS":"57 N 18.3" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0181",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880654,33.896878]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 BASTANCHURY RD U/C",
+      "nearVDS":"57 N 18.85" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0182",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.880614,33.903664]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 ROLLING HILLS RD U/C",
+      "nearVDS":"57 N 19.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0184",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877571,33.936656]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 S/O OF TONNER CYN RD",
+      "nearVDS":"57 N 22" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-057-CCTV-0185",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.873021,33.942227]
+      },
+  "properties":
+      {
+      "locationName":"NB 57 N/O OF TONNER CYN RD",
+      "nearVDS":"57 N 22" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0036",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.871756,33.660494]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE S/O BIRCH ST OC",
+      "nearVDS":"73 N 25.25" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0037",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.876874,33.664063]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE N/O CAMPUS DR OC",
+      "nearVDS":"73 N 25.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0038",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.881313,33.668317]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE N/O REDHILL AVE OC",
+      "nearVDS":"73 N 26.3" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0323",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.675181,33.548847]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE N/O PASEO DE COLINAS UC",
+      "nearVDS":"73 N 10.9" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0324",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.680935,33.55741]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE N/O CROWN VALLEY PKWY UC",
+      "nearVDS":"73 N 11.64" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0325",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.686227,33.557935]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O GREENFIELD DR UC",
+      "nearVDS":"73 S 11.64" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0326",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.694375,33.562525]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O MOULTON PKWY UC",
+      "nearVDS":"73 S 12.31" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0327",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.700945,33.568845]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O MOULTON PKWY UC",
+      "nearVDS":"73 S 12.83" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0328",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.706928,33.574398]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE N/O LA PAZ RD UC",
+      "nearVDS":"73 N 13.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0329",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.712169,33.575399]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE AT ALICIA PKWY OC",
+      "nearVDS":"73 S 13.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0330",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.721302,33.579841]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 AT ALICIA CREEK RD",
+      "nearVDS":"73 S 14.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0331",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.727036,33.584186]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O LAGUNA HILLS DR OC",
+      "nearVDS":"73 S 14.95" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0332",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.729707,33.585833]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O LAGUNA HILLS DR OC",
+      "nearVDS":"73 S 14.95" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0333",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.733732,33.586721]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE AT GLENWOOD DR OC",
+      "nearVDS":"73 S 15.26" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0334",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.742929,33.588659]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 OFF-RAMP EL ORO RD",
+      "nearVDS":"73 N 15.96" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0335",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.752728,33.590686]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O EL TORO RD UC",
+      "nearVDS":"73 S 16.25" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0336",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.761235,33.593968]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 CD N/O LAGUNA CYN RD UC",
+      "nearVDS":"73 N 16.98" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0337",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.766831,33.596703]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O LAGUNA CYN RD UC",
+      "nearVDS":"73 S 17.2" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0338",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.774951,33.598749]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O LAGUNA CYN RD UC",
+      "nearVDS":"73 S 17.95" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0339",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.784155,33.601875]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O MAINLINE  TOLL PLAZA",
+      "nearVDS":"73 S 18.3" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0340",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.793286,33.603469]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE MAINLINE  TOLL PLAZA",
+      "nearVDS":"73 S 18.59" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0341",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.80219,33.607345]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O MAINLINE  TOLL PLAZA",
+      "nearVDS":"73 S 19.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0342",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.809641,33.609245]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O MAINLINE  TOLL PLAZA",
+      "nearVDS":"73 S 19.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0343",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.817046,33.61224]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE N/O NEWPORT COAST DR",
+      "nearVDS":"73 S 20.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0344",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.82075,33.61839]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O NEWPORT COAST DR",
+      "nearVDS":"73 S 20.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0345",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.826751,33.622219]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O NEWPORT COAST DR",
+      "nearVDS":"73 S 21.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0348",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.850209,33.633938]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE S/O BISON AVE OC",
+      "nearVDS":"73 N 22.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0349",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856893,33.637364]
+      },
+  "properties":
+      {
+      "locationName":"SB 73 MAINLINE S/O BISON AVE OC",
+      "nearVDS":"73 S 23.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0350",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.860997,33.649389]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE S/O UNIVERSITY DR UC",
+      "nearVDS":"73 N 24.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-073-CCTV-0351",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.864363,33.655668]
+      },
+  "properties":
+      {
+      "locationName":"NB 73 MAINLINE JAMBOREE RD",
+      "nearVDS":"73 N 24.78" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0002",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.996981,33.856318]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 BEACH BLVD",
+      "nearVDS":"91 S 2.6" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0003",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.875531,33.849091]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 FROM NB 57 FWY",
+      "nearVDS":"57 W 15.1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0004",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.755142,33.868618]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 SCALE HOUSE",
+      "nearVDS":"91 N 13.349" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0040",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.960547,33.85364]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 BROOKHURST ST",
+      "nearVDS":"91 E 1" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0132",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.925913,33.853529]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 HARBOR BLVD",
+      "nearVDS":"91 E 2.76" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0133",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.877382,33.85074]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 W/O 57 FWY",
+      "nearVDS":"91 S 6.15" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0134",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.905447,33.853636]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 RAYMOND AVE",
+      "nearVDS":"91 E 4.35" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0136",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88971,33.854469]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 STATE COLLEGE BLVD",
+      "nearVDS":"91 W 5.14" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0138",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.865722,33.846664]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 WEST / KRAEMER BLVD",
+      "nearVDS":"91 S 6.42" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0139",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.856992,33.847835]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 KRAEMER BLVD",
+      "nearVDS":"91 S 7.31" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0140",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.84781,33.849603]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 E/O GLASSELL ST",
+      "nearVDS":"91 N 7.86" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0168",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.939807,33.853928]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 EUCLID AVE",
+      "nearVDS":"91 E 2.4" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0169",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.913598,33.853545]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 LEMON ST",
+      "nearVDS":"91 E 3.91" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0186",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.976555,33.857786]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 MAGNOLIA ST",
+      "nearVDS":"91 S 3.87" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-091-CCTV-0187",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.991199,33.856405]
+      },
+  "properties":
+      {
+      "locationName":"WB 91 STANTON AVE",
+      "nearVDS":"91 S 3.13" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-133-CCTV-0281",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.753128,33.674225]
+      },
+  "properties":
+      {
+      "locationName":"NB 133 MAINLINE S/O MARINE WAY UC",
+      "nearVDS":"133 N 10.05" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-133-CCTV-0282",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747372,33.682511]
+      },
+  "properties":
+      {
+      "locationName":"NB 133 MAINLINE S/O TRABUCO RD OC",
+      "nearVDS":"133 N 10.73" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-133-CCTV-0283",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.741213,33.689945]
+      },
+  "properties":
+      {
+      "locationName":"NB 133 MAINLINE N/O TRABUCO RD OC",
+      "nearVDS":"133 N 11.35" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-133-CCTV-0284",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.73443,33.697916]
+      },
+  "properties":
+      {
+      "locationName":"NB 133 MAINLINE N/O IRVINE BLVD OC",
+      "nearVDS":"133 N 12.05" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-133-CCTV-0286",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.723978,33.710062]
+      },
+  "properties":
+      {
+      "locationName":"NB 133 MAINLINE S/O TOLL PLAZA",
+      "nearVDS":"133 N 13.04" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0243",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.598608,33.630297]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE N/O ANTONIO PKWY OC",
+      "nearVDS":"241 N 17.8" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0244",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.600239,33.636571]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 530M N/O ANTONIO PKWY UC",
+      "nearVDS":"241 N 18.08" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0245",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.603729,33.643258]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE N/O SANTA MARGARITA PKWY UC",
+      "nearVDS":"241 N 18.7" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0246",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.611452,33.651815]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 30M S/O MELINDA ROAD UC",
+      "nearVDS":"241 N 19.3" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0248",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.636511,33.661742]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 50M S/O EL TORO ROAD UC",
+      "nearVDS":"241 N 20.54" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0249",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.650129,33.667893]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 80M S/O PORTOLA PKWY UC",
+      "nearVDS":"241 N 21.93" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0250",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.660133,33.671906]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 40M S/O LAKE FOREST DRIVE UC",
+      "nearVDS":"241 N 22.61" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0251",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.667583,33.674971]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 310M N/O BAKE PKWY OC",
+      "nearVDS":"241 N 22.81" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0252",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.672888,33.679788]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 80M S/O ALTON PKWY OC",
+      "nearVDS":"241 N 23.54" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0253",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.685156,33.690893]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 780M S/O PORTOLA PKWY OC",
+      "nearVDS":"241 N 24.16" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0287",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71968,33.711523]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 750M S/O BEE CANYON ROAD",
+      "nearVDS":"241 N 27.12" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0288",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.719744,33.719646]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 50M S/O BEE CANYON ROAD",
+      "nearVDS":"241 N 27.43" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0290",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.718347,33.730086]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 800M S/O HAUL ROAD",
+      "nearVDS":"241 N 28.09" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0291",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717392,33.738584]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 180M N/O HAUL ROAD",
+      "nearVDS":"241 N 28.73" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0292",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.720683,33.745969]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 500M S/O SOUTH CULVER DR",
+      "nearVDS":"241 N 29.34" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0293",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728454,33.750679]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 400M N/O SOUTH CULVER DR",
+      "nearVDS":"241 N 30" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0294",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732525,33.756022]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 600M S/O NORTH CULVER DR",
+      "nearVDS":"241 N 30.33" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0295",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.732833,33.765479]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 430M N/O NORTH CULVER DR",
+      "nearVDS":"241 N 31.03" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0296",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.740576,33.771529]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 1400M N/O NORTH CULVER DR",
+      "nearVDS":"241 N 31.44" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0297",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.747403,33.778289]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 230M S/O SANTIAGO CANYON ROAD OC",
+      "nearVDS":"241 N 32.29" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0298",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.743724,33.787057]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 900M N/O SANTIAGO CANYON ROAD OC",
+      "nearVDS":"241 N 32.97" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0299",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728829,33.796356]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 1700M N/O SANTIAGO CANYON ROAD OC",
+      "nearVDS":"241 N 34.03" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0300",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.728834,33.796359]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 2600M N/O SANTIAGO CANYON ROAD OC",
+      "nearVDS":"241 N 34.03" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0301",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.723634,33.806983]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 2000M S/O WINDY RIDGE TOLL PLAZA",
+      "nearVDS":"241 N 34.72" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0302",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.71823,33.816073]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 920M S/O WINDY RIDGE TOLL PLAZA",
+      "nearVDS":"241 N 35.43" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0303",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716542,33.830029]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 600M N/O WINDY RIDGE TOLL PLAZA",
+      "nearVDS":"241 N 36.37" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0304",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717288,33.835075]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 1200M N/O WINDY RIDGE TOLL PLAZA",
+      "nearVDS":"241 N 36.82" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0305",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716851,33.844549]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 2300M N/O WINDY RIDGE TOLL PLAZA",
+      "nearVDS":"241 N 37.49" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0306",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.716682,33.855312]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 1100M S/O STATE ROUTE 91",
+      "nearVDS":"241 N 37.88" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0307",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.715309,33.862572]
+      },
+  "properties":
+      {
+      "locationName":"EB 91 TO SB 241 CONNECTOR",
+      "nearVDS":"241 N 37.88" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0308",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.717847,33.863899]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 TO EB 91 CONNECTOR",
+      "nearVDS":"241 N 37.88" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-241-CCTV-0320",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.692798,33.696032]
+      },
+  "properties":
+      {
+      "locationName":"NB 241 MAINLINE 40M N/O PORTOLA PKWY",
+      "nearVDS":"241 N 25.15" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0310",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.795251,33.717511]
+      },
+  "properties":
+      {
+      "locationName":"SB 261 MAINLINE 200M S/O 5 ",
+      "nearVDS":"261 S 0.5" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0311",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.786551,33.721729]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 100M S/O BRYAN AVE OC",
+      "nearVDS":"261 N 0.9" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0312",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.779771,33.725374]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 70M S/O IRVINE BLVD OC",
+      "nearVDS":"261 N 1.75" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0313",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.772494,33.733485]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 370M N/O IRVINE BLVD NB TOLL PLAZA",
+      "nearVDS":"261 N 2.24" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0314",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.766989,33.740207]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 80M S/O PORTOLA PKWY (WEST) OC",
+      "nearVDS":"261 N 2.71" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0315",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.764467,33.748823]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 940M N/O PORTOLA PKWY (WEST) OC",
+      "nearVDS":"261 N 3.51" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0316",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.762075,33.757372]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 1900M N/O PORTOLA PKWY(WEST) OC",
+      "nearVDS":"261 N 4.14" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0317",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.758822,33.763138]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 1500M S/O HANDY CREEK RD",
+      "nearVDS":"261 N 4.46" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-261-CCTV-0319",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.75298,33.780309]
+      },
+  "properties":
+      {
+      "locationName":"NB 261 MAINLINE 290 M N/O HANDY CREEK RD",
+      "nearVDS":"261 N 5.64" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0141",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.88585,33.687014]
+      },
+  "properties":
+      {
+      "locationName":"SB 405 N/O BRISTOL ST",
+      "nearVDS":"405 S 9.54" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0144",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.075248,33.774809]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 SEAL BEACH BLVD",
+      "nearVDS":"405 N 22.55" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0146",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.091858,33.785005]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 S/O 605 ",
+      "nearVDS":"405 N 24.12" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0220",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.939242,33.697694]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 S/O EUCLID ST",
+      "nearVDS":"405 N 12.85" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0222",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.953395,33.70498]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 BROOKHURST ST",
+      "nearVDS":"405 N 13.74" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0224",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.967882,33.717071]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 WARNER  AVE",
+      "nearVDS":"405 N 14.82" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0225",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.977332,33.724707]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 S/O NEWLAND ST",
+      "nearVDS":"405 N 15.39" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-405-CCTV-0227",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.004946,33.74515]
+      },
+  "properties":
+      {
+      "locationName":"NB 405 GOLDENWEST  AVE",
+      "nearVDS":"405 N 17.92" 
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "12-605-CCTV-0147",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-118.086796,33.794792]
+      },
+  "properties":
+      {
+      "locationName":"NB 605 S/O KATELLA AVE",
+      "nearVDS":"605 N 1.26" 
+      }
+  }
+]
+}
Index: trunk/webapps/cptms/data_layers/vdsIDs_notIn_model.txt
===================================================================
--- trunk/webapps/cptms/data_layers/vdsIDs_notIn_model.txt	(revision 352)
+++ trunk/webapps/cptms/data_layers/vdsIDs_notIn_model.txt	(revision 352)
@@ -0,0 +1,458 @@
+1 N 12.39
+1 N 12.78
+1 N 13.36
+1 N 16.43
+1 N 17.01
+1 N 17.62
+1 N 18.07
+1 N 18.83
+1 N 19.51
+1 N 20.03
+1 S 12.39
+1 S 12.78
+1 S 13.36
+1 S 16.43
+1 S 17.01
+1 S 17.62
+1 S 18.07
+1 S 18.83
+1 S 19.51
+1 S 20.03
+5 N 10.7
+5 N 11.06
+5 N 1.24
+5 N 12.8
+5 N 13.06
+5 N 13.57
+5 N 13.71
+5 N 13.88
+5 N 14.46
+5 N 15.14
+5 N 15.36
+5 N 15.8
+5 N 16.37
+5 N 16.52
+5 N 16.7
+5 N 17.44
+5 N 17.64
+5 N 18.17
+5 N 1.84
+5 N 18.62
+5 N 18.82
+5 N 18.83
+5 N 19.33
+5 N 20.23
+5 N 23.69
+5 N 2.45
+5 N 27.7
+5 N 28.98
+5 N 30.6
+5 N 30.9
+5 N 31
+5 N 31.602
+5 N 31.9
+5 N 32.25
+5 N 33.3
+5 N 33
+5 N 33.6
+5 N 34.4
+5 N 34.6
+5 N 35.4
+5 N 38
+5 N 39.09
+5 N 4.02
+5 N 4.1
+5 N 41.34
+5 N 41.8
+5 N 41.9
+5 N 42.52
+5 N 42.7
+5 N 43.28
+5 N 43.3
+5 N 43.6
+5 N 43.9
+5 N 44.35
+5 N 4.7
+5 N 5.25
+5 N 6.8
+5 N 9.4
+5 N 9.67
+5 S 11.05
+5 S 13.05
+5 S 13.87
+5 S 14.46
+5 S 15.8
+5 S 18.17
+5 S 19.33
+5 S 20.23
+5 S 21.92
+5 S 23.2
+5 S 23.3
+5 S 26.81
+5 S 28.35
+5 S 29.79
+5 S 29.94
+5 S 30.6
+5 S 31
+5 S 32
+5 S 32.58
+5 S 33.6
+5 S 34.2
+5 S 34
+5 S 34.4
+5 S 36.4
+5 S 37.7
+5 S 4.1
+5 S 41.34
+5 S 41.81
+5 S 41.8
+5 S 41.9
+5 S 42.52
+5 S 42.7
+5 S 43.3
+5 S 43
+5 S 43.6
+5 S 43.9
+5 S 44.2
+5 S 4.7
+5 S 5.25
+5 S 9.69
+22 E 0.2
+22 E 10.35
+22 E 12.25
+22 E 12.7
+22 E 1.41
+22 E 1.74
+22 E 2.07
+22 E 2.71
+22 E 4.03
+22 E 4.34
+22 E 5.57
+22 E 6.05
+22 E 6.34
+22 E 6.61
+22 E 7.3
+22 E 7.72
+22 E 8.3
+22 E 9.44
+22 E 9.9
+22 W 0.2
+22 W 10.35
+22 W 12.25
+22 W 1.41
+22 W 1.74
+22 W 2.07
+22 W 2.71
+22 W 4.03
+22 W 4.34
+22 W 5.77
+22 W 6.05
+22 W 6.34
+22 W 6.61
+22 W 7.3
+22 W 8.3
+22 W 9.44
+55 N 10
+55 N 12.3
+55 N 2.7
+55 N 3.091
+55 N 5.8
+55 N 6.1
+55 N 6.35
+55 N 7.16
+55 N 8.6
+55 S 10
+55 S 10.84
+55 S 12.3
+55 S 15.22
+55 S 17.12
+55 S 3.96
+55 S 5.8
+55 S 6.35
+55 S 8.6
+57 N 10.8
+57 N 11.2
+57 N 11.3
+57 N 12.7
+57 N 12.9
+57 N 13.3
+57 N 13.5
+57 N 14.7
+57 N 15.7
+57 N 16.11
+57 N 17
+57 N 17.7
+57 N 18.5
+57 N 20
+57 N 21.1
+57 S 11.2
+57 S 12.9
+57 S 15.4
+57 S 15.7
+57 S 16.11
+57 S 17
+57 S 20.7
+57 S 22
+73 N 11.8
+73 N 12.1
+73 N 13.2
+73 N 13.38
+73 N 13.9
+73 N 15.9
+73 N 16.6
+73 N 23.73
+73 N 24.68
+73 N 26.791
+73 N 27.2
+73 S 11.8
+73 S 12.1
+73 S 12.9
+73 S 13.2
+73 S 15.9
+73 S 16.2
+73 S 16.6
+73 S 26.72
+73 S 27.4
+74 E 0.241
+74 E 0.77
+74 E 10.01
+74 E 1.01
+74 E 1.277
+74 E 1.33
+74 E 1.503
+74 E 3.39
+74 E 3.98
+74 E 4.79
+74 E 5.95
+74 E 6.35
+74 E 6.98
+74 E 7.33
+74 E 8.03
+74 E 8
+74 E 8.43
+74 E 9.7
+74 W 0.241
+74 W 0.77
+74 W 10.01
+74 W 1.01
+74 W 1.277
+74 W 3.39
+74 W 3.98
+74 W 4.79
+74 W 5.95
+74 W 6.35
+74 W 6.98
+74 W 7.33
+74 W 8.03
+74 W 8
+74 W 8.43
+74 W 9.7
+91 E 10.1
+91 E 1.12
+91 E 11.5
+91 E 1.32
+91 E 14.4
+91 E 14.6
+91 E 18
+91 E 2.11
+91 E 3.13
+91 E 3
+91 E 3.4
+91 E 4.8
+91 E 5.14
+91 E 5.5
+91 W 0.4
+91 W 0.45
+91 W 10.1
+91 W 11.3
+91 W 11.5
+91 W 11.6
+91 W 1.32
+91 W 14.2
+91 W 14.5
+91 W 18.1
+91 W 18
+91 W 3
+91 W 3.4
+91 W 4.8
+91 W 5.5
+91 W 6.05
+91 W 6.82
+91 W 9.9
+133 N 11.6
+133 N 12
+133 N 4.34
+133 N 4.5
+133 N 4.79
+133 N 5.3
+133 N 5.81
+133 N 6
+133 N 6.37
+133 N 6.81
+133 N 7.35
+133 N 7.72
+133 N 7.76
+133 N 8.732
+133 N 8.866
+133 S 4
+133 S 4.38
+133 S 4.81
+133 S 4.8
+133 S 5.26
+133 S 5
+133 S 5.81
+133 S 6.38
+133 S 6.8
+142 E 0.753
+142 E 0.975
+142 E 1.41
+142 E 1.768
+142 E 2.11
+142 E 2.2
+142 E 2.8
+142 E 2.84
+142 E 3.6
+142 E 3.81
+142 E 3.8
+142 E 4.2
+142 E 4.81
+142 E 4.82
+142 E 4.84
+142 E 5.49
+142 E 5.5
+142 E 6
+142 W 0.753
+142 W 0.975
+142 W 1.41
+142 W 1.76
+142 W 1.768
+142 W 2.11
+142 W 2.2
+142 W 2.61
+142 W 2.8
+142 W 2.84
+142 W 3.6
+142 W 3.81
+142 W 3.8
+142 W 4.2
+142 W 4.81
+142 W 4.84
+142 W 5.49
+142 W 5.5
+241 N 17.9
+241 N 19.86
+241 N 22.71
+241 N 22.91
+241 N 23.3
+241 N 23.65
+241 N 24.26
+241 N 24.8
+241 N 25.53
+241 N 26.05
+241 N 26.4
+241 N 27.22
+241 N 27.53
+241 N 27.84
+241 N 28.19
+241 N 30.1
+241 N 30.43
+241 N 30.82
+241 N 31.13
+241 N 31.54
+241 N 32.39
+241 N 32.81
+241 N 33.45
+241 N 33.78
+241 N 34.82
+241 N 38.23
+241 N 38.31
+241 S 17.8
+241 S 17.9
+241 S 18.7
+241 S 19.86
+241 S 21.61
+241 S 21.71
+241 S 22.12
+241 S 22.71
+241 S 22.91
+241 S 23.3
+241 S 23.65
+241 S 24.26
+241 S 24.8
+241 S 25.53
+241 S 25.82
+241 S 26.4
+241 S 27.22
+241 S 27.53
+241 S 27.84
+241 S 28.19
+241 S 30.1
+241 S 30.43
+241 S 30.82
+241 S 31.13
+241 S 31.54
+241 S 32.39
+241 S 32.81
+241 S 33.45
+241 S 33.78
+241 S 34.82
+241 S 38.64
+405 N 0.6
+405 N 10.1
+405 N 10.48
+405 N 11.247
+405 N 11.6
+405 N 12.712
+405 N 13.122
+405 N 14.571
+405 N 15
+405 N 15.66
+405 N 16.025
+405 N 1.73
+405 N 18.696
+405 N 19.631
+405 N 20.341
+405 N 21.039
+405 N 21.552
+405 N 21.912
+405 N 22.887
+405 N 23.133
+405 N 23.19
+405 N 23
+405 N 23.641
+405 N 23.929
+405 N 2.89
+405 N 2.99
+405 N 8.35
+405 N 8.7
+405 N 9.2
+405 N 9.9
+405 S 0.6
+405 S 10.3
+405 S 11.53
+405 S 12.63
+405 S 13.123
+405 S 14.539
+405 S 15
+405 S 15.722
+405 S 16.978
+405 S 1.73
+405 S 18
+405 S 18.689
+405 S 19.641
+405 S 20.336
+405 S 21.032
+405 S 21.519
+405 S 21.864
+405 S 23.093
+405 S 23.12
+405 S 23.262
+405 S 23.646
+405 S 23.7
+405 S 23.919
+405 S 6.1
+405 S 8.35
+405 S 9.2
+405 S 9.9
+605 N 1.1
+605 S 1.1
Index: trunk/webapps/cptms/data_layers/d12_vds_meta.csv
===================================================================
--- trunk/webapps/cptms/data_layers/d12_vds_meta.csv	(revision 317)
+++ trunk/webapps/cptms/data_layers/d12_vds_meta.csv	(revision 317)
@@ -0,0 +1,2540 @@
+ID	Fwy	Dir	District	County	City	State_PM	Abs_PM	Latitude	Longitude	Length	Type	Lanes	Name	User_ID_1	User_ID_2	User_ID_3	User_ID_4
+1201044	133	S	12	59	36770	9	8.991	33.66184	-117.7553		OR	1	BARRANCA2	565			
+1201052	133	S	12	59	36770	9	8.991	33.66184	-117.7553		FR	1	BARRANCA 2	565			
+1201054	133	S	12	59	36770	9	8.991	33.66184	-117.7553	1.285	ML	3	BARRANCA2	565			
+1201058	133	N	12	59	36770	8.866	8.857	33.659542	-117.756294		OR	1	BARRANCA1	551			
+1201064	133	N	12	59	36770	8.732	8.723	33.657392	-117.757636		FR	1	BARRANCA 1	551			
+1201066	133	N	12	59	36770	9	8.991	33.661697	-117.754967	.67	ML	2	BARRANCA1	551			
+1201070	133	N	12	59	36770	9.1	9.091	33.663305	-117.753976		OR	1	BARRANCA2	553			
+1201076	133	N	12	59	36770	9.1	9.091	33.663305	-117.753976	.185	ML	3	BARRANCA2	553			
+1201081	405	S	12	59	36770	.77	.54	33.647015	-117.744091		OR	1	IRVINE C1	1414			
+1201085	405	S	12	59	36770	.77	.54	33.647015	-117.744091	.18	HV	1	IRVINE C1	1414			
+1201087	405	S	12	59	36770	.77	.54	33.647015	-117.744091	.18	ML	5	IRVINE C1	1414			
+1201093	405	N	12	59	36770	.93	.7	33.64809	-117.746598		OR	1	IRVINE C1	1331			
+1201098	405	N	12	59	36770	.93	.7	33.64809	-117.746598		FR	2	IRVINE C1	1331			
+1201100	405	N	12	59	36770	.93	.7	33.64809	-117.746598	.255	ML	5	IRVINE C1	1331			
+1201106	405	S	12	59	36770	.96	.73	33.64795	-117.747203		OR	1	IRVINE C2	1413			
+1201110	405	S	12	59	36770	.96	.73	33.64795	-117.747203	.4	HV	1	IRVINE C2	1413			
+1201112	405	S	12	59	36770	.96	.73	33.64795	-117.747203	.4	ML	4	IRVINE C2	1413			
+1201118	405	S	12	59	36770	.6	.37	33.646186	-117.741301	.455	ML	5	N OF 5	2436			
+1201120	405	N	12	59	36770	1.11	.88	33.648958	-117.74955		OR	1	IRVINE C2	1332			
+1201125	405	N	12	59	36770	1.11	.88	33.648958	-117.74955	.32	ML	6	IRVINE C2	1332			
+1201131	405	S	12	59	36770	1.57	1.34	33.650789	-117.757205	.485	HV	1	N OF 133	2474			
+1201134	405	S	12	59	36770	1.93	1.7	33.651837	-117.763315	.39	HV	2	S OF 133	2475			
+1201137	405	S	12	59	36770	2.88	2.65	33.657534	-117.778085		OR	1	SAND CANYON	1560			
+1201143	405	S	12	59	36770	2.88	2.65	33.657534	-117.778085	.48	HV	1	SAND CANYON	1560			
+1201145	405	S	12	59	36770	2.88	2.65	33.657534	-117.778085	.48	ML	4	SAND CANYON	1560			
+1201151	405	N	12	59	36770	2.99	2.76	33.658747	-117.77939		OR	1	SAND CANYON 2	1551			
+1201157	405	N	12	59	36770	2.99	2.76	33.658747	-117.77939	.21	HV	2	SAND CANYON	1551			
+1201159	405	N	12	59	36770	3.04	2.81	33.659163	-117.780107	.21	ML	5	SAND CANYON	1551			
+1201165	405	S	12	59	36770	3.84	3.61	33.66293	-117.793047		OR	1	JEFFREY 1	1410			
+1201171	405	S	12	59	36770	3.84	3.61	33.66293	-117.793047	.36	ML	4	JEFFREY 1	1410			
+1201177	405	N	12	59	36770	3.86	3.63	33.663379	-117.793258		OR	1	JEFFREY 1	1335			
+1201181	405	N	12	59	36770	3.86	3.63	33.663379	-117.793258		FR	2	JEFFREY 1	1335			
+1201183	405	N	12	59	36770	3.86	3.63	33.663379	-117.793258	.36	HV	1	JEFFREY 1	1335			
+1201185	405	N	12	59	36770	3.86	3.63	33.663379	-117.793258	.36	ML	4	JEFFREY 1	1335			
+1201191	405	S	12	59	36770	4.03	3.8	33.663404	-117.796283		OR	1	JEFFREY 2	1409			
+1201195	405	S	12	59	36770	4.03	3.8	33.663404	-117.796283		FR	1	JEFFREY 2	1409			
+1201197	405	S	12	59	36770	4.03	3.8	33.663404	-117.796283	.585	ML	4	JEFFREY 2	1409			
+1201203	405	N	12	59	36770	4.03	3.8	33.663798	-117.796176		OR	1	JEFFREY 2	1336			
+1201209	405	N	12	59	36770	4.03	3.8	33.663798	-117.796176	.575	HV	1	JEFFREY 2	1336			
+1201211	405	N	12	59	36770	4.03	3.8	33.663798	-117.796176	.575	ML	4	JEFFREY 2	1336			
+1201217	405	S	12	59	36770	5.01	4.78	33.666093	-117.81298	.51	ML	4	YALE	2603			
+1201222	405	N	12	59	36770	5.01	4.78	33.666407	-117.812902	.51	ML	4	YALE	2603			
+1201227	405	S	12	59	36770	5.01	4.78	33.666093	-117.81298	.51	HV	1	YALE	2603			
+1201229	405	N	12	59	36770	5.01	4.78	33.666407	-117.812902	.51	HV	1	YALE	2603			
+1201232	405	S	12	59	36770	5.5	5.27	33.668738	-117.820882		OR	1	CULVER 1	1408			
+1201238	405	S	12	59	36770	5.5	5.27	33.668738	-117.820882	.32	HV	1	CULVER 1	1408			
+1201240	405	S	12	59	36770	5.5	5.27	33.668738	-117.820882	.32	ML	4	CULVER 1	1408			
+1201246	405	N	12	59	36770	5.55	5.32	33.669218	-117.821657		OR	1	CULVER 1	1341			
+1201251	405	N	12	59	36770	5.55	5.32	33.669218	-117.821657		FR	2	CULVER 1	1341			
+1201254	405	N	12	59	36770	5.55	5.32	33.669218	-117.821657	.345	ML	4	CULVER 1	1341			
+1201259	405	N	12	59	36770	5.55	5.32	33.669218	-117.821657	.345	HV	1	CULVER 1	1341			
+1201262	405	S	12	59	36770	5.69	5.46	33.669737	-117.823958		OR	1	CULVER 2	1407			
+1201266	405	S	12	59	36770	5.69	5.46	33.669737	-117.823958		FR	1	CULVER 2	1407			
+1201268	405	S	12	59	36770	5.69	5.46	33.669737	-117.823958	.3	HV	1	CULVER 2	1407			
+1201270	405	S	12	59	36770	5.69	5.46	33.669737	-117.823958	.355	ML	4	CULVER 2	1407			
+1201276	405	N	12	59	36770	5.74	5.51	33.670291	-117.824699		OR	1	CULVER 2	1342			
+1201281	405	N	12	59	36770	5.74	5.51	33.670291	-117.824699	.33	HV	1	CULVER 2	1342			
+1201283	405	N	12	59	36770	5.74	5.51	33.670291	-117.824699	.33	ML	5	CULVER 2	1342			
+1201290	405	S	12	59	36770	6.1	5.87	33.671983	-117.830554	.555	HV	1	HARVARD	2602			
+1201292	405	S	12	59	36770	6.21	5.98	33.672571	-117.832329	.555	ML	6	HARVARD	2602			
+1201298	405	N	12	59	36770	6.21	5.98	33.672851	-117.832271	.555	ML	5	HARVARD	2602			
+1201304	405	N	12	59	36770	6.21	5.98	33.672851	-117.832271	.555	HV	1	HARVARD	2602			
+1201307	405	S	12	59	36770	6.8	6.57	33.675863	-117.84179		OR	2	JAMBOREE1	1406			
+1201313	405	S	12	59	36770	6.8	6.57	33.675863	-117.84179	.455	HV	1	JAMBOREE 1	1406			
+1201315	405	S	12	59	36770	6.8	6.57	33.675863	-117.84179	.4	ML	6	JAMBOREE1	1406			
+1201322	405	N	12	59	36770	6.85	6.62	33.676465	-117.842488		OR	1	JAMBOREE1	1343			
+1201327	405	N	12	59	36770	6.85	6.62	33.676465	-117.842488		FR	2	JAMBOREE1	1343			
+1201331	405	N	12	59	36770	6.85	6.62	33.676465	-117.842488	.43	HV	1	JAMBOREE1	1343			
+1201333	405	N	12	59	36770	6.85	6.62	33.676465	-117.842488	.43	ML	5	JAMBOREE1	1343			
+1201340	405	S	12	59	36770	7.01	6.78	33.677283	-117.845019		OR	1	JAMBOREE2	1405			
+1201345	405	S	12	59	36770	7.01	6.78	33.677283	-117.845019		FR	2	JAMBOREE2	1405			
+1201348	405	S	12	59	36770	7.01	6.78	33.677283	-117.845019	.445	HV	1	JAMBOREE2	1405			
+1201350	405	S	12	59	36770	7.01	6.78	33.677283	-117.845019	.445	ML	6	JAMBOREE2	1405			
+1201357	405	N	12	59	36770	7.07	6.84	33.677945	-117.845871		OR	2	JAMBOREE2	1344			
+1201363	405	N	12	59	36770	7.07	6.84	33.677945	-117.845871	.44	HV	1	JAMBOREE 2	1344			
+1201365	405	N	12	59	36770	7.07	6.84	33.677945	-117.845871	.44	ML	5	JAMBOREE2	1344			
+1201372	405	S	12	59	36770	7.69	7.46	33.681922	-117.855449		OR	2	MACARTHUR1	1404			
+1201377	405	S	12	59	36770	7.69	7.46	33.681922	-117.855449		FR	2	MACARTHUR1	1404			
+1201380	405	S	12	59	36770	7.69	7.46	33.681922	-117.855449	.625	HV	1	MACARTHUR1	1404			
+1201382	405	S	12	59	36770	7.69	7.46	33.681922	-117.855449	.625	ML	5	MACARTHUR1	1404			
+1201389	405	N	12	59	36770	7.73	7.5	33.682442	-117.85598		OR	1	MACARTHUR 1	1345			
+1201394	405	N	12	59	36770	7.73	7.5	33.682442	-117.85598		FR	1	MACARTHUR 1	1345			
+1201397	405	N	12	59	36770	7.73	7.5	33.682442	-117.85598	.64	HV	1	MACARTHUR 1	1345			
+1201399	405	N	12	59	36770	7.73	7.5	33.682442	-117.85598	.595	ML	5	MACARTHUR 1	1345			
+1201406	405	S	12	59		8.26	8.03	33.685751	-117.86423	.355	ML	6	AIRPORT	2433			
+1201407	405	S	12	59		8.26	8.03	33.685751	-117.86423	.045	HV	2	AIRPORT	2433			
+1201410	405	S	12	59		8.9	8.67	33.687245	-117.875063	.4	ML	4	N OF 55	2415			
+1201415	405	N	12	59		8.4	8.17	33.686795	-117.866348		FF	2	405NB TO 55NB	2605			
+1201417	405	S	12	59		8.4	8.17	33.686517	-117.866474	.025	HV	1	RED HILL	2605			
+1201419	405	S	12	59		8.4	8.17	33.686517	-117.866474	.32	ML	5	RED HILL	2605			
+1201430	405	N	12	59		8.4	8.17	33.686795	-117.866348	.22	ML	4	RED HILL	2605			
+1201445	405	N	12	59		9.46	9.23	33.687523	-117.884653		OR	1	BRISTOL 1	1347			
+1201449	405	N	12	59		9.46	9.23	33.687523	-117.884653		FR	3	BRISTOL 1	1347			
+1201451	405	N	12	59		9.46	9.23	33.687523	-117.884653	.225	HV	1	BRISTOL 1	1347			
+1201453	405	N	12	59		9.46	9.23	33.687523	-117.884653	.225	ML	4	BRISTOL 1	1347			
+1201460	405	S	12	59		9.54	9.31	33.687251	-117.88618		OR	1	BRISTOL 1	1401			
+1201465	405	S	12	59		9.54	9.31	33.687251	-117.88618		FR	2	BRISTOL 1	1401			
+1201467	405	S	12	59		9.54	9.31	33.687251	-117.88618	.35	HV	1	BRISTOL 1	1401			
+1201469	405	S	12	59		9.54	9.31	33.687251	-117.88618	.35	ML	5	BRISTOL 1	1401			
+1201476	405	N	12	59		9.65	9.42	33.687523	-117.887956		OR	1	BRISTOL 2	1348			
+1201481	405	N	12	59		9.65	9.42	33.687523	-117.887956	.22	ML	5	BRISTOL 2	1348			
+1201487	405	N	12	59		9.65	9.42	33.687523	-117.887956	.22	HV	1	BRISTOL 2	1348			
+1201490	405	S	12	59	16532	10.3	10.07	33.687494	-117.899383		OR	1	FAIRVIEW	1400			
+1201494	405	S	12	59	16532	10.28	10.05	33.68748	-117.899035	.29	HV	1	FAIRVIEW	1400			
+1201497	405	S	12	59	16532	10.28	10.05	33.68748	-117.899035	.29	ML	5	FAIRVIEW	1400			
+1201503	405	N	12	59	16532	10.9	10.67	33.688017	-117.909664		OR	1	FAIRVIEW	1350			
+1201508	405	N	12	59	16532	10.9	10.67	33.688017	-117.909664	.573	HV	1	FAIRVIEW	1350			
+1201510	405	N	12	59	16532	10.9	10.67	33.688017	-117.909664	.573	ML	6	FAIRVIEW	1350			
+1201517	405	S	12	59	16532	11.2	10.97	33.687942	-117.915002		OR	1	HARBOR 1	1399			
+1201523	405	S	12	59	16532	11.2	10.97	33.687942	-117.915002	.51	HV	1	HARBOR 1	1399			
+1201525	405	S	12	59	16532	11.2	10.97	33.687942	-117.915002	.51	ML	6	HARBOR 1	1399			
+1201532	405	N	12	59	16532	11.4	11.17	33.688872	-117.918196		OR	1	HARBOR 1	1351			
+1201539	405	N	12	59	16532	11.4	11.17	33.688872	-117.918196	.176	HV	1	HARBOR 1	1351			
+1201541	405	N	12	59	16532	11.4	11.17	33.688872	-117.918196	.176	ML	6	HARBOR 1	1351			
+1201548	405	S	12	59	16532	11.5	11.27	33.689212	-117.91995		OR	1	HARBOR 2	1398			
+1201554	405	S	12	59	16532	11.5	11.27	33.689212	-117.91995		FR	3	HARBOR 2	1398			
+1201556	405	S	12	59	16532	11.5	11.27	33.689212	-117.91995	.165	HV	1	HARBOR 2	1398			
+1201558	405	S	12	59	16532	11.5	11.27	33.689212	-117.91995	.165	ML	5	HARBOR 2	1398			
+1201565	405	N	12	59	16532	11.6	11.37	33.690091	-117.921335		OR	1	HYLAND	1352			
+1201580	405	S	12	59	25380	12.5	12.27	33.695653	-117.9355		OR	1	EUCLID	1397			
+1201585	405	S	12	59	25380	12.5	12.27	33.695653	-117.9355		FR	1	EUCLID	1397			
+1201587	405	S	12	59	25380	12.5	12.27	33.695653	-117.9355	.235	HV	1	EUCLID	1397			
+1201589	405	S	12	59	25380	12.5	12.27	33.695653	-117.9355	.235	ML	5	EUCLID	1397			
+1201596	405	N	12	59	25380	12.85	12.62	33.69816	-117.940729		OR	1	EUCLID	1353			
+1201602	405	N	12	59	25380	12.85	12.62	33.69816	-117.940729		FR	2	EUCLID	1353			
+1201604	405	N	12	59	25380	12.85	12.62	33.69816	-117.940729	.205	HV	1	EUCLID	1353			
+1201606	405	N	12	59	25380	12.85	12.62	33.69816	-117.940729	.205	ML	5	EUCLID	1353			
+1201613	405	S	12	59	25380	13.3	13.07	33.700854	-117.947913		OR	1	TALBERT	1396			
+1201618	405	S	12	59	25380	13.3	13.07	33.700854	-117.947913	.343	HV	1	TALBERT	1396			
+1201620	405	S	12	59	25380	13.3	13.07	33.700854	-117.947913	.343	ML	5	TALBERT	1396			
+1201627	405	N	12	59	25380	13.74	13.51	33.704947	-117.953701		OR	1	BROOKHUR1	1354			
+1201631	405	N	12	59	25380	13.74	13.51	33.704947	-117.953701		FR	1	BROOKHUR 1	1354			
+1201633	405	N	12	59	25380	13.74	13.51	33.704947	-117.953701		CD	1	BROOKHUR 1	1354			
+1201635	405	N	12	59	25380	13.74	13.51	33.704947	-117.953701	.424	HV	1	BROOKHUR 1	1354			
+1201637	405	N	12	59	25380	13.74	13.51	33.704947	-117.953701	.424	ML	4	BROOKHUR1	1354			
+1201643	405	S	12	59	25380	13.81	13.58	33.705479	-117.954762		OR	1	BROOKHURST2	1395			
+1201647	405	S	12	59	25380	13.81	13.58	33.705479	-117.954762		CD	1	BROOKHURST2	1395			
+1201649	405	S	12	59	25380	13.81	13.58	33.705479	-117.954762		FR	1	BROOKHURST 2	1395			
+1201651	405	S	12	59	25380	13.81	13.58	33.705479	-117.954762	.619	HV	1	BROOKHURST 2	1395			
+1201653	405	S	12	59	25380	13.81	13.58	33.705479	-117.954762	.619	ML	4	BROOKHURST2	1395			
+1201659	405	N	12	59	25380	13.97	13.74	33.707312	-117.956518		OR	1	BROOKHUR2	1355			
+1201665	405	N	12	59	25380	13.97	13.74	33.707312	-117.956518		FR	1	BROOKHUR2	1355			
+1201667	405	N	12	59	25380	13.97	13.74	33.707312	-117.956518		CD	1	BROOKHUR2	1355			
+1201669	405	N	12	59	25380	13.97	13.74	33.707312	-117.956518	.415	HV	1	BROOKHUR2	1355			
+1201671	405	N	12	59	25380	13.97	13.74	33.707312	-117.956518	.415	ML	4	BROOKHUR2	1355			
+1201677	405	S	12	59	25380	14.72	14.49	33.714839	-117.965935		OR	1	WARNER	1394			
+1201683	405	S	12	59	25380	14.72	14.49	33.714839	-117.965935		FR	1	WARNER	1394			
+1201685	405	S	12	59	25380	14.72	14.49	33.714839	-117.965935	.23	HV	1	WARNER	1394			
+1201687	405	S	12	59	25380	14.72	14.49	33.714839	-117.965935	.23	ML	4	WARNER	1394			
+1201693	405	N	12	59	25380	14.82	14.59	33.716027	-117.966959		OR	1	WARNER	1356			
+1201699	405	N	12	59	25380	14.82	14.59	33.716027	-117.966959		FR	1	WARNER	1356			
+1201701	405	N	12	59	25380	14.82	14.59	33.716027	-117.966959		CD	1	WARNER	1356			
+1201703	405	N	12	59	25380	14.82	14.59	33.716027	-117.966959	.214	HV	1	WARNER	1356			
+1201705	405	N	12	59	25380	14.82	14.59	33.716027	-117.966959	.214	ML	4	WARNER	1356			
+1201711	405	S	12	59	25380	15.16	14.93	33.71936	-117.971343		OR	1	MAGNOLIA 1	1393			
+1201715	405	S	12	59	25380	15.16	14.93	33.71936	-117.971343		FR	2	MAGNOLIA 1	1393			
+1201717	405	S	12	59	25380	15.16	14.93	33.71936	-117.971343	.361	HV	1	MAGNOLIA 1	1393			
+1201719	405	S	12	59	25380	15.16	14.93	33.71936	-117.971343	.361	ML	4	MAGNOLIA 1	1393			
+1201725	405	N	12	59	25380	15.17	14.94	33.719628	-117.971245		OR	1	MAGNOLIA1	1357			
+1201729	405	N	12	59	25380	15.17	14.94	33.719628	-117.971245		FR	1	MAGNOLIA 1	1357			
+1201731	405	N	12	59	25380	15.17	14.94	33.719628	-117.971245		CD	1	MAGNOLIA 1	1357			
+1201733	405	N	12	59	25380	15.17	14.94	33.719628	-117.971245	.195	HV	1	MAGNOLIA 1	1357			
+1201735	405	N	12	59	25380	15.17	14.94	33.719628	-117.971245	.195	ML	4	MAGNOLIA1	1357			
+1201741	405	N	12	59	25380	15.39	15.16	33.721879	-117.973953		OR	1	MAGNOLIA2	1358			
+1201747	405	N	12	59	25380	15.39	15.16	33.721879	-117.973953		CD	1	MAGNOLIA 2	1358			
+1201749	405	N	12	59	25380	15.39	15.16	33.721879	-117.973953	.245	HV	1	MAGNOLIA 2	1358			
+1201751	405	N	12	59	25380	15.39	15.16	33.721879	-117.973953	.245	ML	4	MAGNOLIA2	1358			
+1201757	405	S	12	59	36000	16.26	16.03	33.72995	-117.98561		OR	1	EDINGER	1392			
+1201763	405	S	12	59	36000	16.26	16.03	33.72995	-117.98561		FR	1	BEACH 1	1391			
+1201765	405	S	12	59	36000	16.26	16.03	33.72995	-117.98561	.439	HV	1	EDINGER	1392			
+1201767	405	S	12	59	36000	16.26	16.03	33.72995	-117.98561	.439	ML	5	EDINGER	1392			
+1201773	405	N	12	59	84550	16.52	16.29	33.732527	-117.988885		OR	1	BEACH 1	1359			
+1201778	405	N	12	59	84550	16.52	16.29	33.732527	-117.988885		FR	2	BEACH 1	1359			
+1201783	405	N	12	59	84550	16.52	16.29	33.732527	-117.988885		CD	1	BEACH 1	1359			
+1201785	405	N	12	59	84550	16.52	16.29	33.732527	-117.988885	.367	HV	1	BEACH 1	1359			
+1201787	405	N	12	59	84550	16.52	16.29	33.732527	-117.988885	.367	ML	4	BEACH 1	1359			
+1201793	405	S	12	59	36000	16.6	16.37	33.733102	-117.990146		OR	1	BEACH 1	1391			
+1201797	405	S	12	59	36000	16.6	16.37	33.733102	-117.990146		FR	3	BEACH 1	1391			
+1201801	405	S	12	59	36000	16.6	16.37	33.733102	-117.990146		CD	1	BEACH 1	1391			
+1201803	405	S	12	59	36000	16.6	16.37	33.733102	-117.990146	.359	HV	1	BEACH 1	1391			
+1201805	405	S	12	59	36000	16.6	16.37	33.733102	-117.990146	.359	ML	4	BEACH 1	1391			
+1201811	405	N	12	59	84550	16.76	16.53	33.734759	-117.992088		OR	1	BEACH 2	1360			
+1201817	405	N	12	59	84550	16.76	16.53	33.734759	-117.992088		FR	1	BEACH 2	1360			
+1201819	405	N	12	59	84550	16.76	16.53	33.734759	-117.992088		CD	1	BEACH 2	1360			
+1201821	405	N	12	59	84550	16.76	16.53	33.734759	-117.992088	.7	HV	1	BEACH 2	1360			
+1201823	405	N	12	59	84550	16.76	16.53	33.734759	-117.992088	.7	ML	4	BEACH 2	1360			
+1201829	405	S	12	59	84550	17.66	17.43	33.743534	-118.003642		OR	1	BOLSA	1390			
+1201835	405	S	12	59	84550	17.66	17.43	33.743534	-118.003642		FR	1	BOLSA	1390			
+1201837	405	S	12	59	84550	17.66	17.43	33.743534	-118.003642	.501	HV	1	BOLSA	1390			
+1201839	405	S	12	59	84550	17.66	17.43	33.743534	-118.003642	.501	ML	4	BOLSA	1390			
+1201845	405	N	12	59	84550	17.92	17.69	33.746378	-118.00667		OR	1	GOLDEN WEST	1361			
+1201851	405	N	12	59	84550	17.92	17.69	33.746378	-118.00667	.968	HV	1	GOLDEN WEST	1361			
+1201853	405	N	12	59	84550	17.92	17.69	33.746378	-118.00667	.968	ML	4	GOLDEN WEST	1361			
+1201859	405	S	12	59	84550	17.98	17.75	33.7468	-118.007585		OR	1	GOLDEN WEST	1389			
+1201863	405	S	12	59	84550	18	17.77	33.747007	-118.007829		FR	1	GOLDEN WEST	1389			
+1201865	405	S	12	59	84550	17.98	17.75	33.7468	-118.007585	.515	HV	1	GOLDEN WEST	1389			
+1201867	405	S	12	59	84550	17.98	17.75	33.7468	-118.007585	.515	ML	4	GOLDEN WEST	1389			
+1201873	405	S	12	59	84550	19.05	18.82	33.757778	-118.020707		OR	1	WESTMINSTER	1388			
+1201879	405	S	12	59	84550	19.05	18.82	33.757778	-118.020707		FR	1	WESTMINSTER	1388			
+1201881	405	S	12	59	84550	19.05	18.82	33.757778	-118.020707	.476	HV	1	WESTMINSTER	1388			
+1201883	405	S	12	59	84550	19.05	18.82	33.757778	-118.020707	.476	ML	4	WESTMINSTER	1388			
+1201889	405	N	12	59	84550	19.24	19.01	33.759918	-118.022852		OR	1	WESTMINISTER	1362			
+1201895	405	N	12	59	84550	19.24	19.01	33.759918	-118.022852		FR	1	WESTMINSTER	1362			
+1201897	405	N	12	59	84550	19.24	19.01	33.759918	-118.022852	.468	HV	1	WESTMINSTER	1362			
+1201899	405	N	12	59	84550	19.24	19.01	33.759918	-118.022852	.468	ML	4	WESTMINISTER	1362			
+1201905	405	S	12	59	84550	20.69	20.46	33.77403	-118.041297		OR	1	BOLSA CHICA	1387			
+1201909	405	S	12	59	84550	20.69	20.46	33.77403	-118.041297	.348	HV	1	BOLSA CHICA	1387			
+1201911	405	S	12	59	84550	20.69	20.46	33.77403	-118.041297	.348	ML	4	BOLSA CHICA	1387			
+1201931	405	S	12	59	70686	22.54	22.31	33.774257	-118.073289		OR	1	SEAL BEACH 1	1386			
+1201937	405	S	12	59	70686	22.54	22.31	33.774257	-118.073289		FR	2	SEAL BEACH 1	1386			
+1201939	405	S	12	59	70686	22.54	22.31	33.774257	-118.073289	.615	HV	2	SEAL BEACH 1	1386			
+1201941	405	S	12	59	70686	22.54	22.31	33.774257	-118.073289	.615	ML	6	SEAL BEACH 1	1386			
+1201949	405	N	12	59	70686	22.55	22.32	33.774552	-118.073325		OR	1	SEAL BEACH 1	1364			
+1201954	405	N	12	59	70686	22.55	22.32	33.774552	-118.073325		FR	2	SEAL BEACH 1	1364			
+1201957	405	N	12	59	70686	22.55	22.32	33.774552	-118.073325	.488	HV	2	SEAL BEACH 1	1364			
+1201959	405	N	12	59	70686	22.55	22.32	33.774552	-118.073325	.488	ML	6	SEAL BEACH 1	1364			
+1201969	405	N	12	59	70686	23.12	22.89	33.774556	-118.083341	.066	ML	5	S OF 7TH ST	2241			
+1201971	405	N	12	59	70686	23.62	23.39	33.778545	-118.089644	.226	HV	1	SALMON	2218			
+1201975	405	S	12	59	70686	23.62	23.39	33.778421	-118.089913	.192	HV	1	SALMON	2218			
+1201977	405	N	12	59	70686	23.62	23.39	33.778545	-118.089644	.254	ML	5	SALMON	2218			
+1201985	405	N	12	59	70686	23.92	23.69	33.782737	-118.090834	.144	ML	4	S OF 605	2430			
+1201987	405	N	12	59	70686	24.12	23.89	33.785381	-118.092441	.205	ML	4	N OF 605	2219			
+1201989	57	N	12	59	53980	10.8	.066	33.779069	-117.873418	.216	HV	1	RTE 22 & 5 NB	2352			
+1201991	57	S	12	59	53980	10.8	.151	33.777415	-117.874735	.291	HV	1	RTE 22 & 5	2352			
+1201993	57	S	12	59	53980	11.08	.431	33.783256	-117.880197		OR	1	CHAPMAN 1	1004			
+1201998	57	S	12	59	53980	11.08	.431	33.783256	-117.880197	.375	ML	4	CHAPMAN 1	1004			
+1202005	57	N	12	59	53980	11.2	.466	33.786905	-117.879753		OR	1	CHAPMAN 1	955			
+1202009	57	N	12	59	53980	11.2	.466	33.786905	-117.879753		FR	1	CHAPMAN 1	955			
+1202011	57	N	12	59	53980	11.22	.486	33.787426	-117.879769	.145	ML	5	CHAPMAN 1	955			
+1202018	57	N	12	59	53980	11.3	.566	33.788781	-117.879807		OR	1	CHAPMAN 2	956			
+1202022	57	N	12	59	53980	11.3	.566	33.788781	-117.879807	.24	HV	1	CHAPMAN 2	956			
+1202024	57	N	12	59	53980	11.39	.656	33.790105	-117.879799	.23	ML	6	CHAPMAN 2	956			
+1202032	57	S	12	59	53980	11.55	.901	33.792388	-117.879621		OR	1	ORANGEWOOD	1003			
+1202036	57	S	12	59	53980	11.55	.901	33.792388	-117.879621		FR	3	ORANGEWOOD	1003			
+1202040	57	S	12	59	53980	11.55	.901	33.792388	-117.879621	.66	ML	4	ORANGEWOOD	1003			
+1202047	57	N	12	59	53980	11.68	.946	33.794121	-117.878448		OR	1	ORANGEWO1	957			
+1202051	57	N	12	59	53980	11.68	.946	33.794121	-117.878448		FR	2	ORANGEWO1	957			
+1202053	57	N	12	59	53980	11.68	.946	33.794121	-117.878448	.195	ML	5	ORANGEWO1	957			
+1202061	57	N	12	59	53980	11.78	1.046	33.795482	-117.877848		OR	1	ORANGEWO2	958			
+1202065	57	N	12	59	53980	11.78	1.046	33.795482	-117.877848	.41	HV	1	ORANGEWO2	958			
+1202067	57	N	12	59	53980	11.78	1.046	33.795482	-117.877848	.41	ML	5	ORANGEWO2	958			
+1202074	57	S	12	59	53980	12.4	1.751	33.804096	-117.88008		OR	1	KATELLA 1	1002			
+1202078	57	S	12	59	53980	12.4	1.751	33.804096	-117.88008	.515	ML	4	KATELLA 1	1002			
+1202085	57	N	12	59	2000	12.5	1.766	33.805531	-117.880058		OR	1	KATELLA 1	959			
+1202089	57	N	12	59	2000	12.5	1.766	33.805531	-117.880058		FR	1	KATELLA 1	959			
+1202091	57	N	12	59	2000	12.5	1.766	33.805531	-117.880058	.46	HV	1	KATELLA 1	959			
+1202093	57	N	12	59	2000	12.5	1.766	33.805531	-117.880058	.48	ML	5	KATELLA 1	959			
+1202099	57	S	12	59	53980	12.58	1.931	33.806677	-117.880243		OR	1	KATELLA 2	1001			
+1202103	57	S	12	59	53980	12.58	1.931	33.806677	-117.880243		FR	1	KATELLA 2	1001			
+1202105	57	S	12	59	53980	12.58	1.931	33.806677	-117.880243	.25	ML	4	KATELLA 2	1001			
+1202112	57	N	12	59	2000	12.7	1.966	33.808355	-117.879559		OR	1	KATELLA 2	960			
+1202116	57	N	12	59	2000	12.7	1.966	33.808355	-117.879559	.2	HV	1	KATELLA 2	960			
+1202118	57	N	12	59	2000	12.74	2.006	33.808904	-117.879353	.2	ML	5	KATELLA 2	960			
+1202124	57	S	12	59	53980	13.27	2.621	33.816163	-117.876814		OR	1	BALL 1	1000			
+1202130	57	S	12	59	53980	13.27	2.621	33.816163	-117.876814	.435	HV	1	BALL 1	1000			
+1202132	57	S	12	59	53980	13.27	2.621	33.816163	-117.876814	.275	ML	4	BALL 1	1000			
+1202138	57	N	12	59		13.3	2.566	33.816586	-117.876479		OR	1	BALL 1	961			
+1202142	57	N	12	59		13.3	2.566	33.816586	-117.876479		FR	1	BALL 1	961			
+1202144	57	N	12	59		13.3	2.566	33.816586	-117.876479	.3	HV	1	BALL 1	961			
+1202146	57	N	12	59		13.38	2.646	33.81772	-117.876254	.33	ML	5	BALL 1	961			
+1202152	57	S	12	59	53980	13.45	2.801	33.818721	-117.876349		OR	1	BALL 2	999			
+1202156	57	S	12	59	53980	13.45	2.801	33.818721	-117.876349		FR	1	BALL 2	999			
+1202158	57	S	12	59	53980	13.45	2.801	33.818721	-117.876349	.315	HV	1	BALL 2	999			
+1202160	57	S	12	59	53980	13.45	2.801	33.818721	-117.876349	.315	ML	4	BALL 2	999			
+1202166	57	N	12	59	2000	13.5	2.766	33.819435	-117.87605		OR	1	BALL 2	962			
+1202170	57	N	12	59	2000	13.5	2.766	33.819435	-117.87605	.3	HV	1	BALL 2	962			
+1202172	57	N	12	59	2000	13.56	2.826	33.820297	-117.875999	.26	ML	5	BALL 2	962			
+1202178	57	S	12	59	53980	14.65	4.001	33.835983	-117.876191		OR	1	LINCOLN 1	998			
+1202184	57	S	12	59	53980	14.65	4.001	33.835983	-117.876191	.215	HV	1	LINCOLN 1	998			
+1202186	57	S	12	59	53980	14.65	4.001	33.835983	-117.876191	.215	ML	5	LINCOLN 1	998			
+1202193	57	N	12	59	2000	14.7	3.966	33.836695	-117.875951		OR	1	LINCOLN 1	963			
+1202197	57	N	12	59	2000	14.7	3.966	33.836695	-117.875951		FR	1	LINCOLN 1	963			
+1202199	57	N	12	59	2000	14.7	3.966	33.836695	-117.875951	.25	HV	1	LINCOLN 1	963			
+1202201	57	N	12	59	2000	14.73	3.996	33.837126	-117.87595	.25	ML	5	LINCOLN 1	963			
+1202207	57	S	12	59	53980	14.83	4.181	33.838577	-117.876186		OR	1	LINCOLN 2	1554			
+1202211	57	S	12	59	53980	14.83	4.181	33.838577	-117.876186		FR	1	LINCOLN 2	1554			
+1202213	57	S	12	59	53980	14.83	4.181	33.838577	-117.876186	.225	HV	1	LINCOLN 2	1554			
+1202215	57	S	12	59	53980	14.83	4.181	33.838577	-117.876186	.225	ML	5	LINCOLN 2	1554			
+1202222	57	N	12	59	2000	14.9	4.166	33.839593	-117.875935		OR	1	LINCOLN 2	964			
+1202228	57	N	12	59	2000	14.9	4.166	33.839593	-117.875935	.2	HV	1	LINCOLN 2	964			
+1202230	57	N	12	59	2000	14.9	4.166	33.839593	-117.875935	.185	ML	5	LINCOLN 2	964			
+1202239	57	S	12	59	53980	16.46	5.811	33.862118	-117.87757		OR	1	ORANGETHOR	995			
+1202244	57	S	12	59	53980	16.46	5.811	33.862118	-117.87757		FR	1	ORANGETHOR	995			
+1202246	57	S	12	59	53980	16.46	5.811	33.862118	-117.87757	.445	HV	1	ORANGETHOR	995			
+1202248	57	S	12	59	53980	16.46	5.811	33.862118	-117.87757	.445	ML	5	ORANGETHOR	995			
+1202254	57	N	12	59	57526	16.5	5.766	33.862728	-117.877557		OR	1	ORANGETHORPE	967			
+1202261	57	N	12	59	57526	16.5	5.766	33.862728	-117.877557	.445	HV	1	ORANGETHORPE	967			
+1202263	57	N	12	59	57526	16.5	5.766	33.862728	-117.877557	.445	ML	6	ORANGETHORPE	967			
+1202270	57	S	12	59	53980	17.18	6.531	33.872312	-117.880462		OR	1	CHAPMAN 3	994			
+1202276	57	S	12	59	53980	17.18	6.531	33.872312	-117.880462	.205	HV	1	CHAPMAN 3	994			
+1202278	57	S	12	59	53980	17.18	6.531	33.872312	-117.880462	.205	ML	4	CHAPMAN 3	994			
+1202284	57	S	12	59	53980	17.41	6.761	33.87562	-117.880503		OR	1	NUTWOOD	993			
+1202288	57	S	12	59	53980	17.41	6.761	33.87562	-117.880503	.5	HV	1	NUTWOOD	993			
+1202290	57	S	12	59	53980	17.41	6.761	33.87562	-117.880503	.5	ML	4	NUTWOOD	993			
+1202296	57	N	12	59	28000	17.7	6.966	33.879813	-117.880294		OR	1	NUTWOOD	968			
+1202302	57	N	12	59	28000	17.7	6.966	33.879813	-117.880294		FR	1	NUTWOOD	968			
+1202306	57	N	12	59	28000	17.7	6.966	33.879813	-117.880294	.65	HV	1	NUTWOOD	968			
+1202308	57	N	12	59	28000	17.75	7.016	33.880532	-117.88031	.65	ML	5	NUTWOOD	968			
+1202314	57	S	12	59	53980	18.18	7.531	33.886705	-117.880716		OR	1	YORBA LI1	992			
+1202320	57	S	12	59	53980	18.18	7.531	33.886705	-117.880716	.48	HV	1	YORBA LI1	992			
+1202322	57	S	12	59	53980	18.18	7.531	33.886705	-117.880716	.48	ML	5	YORBA LI1	992			
+1202329	57	N	12	59	28000	18.3	7.566	33.888435	-117.880484		OR	1	YORBA LI1	969			
+1202333	57	N	12	59	28000	18.3	7.566	33.888435	-117.880484		FR	1	YORBA LI1	969			
+1202335	57	N	12	59	28000	18.3	7.566	33.888435	-117.880484	.4	HV	1	YORBA LI1	969			
+1202337	57	N	12	59	28000	18.3	7.566	33.888435	-117.880484	.37	ML	5	YORBA LI1	969			
+1202343	57	S	12	59	53980	18.37	7.721	33.889447	-117.880785		OR	1	YORBA LI2	991			
+1202349	57	S	12	59	53980	18.37	7.721	33.889447	-117.880785		FR	1	YORBA LI2	991			
+1202351	57	S	12	59	53980	18.37	7.721	33.889447	-117.880785	.335	HV	1	YORBA LI2	991			
+1202353	57	S	12	59	53980	18.37	7.721	33.889447	-117.880785	.335	ML	4	YORBA LI2	991			
+1202359	57	N	12	59	28000	18.5	7.766	33.891352	-117.880561		OR	1	YORBA LI2	970			
+1202363	57	N	12	59	28000	18.5	7.766	33.891352	-117.880561	.275	HV	1	YORBA LI2	970			
+1202365	57	N	12	59	28000	18.49	7.756	33.891206	-117.880559	.275	ML	5	YORBA LI2	970			
+1202371	57	S	12	59	53980	19.1	8.451	33.900128	-117.881325	.44	HV	1	ROLLING HILLS	2184			
+1202373	57	S	12	59	53980	19.1	8.451	33.900128	-117.881325	.44	ML	4	ROLLING HILLS	2184			
+1202378	57	N	12	59	28000	19.1	8.366	33.900126	-117.881063	.475	HV	1	ROLLING  HILLS	2184			
+1202380	57	N	12	59	28000	19.1	8.366	33.900126	-117.881063	.475	ML	6	ROLLING HILLS	2184			
+1202386	57	S	12	59	53980	19.73	9.081	33.90899	-117.883224		OR	1	IMPERIAL1	990			
+1202392	57	S	12	59	53980	19.73	9.081	33.90899	-117.883224	.42	HV	1	IMPERIAL 1	990			
+1202394	57	S	12	59	53980	19.73	9.081	33.90899	-117.883224	.42	ML	4	IMPERIAL1	990			
+1202400	57	N	12	59	28000	19.8	9.066	33.909962	-117.883309		OR	1	IMPERIAL1	971			
+1202404	57	N	12	59	28000	19.8	9.066	33.909962	-117.883309		FR	1	IMPERIAL 1	971			
+1202406	57	N	12	59	28000	19.8	9.066	33.909962	-117.883309	.45	HV	1	IMPERIAL 1	971			
+1202408	57	N	12	59	28000	19.8	9.066	33.909962	-117.883309	.475	ML	5	IMPERIAL1	971			
+1202414	57	S	12	59	53980	19.94	9.291	33.91201	-117.883726		OR	1	IMPERIAL2	989			
+1202418	57	S	12	59	53980	19.94	9.291	33.91201	-117.883726		FR	1	IMPERIAL 2	989			
+1202420	57	S	12	59	53980	19.94	9.291	33.91201	-117.883726	.485	HV	1	IMPERIAL 2	989			
+1202422	57	S	12	59	53980	19.94	9.291	33.91201	-117.883726	.485	ML	4	IMPERIAL2	989			
+1202428	57	N	12	59	8100	20	9.266	33.912859	-117.883163		OR	1	IMPERIAL2	972			
+1202434	57	N	12	59	8100	20	9.266	33.912859	-117.883163	.68	HV	1	IMPERIAL 2	972			
+1202436	57	N	12	59	8100	20.05	9.316	33.913565	-117.882887	.68	ML	6	IMPERIAL2	972			
+1202442	57	S	12	59	53980	20.7	10.051	33.92289	-117.880298		OR	1	LAMBERT	988			
+1202447	57	S	12	59	53980	20.7	10.051	33.92289	-117.880298		FR	1	LAMBERT	988			
+1202449	57	S	12	59	53980	20.7	10.051	33.92289	-117.880298	1.06	HV	1	LAMBERT	988			
+1202451	57	S	12	59	53980	20.7	10.051	33.92289	-117.880298	1.06	ML	4	LAMBERT	988			
+1202457	57	N	12	59	8100	21.1	10.366	33.928813	-117.879984		OR	1	LAMBERT	973			
+1202464	57	N	12	59	8100	21.16	10.426	33.929701	-117.879881	.975	ML	4	LAMBERT	973			
+1202470	57	S	12	59		22	11.351	33.940956	-117.875322		OR	1	TONNER	987			
+1202475	57	S	12	59		22.06	11.411	33.94149	-117.874675	1.269	ML	4	TONNER	987			
+1202513	605	S	12	59	70686	R1.26	1.669	33.80104	-118.083136		OR	1	KATELLA 1	449			
+1202518	605	S	12	59	70686	R1.26	1.669	33.80104	-118.083136		FR	1	KATELLA 1	449			
+1202520	605	S	12	59	70686	R1.26	1.669	33.80104	-118.083136		CD	1	KATELLA 1	449			
+1202522	605	S	12	59	70686	R1.26	1.669	33.80104	-118.083136	.195	ML	4	KATELLA 1	449			
+1202527	605	N	12	59	70686	R1.26	1.669	33.80097	-118.082822	.511	ML	4	KATELLA 1	449			
+1202533	605	S	12	59	70686	R1.49	1.899	33.804047	-118.081675		OR	1	KATELLA 2	448			
+1202537	605	S	12	59	70686	R1.49	1.899	33.804047	-118.081675	.316	ML	4	KATELLA 2	448			
+1202560	22	W	12	59	29000	R1	2.457	33.774521	-118.036302		OR	1	VALLEY V2	1504			
+1202564	22	W	12	59	29000	R1	2.457	33.774521	-118.036302	.26	ML	2	VALLEY V2	1504			
+1202569	22	W	12	59		R.89	2.347	33.774686	-118.038174		OR	1	VALLEY V1	913			
+1202574	22	W	12	59		R.89	2.347	33.774686	-118.038174	.395	ML	3	VALLEY V1	913			
+1202585	22	E	12	59	29000	R1.08	2.537	33.774261	-118.034947		OR	1	VALLEY V2	882			
+1202590	22	E	12	59	29000	R1.08	2.537	33.774261	-118.034947	.6	ML	3	VALLEY V2	882			
+1202595	22	E	12	59	29000	R1.75	3.207	33.774214	-118.023344	.165	ML	3	SPRINGDALE	2220			
+1202599	22	W	12	59	29000	R1.75	3.207	33.77439	-118.023337	.165	ML	4	SPRINGDALE	2220			
+1202604	22	W	12	59	29000	R2.49	3.947	33.774652	-118.010501		OR	1	KNOTT 1	912			
+1202610	22	W	12	59	29000	R2.49	3.947	33.774652	-118.010501	.32	ML	3	KNOTT 1	912			
+1202614	22	E	12	59	29000	R2.49	3.947	33.774494	-118.010537	.32	ML	3	KNOTT 1	912			
+1202618	22	E	12	59	29000	R2.49	3.947	33.774494	-118.010537		FR	1	KNOTT 1	912			
+1202621	22	E	12	59	84550	R2.88	4.337	33.772807	-118.004149		OR	1	KNOTT 2	883			
+1202627	22	E	12	59	84550	R2.88	4.337	33.772807	-118.004149	.365	ML	3	KNOTT 2	883			
+1202631	22	W	12	59	84550	R2.88	4.337	33.772939	-118.004084	.37	ML	3	KNOTT 2	883			
+1202635	22	W	12	59	84550	R2.88	4.337	33.772939	-118.004084		FR	1	KNOTT 2	883			
+1202638	22	E	12	59	84550	R3.44	4.897	33.771171	-117.994688		OR	1	BEACH 1	884			
+1202644	22	E	12	59	84550	R3.44	4.897	33.771171	-117.994688		FR	2	BEACH 1	884			
+1202648	22	E	12	59	84550	R3.44	4.897	33.771171	-117.994688	.425	ML	3	BEACH 1	884			
+1202653	22	W	12	59	84550	R3.45	4.907	33.771348	-117.994525		OR	1	BEACH 1	911			
+1202663	22	W	12	59	84550	R3.45	4.907	33.771348	-117.994525	.425	ML	3	BEACH 1	911			
+1202668	22	W	12	59	29000	R3.73	5.187	33.771057	-117.989817		OR	1	BEACH2	910			
+1202672	22	W	12	59	29000	R3.73	5.187	33.771057	-117.989817		FR	2	BEACH2	910			
+1202676	22	W	12	59	29000	R3.73	5.187	33.771057	-117.989817	.29	ML	3	BEACH 2	910			
+1202681	22	E	12	59	29000	R3.73	5.187	33.770894	-117.989845		OR	1	BEACH 2	885			
+1202691	22	E	12	59	29000	R3.73	5.187	33.770894	-117.989845	.295	ML	3	BEACH 2	885			
+1202696	22	W	12	59	29000	R4.6	6.057	33.767155	-117.976011		OR	1	MAGNOLIA1	909			
+1202701	22	W	12	59	29000	R4.6	6.057	33.767155	-117.976011	.325	ML	4	MAGNOLIA1	909			
+1202705	22	E	12	59	29000	R4.6	6.057	33.767032	-117.976135	.325	ML	4	MAGNOLIA1	909			
+1202710	22	E	12	59	29000	R4.99	6.447	33.765717	-117.969658		OR	1	MAGNOLIA2	886			
+1202716	22	E	12	59	29000	R4.99	6.447	33.765717	-117.969658		FR	1	MAGNOLIA 2	886			
+1202720	22	E	12	59	29000	R4.99	6.447	33.765717	-117.969658	.515	ML	4	MAGNOLIA2	886			
+1202724	22	W	12	59	29000	R4.99	6.447	33.765877	-117.96964	.485	ML	4	MAGNOLIA2	886			
+1202728	22	W	12	59	29000	R4.99	6.447	33.765877	-117.96964		FR	1	MAGNOLIA2	886			
+1202732	22	W	12	59	29000	R5.57	7.027	33.765954	-117.959407		OR	1	BROOKHUR1	908			
+1202736	22	W	12	59	29000	R5.57	7.027	33.765954	-117.959407		FR	2	BROOKHUR 1	908			
+1202738	22	W	12	59	29000	R5.57	7.027	33.765954	-117.959407	.39	ML	4	BROOKHUR1	908			
+1202742	22	E	12	59	29000	R5.63	7.087	33.765808	-117.958333	.39	ML	4	BROOKHUR1	908			
+1202747	22	E	12	59	29000	R5.77	7.227	33.765809	-117.955835		OR	1	BROOKHUR2	887			
+1202751	22	E	12	59	29000	R5.77	7.227	33.765809	-117.955835		FR	2	BROOKHUR 2	887			
+1202753	22	E	12	59	29000	R5.77	7.227	33.765809	-117.955835	.21	ML	4	BROOKHUR2	887			
+1202758	22	W	12	59	29000	R6.94	8.397	33.766144	-117.935768		OR	1	EUCLID	907			
+1202764	22	W	12	59	29000	R6.94	8.397	33.766144	-117.935768		FR	1	EUCLID	907			
+1202766	22	W	12	59	29000	R6.94	8.397	33.766144	-117.935768	.34	ML	4	EUCLID	907			
+1202771	22	E	12	59	29000	R6.94	8.397	33.765995	-117.935763		OR	1	EUCLID	888			
+1202779	22	E	12	59	29000	R6.94	8.397	33.765995	-117.935763	.34	ML	4	EUCLID	888			
+1202785	22	E	12	59	29000	R7.29	8.747	33.766038	-117.929691	.18	ML	4	NEWHOPE	2223			
+1202789	22	W	12	59	29000	R7.29	8.747	33.766181	-117.929696	.18	ML	4	NEWHOPE	2223			
+1202795	22	W	12	59	29000	R7.72	9.177	33.767174	-117.922445		OR	1	HARBOR 1	906			
+1202801	22	E	12	59	29000	R7.72	9.177	33.76705	-117.922361		FR	1	HARBOR 1	5051			
+1202803	22	W	12	59	29000	R7.72	9.177	33.767174	-117.922445	.315	ML	5	HARBOR 1	906			
+1202808	22	W	12	59	29000	R7.93	9.387	33.768341	-117.919037		OR	1	HARBOR 2	905			
+1202812	22	W	12	59	29000	R7.93	9.387	33.768341	-117.919037		FR	1	HARBOR 2	905			
+1202814	22	W	12	59	29000	R7.93	9.387	33.768341	-117.919037	.29	ML	4	HARBOR 2	905			
+1202819	22	E	12	59	29000	R8.02	9.477	33.768707	-117.917517		OR	1	HARBOR 2	889			
+1202825	22	E	12	59	29000	R8.02	9.477	33.768707	-117.917517		FR	1	HARBOR 2	889			
+1202827	22	E	12	59	29000	R8.02	9.477	33.768707	-117.917517	.29	ML	4	HARBOR 2	889			
+1202832	22	W	12	59	29000	R8.68	10.137	33.773193	-117.907475		OR	1	GARDEN G1	904			
+1202838	22	E	12	59	29000	R8.68	10.137	33.773077	-117.907372		FR	1	GARDEN G1	904			
+1202840	22	W	12	59	29000	R8.68	10.137	33.773193	-117.907475	.37	ML	4	GARDEN G1	904			
+1202844	22	E	12	59	29000	R8.68	10.137	33.773077	-117.907372	.37	ML	4	GARDEN G1	904			
+1202849	22	E	12	59	29000	R9.04	10.497	33.775838	-117.901985		OR	1	GARDEN GROVE 2	890			
+1202853	22	W	12	59	29000	R9.04	10.497	33.775964	-117.902076		FR	2	GARDEN G2	890			
+1202855	22	E	12	59	29000	R9.04	10.497	33.775838	-117.901985	.38	ML	4	GARDEN G2	890			
+1202859	22	W	12	59	29000	R9.04	10.497	33.775964	-117.902076	.38	ML	4	GARDEN G2	890			
+1202864	22	W	12	59	53980	R9.69	11.251	33.779085	-117.889576		OR	1	CITY DRIVE	903			
+1202870	22	W	12	59	53980	R9.69	11.251	33.779085	-117.889576		FR	2	CITY DRIVE	903			
+1202872	22	W	12	59	53980	R9.69	11.251	33.779085	-117.889576	.282	ML	3	CITY DRIVE	903			
+1202878	22	E	12	59	53980	R9.7	11.261	33.778925	-117.889394		OR	1	THE CITY DRIVE	891			
+1202883	22	E	12	59	53980	R9.7	11.261	33.778925	-117.889394		FR	1	THE CITY DRIVE	891			
+1202885	22	E	12	59	53980	R9.7	11.261	33.778925	-117.889394	.282	ML	2	THE CITY DRIVE	891			
+1202890	22	W	12	59	53980	R9.9	11.461	33.779058	-117.886182		FF	3	S57&5 to W22	2341			
+1202893	22	E	12	59	69000	R10.13	11.691	33.778903	-117.882341		OR	1	BRISTOL	892			
+1202898	22	E	12	59	69000	R10.13	11.691	33.778903	-117.882341		FR	2	BRISTOL	892			
+1202901	22	E	12	59	69000	R10.13	11.691	33.778903	-117.882341	.315	ML	2	BRISTOL	892			
+1202906	22	W	12	59	69000	R10.14	11.701	33.779081	-117.882183		OR	1	BRISTOL	901			
+1202910	5	S	12	59		34	106.188	33.778694	-117.876548		FR	3	5N&S La Veta	901			
+1202912	22	W	12	59	69000	R10.14	11.701	33.779081	-117.882183	.315	ML	3	BRISTOL	901			
+1202917	22	W	12	59	53980	R10.71	12.271	33.778461	-117.872394	.35	ML	3	E OF 5	2340			
+1202921	22	E	12	59	53980	R10.71	12.271	33.77834	-117.872382	.36	ML	2	E OF 5	2340			
+1202925	22	E	12	59	53980	R10.71	12.271	33.77834	-117.872382		FF	2	S5/S57 TO E22	2340			
+1202929	22	W	12	59	53980	R10.53	12.091	33.779039	-117.875662	.285	ML	3	W OF 5	2338			
+1202931	22	W	12	59	53980	R11.23	12.791	33.778348	-117.863135		OR	1	MAIN	899			
+1202936	22	W	12	59	53980	R11.23	12.791	33.778348	-117.863135		FR	2	MAIN	899			
+1202938	22	W	12	59	53980	R11.23	12.791	33.778348	-117.863135	.485	ML	3	MAIN	899			
+1202943	22	E	12	59	53980	R11.25	12.811	33.778206	-117.862808		OR	1	MAIN	894			
+1202947	22	E	12	59	53980	R11.25	12.811	33.778206	-117.862808		FR	3	MAIN	894			
+1202949	22	E	12	59	53980	R11.25	12.811	33.778206	-117.862808	.485	ML	3	MAIN	894			
+1202954	22	W	12	59	53980	R11.68	13.241	33.776676	-117.855696		OR	1	GLASSELL1	898			
+1202960	22	W	12	59	53980	R11.68	13.241	33.776676	-117.855696	.39	ML	3	GLASSELL1	898			
+1202964	22	E	12	59	53980	R11.68	13.241	33.776567	-117.855753	.38	ML	3	GLASSELL1	898			
+1202968	22	E	12	59	53980	R11.68	13.241	33.776567	-117.855753		FR	1	GLASSELL1	898			
+1202971	22	E	12	59	53980	R12.01	13.571	33.77516	-117.850292		OR	1	GLASSELL2	895			
+1202977	22	E	12	59	53980	R12.01	13.571	33.77516	-117.850292	.285	ML	4	GLASSELL2	895			
+1202981	22	W	12	59	53980	R12.01	13.571	33.775279	-117.850279	.285	ML	3	GLASSELL2	895			
+1202985	22	W	12	59	53980	R12.01	13.571	33.775279	-117.850279		FR	2	GLASSELL2	895			
+1202988	22	W	12	59	53980	R12.7	14.261	33.776862	-117.838554		OR	1	TUSTIN	897			
+1202993	22	W	12	59	53980	R12.7	14.261	33.776862	-117.838554	.689	ML	4	TUSTIN	897			
+1203009	55	S	12	59	16532	R2.77	2.77	33.651901	-117.908673		OR	1	VICTORIA1	1824			
+1203014	55	N	12	59	16532	R2.7	2.7	33.650995	-117.909275		FR	1	VICTORIA1	1824			
+1203016	55	S	12	59	16532	R2.77	2.77	33.651901	-117.908673	2.65	ML	3	VICTORIA1	1824			
+1203021	55	N	12	59	16532	R2.77	2.77	33.651784	-117.908497	2.65	ML	4	VICTORIA1	1824			
+1203027	55	N	12	59	16532	R3.091	3.091	33.655481	-117.905044		OR	1	VICTORIA2	1806			
+1203032	55	S	12	59	16532	R3.07	3.07	33.655366	-117.905456		FR	2	VICTORIA2	1806			
+1203035	55	N	12	59	16532	R3.07	3.07	33.655235	-117.905264	.41	ML	4	VICTORIA2	1806			
+1203040	55	S	12	59	16532	R3.07	3.07	33.655366	-117.905456	.41	ML	4	VICTORIA2	1806			
+1203045	55	S	12	59	16532	R3.59	3.59	33.661183	-117.899681		OR	1	FAIR 1	1805			
+1203050	55	S	12	59	16532	R3.59	3.59	33.661183	-117.899681	.45	ML	4	FAIR 1	1805			
+1203055	55	N	12	59	16532	R3.59	3.59	33.661052	-117.899494		FR	1	FAIR 1	1805			
+1203057	55	N	12	59	16532	R3.59	3.59	33.661052	-117.899494	.45	ML	4	FAIR 1	1805			
+1203063	55	N	12	59	16532	R3.97	3.97	33.665298	-117.895303		OR	1	FAIR 2	1804			
+1203068	55	S	12	59	16532	R3.96	3.96	33.66532	-117.895602		FR	2	FAIR 2	1804			
+1203071	55	N	12	59	16532	R3.97	3.97	33.665298	-117.895303	.495	ML	4	FAIR 2	1804			
+1203076	55	S	12	59	16532	R3.97	3.97	33.665433	-117.895493	.495	ML	4	FAIR 2	1804			
+1203082	55	N	12	59	16532	R4.58	4.58	33.671785	-117.888101	.365	ML	4	BRISTOL	2501			
+1203084	55	S	12	59	16532	R4.7	4.7	33.673112	-117.88678	.24	ML	3	BAKER 1	952			
+1203086	55	N	12	59	16532	R5.87	5.87	33.685939	-117.873498		OR	1	PA. ON TO N 55	916			
+1203088	55	S	12	59	16532	R5.8	5.8	33.685224	-117.874399		FF	1	N405 to S55	916			
+1203090	55	N	12	59	16532	R5.87	5.87	33.685939	-117.873498	.295	ML	3	PAULARINO 2	916			
+1203095	55	S	12	59	16532	R5.87	5.87	33.686016	-117.873635	.42	ML	3	PAULARINO 2	916			
+1203104	55	S	12	59	69000	R6.88	6.88	33.697495	-117.862677		OR	1	MACARTHU1	950			
+1203108	55	S	12	59	69000	R6.88	6.88	33.697495	-117.862677	.34	HV	2	MACARTHU1	950			
+1203110	55	S	12	59	69000	R6.88	6.88	33.697495	-117.862677	.34	ML	4	MACARTHU1	950			
+1203116	55	N	12	59	69000	R6.94	6.94	33.698026	-117.861831		OR	1	MACARTHU1	919			
+1203120	55	N	12	59	69000	R6.94	6.94	33.698026	-117.861831		FR	2	MACARTHU1	919			
+1203122	55	N	12	59	69000	R6.94	6.94	33.698026	-117.861831	.405	HV	2	MACARTHU1	919			
+1203124	55	N	12	59	69000	R6.94	6.94	33.698026	-117.861831	.375	ML	4	MACARTHU1	919			
+1203130	55	S	12	59	69000	R7.03	7.03	33.699146	-117.861041		OR	1	MACARTHU2	949			
+1203134	55	S	12	59	69000	R7.03	7.03	33.699146	-117.861041	.37	HV	2	MACARTHU2	949			
+1203136	55	S	12	59	69000	R7.03	7.03	33.699146	-117.861041	.37	ML	4	MACARTHU2	949			
+1203141	55	N	12	59	69000	R7.16	7.16	33.70056	-117.8595		OR	1	MACARTHU2	920			
+1203146	55	N	12	59	69000	R7.16	7.16	33.70056	-117.8595	.455	HV	1	MACARTHU2	920			
+1203148	55	N	12	59	69000	R7.1	7.1	33.699873	-117.860155	.455	ML	4	MACARTHU2	920			
+1203154	55	S	12	59	69000	R7.62	7.62	33.705879	-117.854598		OR	1	DYER 1	948			
+1203159	55	S	12	59	69000	R7.62	7.62	33.705879	-117.854598	.545	HV	1	DYER 1	948			
+1203166	55	N	12	59	69000	R7.85	7.85	33.708364	-117.85183		OR	1	DYER 1	921			
+1203170	55	N	12	59	69000	R7.85	7.85	33.708364	-117.85183	.48	HV	1	DYER 1	921			
+1203172	55	N	12	59	69000	R7.85	7.85	33.708364	-117.85183	.51	ML	4	DYER 1	921			
+1203177	55	N	12	59	69000	R8.12	8.12	33.711314	-117.848847		OR	1	DYER 2	922			
+1203182	55	N	12	59	69000	R8.12	8.12	33.711314	-117.848847	.375	HV	1	DYER 2	922			
+1203184	55	N	12	59	69000	R8.12	8.12	33.711314	-117.848847	.375	ML	4	DYER 2	922			
+1203188	55	S	12	59	69000	R8.12	8.12	33.711451	-117.849099	.49	ML	5	DYER 2	922			
+1203193	55	S	12	59	69000	R8.12	8.12	33.711451	-117.849099		FR	1	DYER 2	922			
+1203197	55	S	12	59	69000	R9.19	9.19	33.723387	-117.837265		OR	1	EDINGER 1	947			
+1203202	55	S	12	59	69000	R9.19	9.19	33.723387	-117.837265		FR	1	EDINGER 1	947			
+1203204	55	S	12	59	69000	R9.19	9.19	33.723387	-117.837265	.7	HV	1	EDINGER 1	947			
+1203206	55	S	12	59	69000	R9.19	9.19	33.723387	-117.837265	.62	ML	4	EDINGER 1	947			
+1203212	55	N	12	59	69000	R9.41	9.41	33.726049	-117.83503		OR	1	EDINGER 2	923			
+1203217	55	N	12	59	69000	R9.41	9.41	33.726049	-117.83503		FR	1	EDINGER 2	923			
+1203219	55	N	12	59	69000	R9.41	9.41	33.726049	-117.83503	.7	HV	1	EDINGER 2	923			
+1203221	55	N	12	59	69000	R9.41	9.41	33.726049	-117.83503	.62	ML	4	EDINGER 2	923			
+1203227	55	S	12	59	80854	R10	10	33.734422	-117.83402		OR	1	MCFADDEN	946			
+1203232	55	S	12	59	80854	R10	10	33.734422	-117.83402		FR	2	MCFADDEN	946			
+1203237	55	S	12	59	80854	R10	10	33.734422	-117.83402	.596	HV	1	MCFADDEN	946			
+1203239	55	S	12	59	69000	R9.84	9.84	33.73212	-117.833996	.596	ML	4	MCFADDEN	946			
+1203245	55	N	12	59	80854	R10	10	33.734423	-117.833528		OR	1	MCFADDEN	924			
+1203250	55	N	12	59	80854	R10	10	33.734423	-117.833528		FR	1	MCFADDEN	924			
+1203252	55	N	12	59	80854	R10	10	33.734423	-117.833528	.386	HV	1	MCFADDEN	924			
+1203254	55	N	12	59	69000	R9.84	9.84	33.732101	-117.833555	.386	ML	5	MCFADDEN	924			
+1203262	55	N	12	59	80854	10.4	10.382	33.739982	-117.83368		FF	1	N55 to S5	2344			
+1203264	55	S	12	59	80854	10.4	10.382	33.739982	-117.833908	.241	HV	1	S OF 5	2344			
+1203266	55	S	12	59	80854	10.4	10.382	33.739982	-117.833908	.321	ML	4	S OF 5	2344			
+1203271	55	S	12	59	80854	10.5	10.482	33.741429	-117.833876	.61	ML	3	N OF 5	2348			
+1203280	55	S	12	59	80854	10.84	10.822	33.746251	-117.83311		FR	2	FOURTH 2	927			
+1203294	55	N	12	59		11.1	11.082	33.749859	-117.831768		OR	1	FOURTH 2	927			
+1203299	55	N	12	59		11.1	11.082	33.749859	-117.831768		FR	2	FOURTH 2	927			
+1203301	55	N	12	59		11.1	11.082	33.749859	-117.831768	.62	HV	1	FOURTH 2	927			
+1203303	55	N	12	59		11.1	11.082	33.749859	-117.831768	.62	ML	4	FOURTH 2	927			
+1203308	55	S	12	59	69000	11.62	11.602	33.75738	-117.831392		OR	1	17TH 1	942			
+1203313	55	S	12	59	69000	11.62	11.602	33.75738	-117.831392		FR	1	17 TH 1	942			
+1203315	55	S	12	59	69000	11.62	11.602	33.75738	-117.831392	.9	HV	1	17 TH 1	942			
+1203317	55	S	12	59	69000	11.62	11.602	33.75738	-117.831392	.9	ML	4	17TH 1	942			
+1203322	55	N	12	59	69000	11.74	11.722	33.759105	-117.830994		OR	1	17TH 1	928			
+1203327	55	N	12	59	69000	11.74	11.722	33.759105	-117.830994		FR	2	17 TH 1	928			
+1203329	55	N	12	59	69000	11.74	11.722	33.759105	-117.830994	.45	HV	1	17 TH 1	928			
+1203331	55	N	12	59	69000	11.74	11.722	33.759105	-117.830994	.45	ML	4	17TH 1	928			
+1203336	55	N	12	59	69000	12	11.982	33.762898	-117.830834		OR	1	17TH 2	929			
+1203340	55	N	12	59	69000	12	11.982	33.762898	-117.830834	.28	HV	1	17TH 2	929			
+1203342	55	N	12	59	69000	12	11.982	33.762898	-117.830834	.28	ML	4	17TH 2	929			
+1203351	55	S	12	59	53980	13.51	13.492	33.784755	-117.831128		OR	1	CHAPMAN 1	940			
+1203359	55	S	12	59	53980	13.51	13.492	33.784755	-117.831128	.525	HV	1	CHAPMAN 1	940			
+1203361	55	S	12	59	53980	13.51	13.492	33.784755	-117.831128	.525	ML	5	CHAPMAN 1	940			
+1203379	55	S	12	59	53980	13.75	13.732	33.788212	-117.831081		OR	1	CHAPMAN 2	939			
+1203383	55	S	12	59	53980	13.75	13.732	33.788212	-117.831081		FR	1	CHAPMAN 2	939			
+1203385	55	S	12	59	53980	13.75	13.732	33.788212	-117.831081	.445	HV	1	CHAPMAN 2	939			
+1203387	55	S	12	59	53980	13.75	13.732	33.788212	-117.831081	.445	ML	4	CHAPMAN 2	939			
+1203396	55	N	12	59	53980	13.9	13.882	33.790409	-117.830884		FR	1	CHAPMAN 2 WB	932			
+1203398	55	N	12	59	53980	13.9	13.882	33.790409	-117.830884	.85	HV	1	CHAPMAN 2	932			
+1203400	55	N	12	59	53980	13.9	13.882	33.790409	-117.830884	.85	ML	4	CHAPMAN 2	932			
+1203420	55	N	12	59	53980	15.22	15.202	33.809608	-117.831849		OR	1	KATELLA 1	933			
+1203424	55	N	12	59	53980	15.22	15.202	33.809608	-117.831849		FR	2	KATELLA	933			
+1203426	55	N	12	59	53980	15.22	15.202	33.809608	-117.831849	.4	HV	1	KATELLA	933			
+1203428	55	N	12	59	53980	15.22	15.202	33.809608	-117.831849	.4	ML	4	KATELLA	933			
+1203440	55	S	12	59	53980	16.71	16.692	33.830875	-117.834539	1.421	ML	4	LINCOLN 1	937			
+1203458	55	N	12	59	53980	17.12	17.102	33.837111	-117.834992		OR	2	LINCOLN 2	935			
+1203464	55	N	12	59	53980	17.12	17.102	33.837111	-117.834992		FR	2	LINCOLN 2	935			
+1203468	55	N	12	59	53980	17.12	17.102	33.837111	-117.834992	1.216	ML	4	LINCOLN 2	935			
+1203475	91	W	12	59	40256	R.4	15.139	33.85962	-118.035622		OR	1	ORANGETHORPE	315			
+1203481	91	W	12	59	40256	R.49	15.229	33.859047	-118.034214	.684	ML	4	ORANGETHORPE	315			
+1203487	91	E	12	59	40256	R.6	15.339	33.858147	-118.032578		OR	1	ORANGETHORPE	305			
+1203493	91	E	12	59	40256	R.6	15.339	33.858147	-118.032578		FR	2	ORANGETHORPE	315			
+1203495	91	E	12	59	40256	R.6	15.339	33.858147	-118.032578	.739	ML	4	ORANGETHORPE	305			
+1203501	91	E	12	59	40256	R1	15.739	33.856083	-118.026091		OR	1	VALLEY VIEW	306			
+1203506	91	E	12	59	40256	R1	15.739	33.856083	-118.026091	.36	ML	4	VALLEY VIEW	306			
+1203511	91	W	12	59	40256	R1	15.739	33.856241	-118.026045		FR	1	VALLEY VIEW	306			
+1203513	91	W	12	59	40256	R1	15.739	33.856241	-118.026045	.415	ML	4	VALLEY VIEW	306			
+1203519	91	W	12	59	40256	R1.69	16.429	33.856065	-118.014055		OR	1	KNOTT 1	314			
+1203524	91	W	12	59	40256	R1.69	16.429	33.856065	-118.014055	.335	ML	4	KNOTT 1	314			
+1203530	91	E	12	59	40256	R1.81	16.549	33.855903	-118.011986		OR	1	KNOTT 1	307			
+1203534	91	E	12	59	40256	R1.81	16.549	33.855903	-118.011986		FR	1	KNOTT 1	307			
+1203536	91	E	12	59	40256	R1.81	16.549	33.855903	-118.011986	.335	ML	4	KNOTT 1	307			
+1203542	91	W	12	59	8786	R1.99	16.729	33.856125	-118.008835		OR	1	KNOTT 2	313			
+1203546	91	W	12	59	8786	R1.99	16.729	33.856125	-118.008835		FR	1	KNOTT 2	313			
+1203549	91	W	12	59	8786	R1.99	16.729	33.856125	-118.008835	.355	ML	4	KNOTT 2	313			
+1203555	91	E	12	59	8786	R1.99	16.729	33.855926	-118.008847		OR	1	KNOTT 2	308			
+1203561	91	E	12	59	8786	R1.99	16.729	33.855926	-118.008847	.385	ML	4	KNOTT 2	308			
+1203567	91	W	12	59	8786	R2.4	17.139	33.856174	-118.001703		OR	1	BEACH 1	3312			
+1203573	91	W	12	59	8786	R2.4	17.139	33.856174	-118.001703	.305	ML	4	BEACH 1	3312			
+1203579	91	E	12	59	8786	R2.58	17.319	33.855997	-117.998577		OR	1	BEACH 1	309			
+1203585	91	E	12	59	8786	R2.58	17.319	33.855997	-117.998577		FR	3	BEACH 1	309			
+1203589	91	E	12	59	8786	R2.58	17.319	33.855997	-117.998577	.385	ML	4	BEACH 1	309			
+1203595	91	W	12	59	8786	R2.6	17.339	33.856177	-117.998227		OR	1	BEACH 2	3311			
+1203601	91	W	12	59	8786	R2.6	17.339	33.856177	-117.998227		FR	2	BEACH 2	3311			
+1203604	91	W	12	59	8786	R2.6	17.339	33.856177	-117.998227	.3	ML	4	BEACH 2	3311			
+1203610	91	E	12	59	8786	R2.76	17.499	33.856024	-117.995448		OR	1	BEACH 2	310			
+1203615	91	E	12	59	8786	R2.76	17.499	33.856024	-117.995448	.21	ML	4	BEACH 2	310			
+1203623	91	W	12	59	28000	R3.87	18.609	33.857654	-117.976502		OR	1	MAGNOLIA	1132			
+1203631	91	W	12	59	28000	R3.87	18.609	33.857654	-117.976502	.362	ML	3	MAGNOLIA	1132			
+1203636	91	E	12	59	40256	R.45	15.189	33.85912	-118.034919		OR	1	MAGNOLIA	1087			
+1203642	91	E	12	59	28000	.45	18.823	33.856043	-117.972438	.497	ML	4	MAGNOLIA	1087			
+1203646	91	W	12	59	2000	.45	18.863	33.856235	-117.972391		FR	1	MAGNOLIA	1087			
+1203649	91	W	12	59	28000	.76	19.173	33.854549	-117.967351	.335	ML	4	GILBERT	2097			
+1203654	91	E	12	59	28000	.76	19.133	33.854376	-117.967371	.46	ML	5	GILBERT	2097			
+1203659	91	W	12	59	28000	1.12	19.533	33.853951	-117.961157		OR	1	BROOKHURST	1131			
+1203663	91	W	12	59	28000	1.12	19.533	33.853951	-117.961157		FR	2	BROOKHURST	1131			
+1203665	91	W	12	59	28000	1.12	19.533	33.853951	-117.961157	.675	ML	4	BROOKHURST	1131			
+1203671	91	E	12	59	2000	1.37	19.743	33.853902	-117.95679		OR	1	BROOKHURST	1088			
+1203679	91	E	12	59	2000	1.37	19.743	33.853902	-117.95679	.82	ML	4	BROOKHURST	1088			
+1203684	91	W	12	59	2000	2.11	20.523	33.854189	-117.943925		OR	1	EUCLID	1130			
+1203690	91	W	12	59	2000	2.11	20.523	33.854189	-117.943925		FR	2	EUCLID	1130			
+1203692	91	W	12	59	2000	2.11	20.523	33.854189	-117.943925	1.005	ML	4	EUCLID	1130			
+1203698	91	E	12	59	2000	2.4	20.773	33.854029	-117.938876		OR	1	EUCLID	1089			
+1203704	91	E	12	59	2000	2.4	20.773	33.854029	-117.938876	1.27	ML	4	EUCLID	1089			
+1203711	91	W	12	59	2000	3.13	21.543	33.853907	-117.926204		OR	1	HARBOR 1	1129			
+1203718	91	W	12	59	2000	3.13	21.543	33.853907	-117.926204	.9	ML	4	HARBOR 1	1129			
+1203756	91	E	12	59	28000	3.91	22.283	33.853681	-117.912688		OR	1	LEMON	1091			
+1203760	91	W	12	59	28000	3.91	22.323	33.853895	-117.912686		FR	1	LEMON	1091			
+1203762	91	E	12	59	28000	3.91	22.283	33.853681	-117.912688	.89	ML	4	LEMON	1091			
+1203768	91	W	12	59	2000	4.18	22.593	33.853925	-117.907991		OR	1	EAST	1127			
+1203772	91	W	12	59	2000	4.18	22.593	33.853925	-117.907991		FR	2	EAST	1127			
+1203774	91	W	12	59	2000	4.18	22.593	33.853925	-117.907991	.43	ML	4	EAST	1127			
+1203780	91	E	12	59	2000	4.35	22.723	33.853767	-117.905042		OR	1	EAST	1092			
+1203788	91	E	12	59	2000	4.35	22.723	33.853767	-117.905042	.295	ML	4	EAST	1092			
+1203793	91	E	12	59	2000	4.77	23.143	33.853874	-117.897738	.5	ML	4	ACACIA	2174			
+1203799	91	W	12	59	2000	4.77	23.183	33.854035	-117.897729	.48	ML	4	ACACIA	2174			
+1203805	91	W	12	59	2000	5.14	23.553	33.854309	-117.891303		OR	1	STATE COLLEGE	1126			
+1203811	91	W	12	59	2000	5.14	23.553	33.854309	-117.891303		FR	1	STATE COLLEGE	1126			
+1203813	91	W	12	59	2000	5.14	23.553	33.854309	-117.891303	.365	ML	4	STATE COLLEGE	1126			
+1203819	91	E	12	59	2000	5.35	23.723	33.853992	-117.887676		OR	1	STATE COLLEGE	1093			
+1203825	91	E	12	59	2000	5.35	23.723	33.853992	-117.887676	.365	ML	4	STATE COLL	1093			
+1203831	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605	.4	ML	3	W OF 57	2376			
+1203835	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605		FF	1	N57 to W91	2376			
+1203838	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605	.4	HV	1	W OF 57	2376			
+1203845	91	W	12	59	2000	6.15	24.563	33.849561	-117.875092	.4	ML	3	W OF 57	2376			
+1203850	91	E	12	59	2000	6.3	24.673	33.848316	-117.872812	.385	ML	4	E OF 57	2377			
+1203854	91	E	12	59	2000	6.3	24.673	33.848316	-117.872812	.385	HV	1	E OF 57	2377			
+1203861	91	W	12	59	2000	6.3	24.713	33.848505	-117.872819	.135	ML	3	E OF 57	2377			
+1203866	91	E	12	59	2000	6.82	25.193	33.846226	-117.864299	.5	ML	4	LA PALMA	2175			
+1203871	91	W	12	59	2000	6.42	24.833	33.847706	-117.870973	.505	ML	5	LA PALMA	2175			
+1203878	91	E	12	59	2000	7.3	25.673	33.847636	-117.856212		OR	1	GLASSELL1	1096			
+1203882	91	E	12	59	2000	7.3	25.673	33.847636	-117.856212		FR	1	GLASSELL 1	1096			
+1203884	91	E	12	59	2000	7.3	25.673	33.847636	-117.856212		CD	1	GLASSELL 1	1096			
+1203886	91	E	12	59	2000	7.3	25.673	33.847636	-117.856212	.33	ML	3	GLASSELL1	1096			
+1203891	91	W	12	59	2000	7.31	25.723	33.847931	-117.855999		OR	1	KRAEMER 1	1123			
+1203896	91	W	12	59	2000	7.31	25.723	33.847931	-117.855999	.49	ML	5	KRAEMER 1	1123			
+1203903	91	W	12	59	2000	7.4	25.813	33.848299	-117.854502		OR	1	KRAEMER 2	1122			
+1203907	91	W	12	59	2000	7.4	25.813	33.848299	-117.854502		FR	1	KRAEMER 2	1122			
+1203909	91	W	12	59	2000	7.4	25.813	33.848299	-117.854502	.275	ML	5	KRAEMER 2	1122			
+1203914	91	E	12	59	2000	7.48	25.853	33.848381	-117.85323		OR	1	GLASSELL2	1097			
+1203920	91	E	12	59	2000	7.48	25.853	33.848381	-117.85323		CD	2	GLASSELL 2	1097			
+1203922	91	E	12	59	2000	7.48	25.853	33.848381	-117.85323	.28	ML	3	GLASSELL2	1097			
+1203927	91	E	12	59	2000	7.86	26.233	33.849953	-117.846936	.44	ML	4	GROVE	2176			
+1203931	91	W	12	59	2000	7.86	26.273	33.850205	-117.846854	.48	ML	5	GROVE	2176			
+1203937	91	W	12	59	2000	8.36	26.773	33.851349	-117.838448		OR	1	TUSTIN	1121			
+1203942	91	W	12	59	2000	8.36	26.773	33.851349	-117.838448		FR	2	TUSTIN	1121			
+1203944	91	W	12	59	2000	8.36	26.773	33.851349	-117.838448	1.045	ML	5	TUSTIN	1121			
+1203949	91	E	12	59	2000	8.36	26.733	33.851164	-117.838568		OR	1	TUSTIN	1098			
+1203955	91	E	12	59	2000	8.36	26.733	33.851164	-117.838568		FR	1	TUSTIN	1098			
+1203957	91	E	12	59	2000	8.36	26.733	33.851164	-117.838568	1.11	ML	4	TUSTIN	1098			
+1203967	91	W	12	59	2000	R9.9	28.313	33.849084	-117.816715		OR	1	LAKEVIEW1	1119			
+1203972	91	W	12	59	2000	R9.95	28.363	33.849591	-117.816135	.89	ML	5	LAKEVIEW1	1119			
+1203979	91	E	12	59	2000	R10.08	28.453	33.850669	-117.814377		OR	1	LAKEVIEW1	1100			
+1203984	91	E	12	59	2000	R10.08	28.453	33.850669	-117.814377	.955	ML	6	LAKEVIEW1	1100			
+1203991	91	W	12	59	2000	R10.1	28.513	33.851107	-117.814374		OR	1	LAKEVIEW 2	1118			
+1203996	91	W	12	59	2000	R10.1	28.513	33.851107	-117.814374		FR	1	LAKEVIEW 2	1118			
+1203998	91	W	12	59	2000	R10.14	28.553	33.851525	-117.813891	.445	ML	5	LAKEVIEW2	1118			
+1204005	91	E	12	59	2000	R10.27	28.643	33.852542	-117.811988		OR	1	LAKEVIEW2	1101			
+1204010	91	E	12	59	2000	R10.27	28.643	33.852542	-117.811988	.38	ML	6	LAKEVIEW2	1101			
+1204017	91	W	12	59	2000	R11.3	29.713	33.854393	-117.794734		OR	1	IMPERIAL1	1117			
+1204023	91	W	12	59	2000	R11.38	29.793	33.854368	-117.793339	.33	ML	5	IMPERIAL1	1117			
+1204030	91	E	12	59	2000	R11.5	29.873	33.854193	-117.791214		OR	1	IMPERIAL1	1102			
+1204036	91	E	12	59	2000	R11.5	29.873	33.854193	-117.791214		FR	2	IMPERIAL 1	1102			
+1204038	91	E	12	59	2000	R11.49	29.863	33.854176	-117.791386	.43	ML	5	IMPERIAL1	1102			
+1204044	91	W	12	59	2000	R11.6	30.013	33.854766	-117.789563		OR	1	IMPERIAL2	1116			
+1204050	91	W	12	59	2000	R11.6	30.013	33.854766	-117.789563		FR	2	IMPERIAL 2	1116			
+1204052	91	W	12	59	2000	R11.59	30.003	33.854713	-117.789725	.338	ML	5	IMPERIAL2	1116			
+1204058	91	E	12	59	2000	R11.7	30.073	33.855071	-117.787923		OR	1	IMPERIAL2	1103			
+1204064	91	E	12	59	2000	R11.7	30.073	33.855071	-117.787923	.343	ML	5	IMPERIAL2	1103			
+1204070	91	W	12	59	2000	R14.2	32.613	33.869973	-117.74891		OR	1	WEIR CNYN1	1115			
+1204076	91	W	12	59	2000	R14.26	32.673	33.870169	-117.747893	.54	ML	5	WEIR CNYN1	1115			
+1204083	91	E	12	59	2000	R14.4	32.773	33.870197	-117.745295		OR	1	WEIR CNYN1	1105			
+1204089	91	E	12	59	2000	R14.4	32.773	33.870197	-117.745295		FR	2	WEIR CNYN 1	1105			
+1204091	91	E	12	59	2000	R14.43	32.803	33.870278	-117.744781	.635	ML	5	WEIR CNYN1	1105			
+1204097	91	W	12	59	2000	R14.5	32.913	33.870876	-117.743806		OR	1	WEIR CNYN2	1114			
+1204103	91	W	12	59	2000	R14.5	32.913	33.870876	-117.743806		FR	2	WEIR CNYN 2	1114			
+1204105	91	W	12	59	2000	R14.43	32.843	33.870661	-117.744997	.425	ML	5	WEIR CNYN2	1114			
+1204111	91	E	12	59	2000	R14.6	32.973	33.870709	-117.74185		OR	1	WEIR CNYN2	1106			
+1204117	91	E	12	59	2000	R14.62	32.993	33.870757	-117.741504	.34	ML	5	WEIR CNYN2	1106			
+1204135	91	E	12	59	2000	R16.4	34.75	33.866735	-117.71168		OR	1	GYPSUM 1	1107			
+1204140	91	E	12	59	2000	R16.4	34.75	33.866735	-117.71168		FR	1	GYPSUM 1	1107			
+1204142	91	E	12	59	2000	R16.4	34.75	33.866735	-117.71168	.403	ML	4	GYPSUM 1	1107			
+1204148	91	E	12	59	2000	R16.6	34.95	33.868014	-117.708584		OR	1	GYPSUM 2	1108			
+1204153	91	E	12	59	2000	R16.6	34.95	33.868014	-117.708584	.322	ML	4	GYPSUM 2	1108			
+1204159	91	W	12	59	2000	R16.2	34.613	33.866503	-117.715237	.625	ML	4	GYPSUM 1	1112			
+1204168	91	W	12	59	2000	R17.84	36.253	33.873131	-117.689053	.478	ML	5	COAL	1111			
+1204181	91	E	12	59	2000	R18.13	36.48	33.870739	-117.6845	.206	ML	5	COAL	1109			
+1204193	5	S	12	59	65084	.64	72.835	33.404943	-117.598167	.765	ML	4	S LUIS REY	2611			
+1204198	5	N	12	59	65084	.65	72.908	33.40516	-117.597992	.913	ML	4	S. LUIS REY	2611			
+1204204	5	N	12	59	65084	1.26	73.518	33.413319	-117.6021		OR	1	MAGDALENA	530			
+1204209	5	N	12	59	65084	1.24	73.498	33.413051	-117.601964		FR	1	MAGDALENA	530			
+1204211	5	N	12	59	65084	1.26	73.518	33.413319	-117.6021	.59	ML	4	MAGDALENA	530			
+1204216	5	S	12	59	65084	1.26	73.455	33.41325	-117.602338	.295	ML	4	MAGDALENA	530			
+1204222	5	N	12	59	65084	1.84	74.098	33.420802	-117.6066		OR	1	EL CAMINO REAL	531			
+1204230	5	N	12	59	65084	1.83	74.088	33.420685	-117.606498	.605	ML	4	EL CAMINO REAL	531			
+1204236	5	N	12	59	65084	2.47	74.728	33.428811	-117.611817		OR	1	PRESIDIO	1514			
+1204242	5	N	12	59	65084	2.45	74.708	33.428587	-117.6116		FR	1	PRESIDIO	1514			
+1204244	5	N	12	59	65084	2.47	74.728	33.428811	-117.611817	.485	ML	4	PRESIDIO	1514			
+1204250	5	N	12	59	65084	2.8	75.058	33.432425	-117.615519		OR	1	PALIZADA	532			
+1204255	5	N	12	59	65084	2.8	75.058	33.432425	-117.615519	.38	ML	4	PALIZADA	532			
+1204261	5	N	12	59	65084	3.56	75.818	33.440202	-117.624486		OR	1	PICO 2	533			
+1204268	5	N	12	59	65084	3.56	75.818	33.440202	-117.624486	.395	ML	4	PICO 2	533			
+1204273	5	S	12	59	65084	3.56	75.755	33.440044	-117.624646	.435	ML	4	PICO 2	533			
+1204279	5	N	12	59	65084	4.02	76.278	33.44466	-117.630415	.27	ML	4	HERMOSA 1	2036			
+1204301	5	N	12	59	65084	5.4	77.658	33.455773	-117.650183	.515	ML	4	N OF VAQUERO	2034			
+1204306	5	S	12	59	65084	5.4	77.595	33.455612	-117.650318	.445	ML	4	N OF VAQUERO	2034			
+1204312	5	N	12	59	65084	5.73	77.988	33.458342	-117.655008		OR	1	ESTRELLA1	534			
+1204316	5	N	12	59	65084	5.73	77.988	33.458342	-117.655008	.245	ML	4	ESTRELLA1	534			
+1204322	5	N	12	59	17946	5.89	78.148	33.459637	-117.657305		OR	1	ESTRELLA2	535			
+1204328	5	N	12	59	17946	5.89	78.148	33.459637	-117.657305	.37	ML	5	ESTRELLA2	535			
+1204335	5	N	12	59	17946	6.47	78.728	33.464404	-117.665509		FR	1	SACRAMENTO	2543			
+1204337	5	N	12	59	17946	6.47	78.728	33.464404	-117.665509		FF	2	N5 to N1	2543			
+1204340	5	N	12	59	17946	6.47	78.728	33.464404	-117.665509	.51	ML	4	SACRAMENTO	2543			
+1204345	5	S	12	59	17946	6.47	78.665	33.464281	-117.665631	.505	ML	5	SACRAMENTO	2543			
+1204352	5	S	12	59	17946	6.6	78.795	33.465471	-117.667379		OR	1	RTE 1 SB	684			
+1204357	5	S	12	59	17946	6.6	78.795	33.465471	-117.667379	.495	ML	5	RTE 1 SB	684			
+1204367	5	N	12	59	68028	6.91	79.168	33.468032	-117.671714		OR	1	LAS RAMBLAS	536			
+1204372	5	N	12	59	68028	6.91	79.168	33.468032	-117.671714	.495	ML	4	LAS RAMBLES	536			
+1204378	5	N	12	59	68028	7.46	79.718	33.475073	-117.674271		OR	1	CAPISTRANO	539			
+1204384	5	N	12	59	68028	7.46	79.718	33.475073	-117.674271	.54	ML	4	CAPISTRANO	539			
+1204390	5	S	12	59	68028	7.99	80.185	33.481738	-117.669881	.57	ML	5	AEROPUERTO	2033			
+1204395	5	N	12	59	68028	7.99	80.248	33.481685	-117.669596	.59	ML	4	AEROPUERTO	2033			
+1204401	5	S	12	59	68028	8.6	80.795	33.489176	-117.663917	.58	ML	5	S JUAN CREEK	682			
+1204403	5	N	12	59	68028	8.64	80.898	33.489561	-117.663255		OR	1	S JUAN CREEK	540			
+1204409	5	N	12	59	68028	8.64	80.898	33.489561	-117.663255	.58	ML	4	S JUAN CREEK	540			
+1204415	5	S	12	59	68028	9.4	81.595	33.499521	-117.658583	.475	ML	4	ORTEGA 1	683			
+1204417	5	N	12	59	68028	9.69	81.948	33.503727	-117.658585		OR	2	ORTEGA  2	541			
+1204422	5	N	12	59	68028	9.69	81.948	33.503727	-117.658585	.215	ML	4	ORTEGA  2	541			
+1204428	5	S	12	59	68028	10.7	82.895	33.517588	-117.664664	.485	ML	5	JUNIPERO SERRA	680			
+1204430	5	N	12	59	68028	11.06	83.318	33.522606	-117.666438		OR	1	JUNIPERO SERRA	542			
+1204436	5	N	12	59	68028	11.05	83.308	33.52247	-117.666382	.485	ML	5	JUNIPERO SERRA	542			
+1204442	5	S	12	59	68028	11.37	83.565	33.526418	-117.668912	.605	ML	6	TRABUCO	2030			
+1204447	5	N	12	59	68028	11.37	83.628	33.526621	-117.66866	.43	ML	6	TRABUCO	2030			
+1204453	5	N	12	59	68028	11.91	84.168	33.53247	-117.674488	.445	ML	6	WILDWOOD	2544			
+1204458	5	S	12	59	68028	11.91	84.105	33.53231	-117.674919	.515	ML	6	WILDWOOD	2544			
+1204466	5	N	12	59	48256	13.06	85.318	33.54896	-117.672682		OR	1	AVERY PARK	543			
+1204472	5	N	12	59	48256	13.05	85.308	33.548817	-117.672686	.72	ML	4	AVERY PARK	543			
+1204478	5	S	12	59	48256	13.6	85.795	33.556667	-117.673131	.83	ML	4	CROWN VA1	678			
+1204480	5	N	12	59	48256	13.71	85.968	33.558239	-117.672849		OR	1	CROWN VA1	544			
+1204486	5	N	12	59	48256	13.7	85.958	33.558096	-117.672848	.41	ML	4	CROWN VA1	544			
+1204492	5	N	12	59	48256	13.88	86.138	33.560694	-117.672778		OR	1	CROWN VA2	545			
+1204498	5	N	12	59	48256	13.57	85.828	33.556241	-117.672812		FR	1	CROWN VA1	544			
+1204501	5	N	12	59	48256	13.87	86.128	33.560549	-117.672791	.38	ML	4	CROWN VA2	545			
+1204507	5	S	12	59	48256	15.03	87.225	33.577397	-117.671983	.42	ML	4	OSO PARK1	677			
+1204509	5	N	12	59	48256	15.14	87.398	33.578995	-117.671617		OR	1	OSO PARK1	547			
+1204513	5	N	12	59	48256	15.13	87.388	33.578849	-117.67162		FR	2	OSO PARK 1	547			
+1204515	5	N	12	59	48256	15.13	87.388	33.578849	-117.67162	.445	ML	4	OSO PARK1	547			
+1204521	5	S	12	59	48256	15.3	87.495	33.581316	-117.671925	.385	ML	4	OSO PARK2	676			
+1204523	5	N	12	59	48256	15.36	87.618	33.582197	-117.671571		OR	1	OSO PARK2	548			
+1204532	5	N	12	59	48256	15.35	87.608	33.582052	-117.67157	.335	ML	4	OSO PARK2	548			
+1204538	5	S	12	59	48256	16.3	88.495	33.595354	-117.673779	.35	ML	4	LA PAZ 1	674			
+1204540	5	N	12	59	39220	16.52	88.778	33.597965	-117.676194		OR	1	LA PAZ 1	550			
+1204544	5	N	12	59	48256	16.37	88.628	33.596326	-117.674275		FR	1	LA PAZ 1	550			
+1204546	5	N	12	59	39220	16.51	88.768	33.597861	-117.676059	.445	ML	4	LA PAZ 1	550			
+1204552	5	S	12	59	39220	16.5	88.695	33.597607	-117.67615	.48	ML	4	LA PAZ 2	673			
+1204554	5	N	12	59	39220	16.7	88.958	33.599314	-117.678839		OR	1	LA PAZ 2	552			
+1204559	5	N	12	59	39220	16.69	88.948	33.599252	-117.678685	.46	ML	4	LA PAZ 2	552			
+1204565	5	S	12	59	39220	17.26	89.455	33.602645	-117.687691	.495	ML	5	ALICIA 1	1447			
+1204567	5	N	12	59	39220	17.44	89.698	33.604332	-117.689974		OR	1	ALICIA 1	1445			
+1204571	5	N	12	59	39220	17.43	89.688	33.604242	-117.68984	.47	ML	5	ALICIA 1	1445			
+1204577	5	S	12	59	39220	17.49	89.685	33.604617	-117.69087	.455	ML	4	ALICIA 2	1446			
+1204579	5	N	12	59	39220	17.64	89.898	33.606111	-117.692884		OR	2	ALICIA 2	546			
+1204586	5	N	12	59	39220	17.63	89.888	33.606025	-117.692734	.37	ML	6	ALICIA 2	546			
+1204591	5	N	12	59	39220	17.63	89.888	33.606025	-117.692734	.37	HV	1	ALICIA 2	546			
+1204607	5	S	12	59	39220	18.5	90.695	33.612561	-117.705361	.265	ML	5	EL TORO 1	671			
+1204609	5	N	12	59	39220	18.62	90.878	33.613985	-117.706587		OR	1	EL TORO 1	554			
+1204615	5	N	12	59	39220	18.61	90.868	33.613883	-117.706467	.325	ML	5	EL TORO 1	554			
+1204621	5	S	12	59	39220	18.7	90.895	33.614654	-117.707825	.415	ML	5	EL TORO 2	670			
+1204623	5	N	12	59	39220	18.83	91.088	33.616217	-117.709128		OR	1	EL TORO 2	555			
+1204632	5	N	12	59	39220	18.82	91.078	33.616112	-117.70901	.36	ML	5	EL TORO 2	555			
+1204638	5	N	12	59	39220	19.33	91.588	33.621929	-117.714379	.59	ML	6	RED ROBIN	2012			
+1204643	5	S	12	59	39220	19.33	91.525	33.621819	-117.714838	.55	ML	6	RED ROBIN	2012			
+1204650	5	S	12	59	39220	19.8	91.995	33.627286	-117.719875	.285	ML	6	LAKE FOR1	669			
+1204665	5	S	12	59	39220	19.9	92.095	33.628454	-117.720919	.22	ML	6	LAKE FOR2	668			
+1204667	5	N	12	59	39220	20	92.258	33.629553	-117.721491		OR	2	LAKE FOR2	557			
+1204672	5	N	12	59	39220	20	92.258	33.629553	-117.721491	.455	ML	5	LAKE FOR2	557			
+1204678	5	N	12	59	39220	20	92.258	33.629553	-117.721491		FR	1	LAKE FOR2	557			
+1204682	5	N	12	59	36770	20.24	92.498	33.632102	-117.724337	.295	ML	5	OLDFIELD	2011			
+1204688	5	S	12	59	36770	20.24	92.435	33.631989	-117.724813	.345	ML	5	OLDFIELD	2011			
+1204695	5	S	12	59	36770	20.59	92.785	33.635959	-117.728446	.355	ML	6	BAKE 1	583			
+1204697	5	N	12	59	36770	20.59	92.848	33.636144	-117.72806	.35	ML	6	BAKE 1	558			
+1204699	5	N	12	59	36770	20.94	93.198	33.640323	-117.731437	.33	ML	3	BAKE 2	566			
+1204701	5	S	12	59	36770	20.95	93.145	33.640308	-117.731896	.33	ML	6	BAKE 2	584			
+1204703	5	N	12	59	36770	21.25	93.508	33.644068	-117.734444	.58	ML	3	At 405	2303			
+1204707	5	S	12	59	36770	21.92	94.115	33.652076	-117.741205		OR	1	ALTON 1	1518			
+1204712	5	S	12	59	36770	21.92	94.115	33.652076	-117.741205		FR	2	ALTON 2	1519			
+1204714	5	S	12	59	36770	21.92	94.115	33.652076	-117.741205	.425	HV	1	ALTON 1	1518			
+1204716	5	S	12	59	36770	22.1	94.295	33.654255	-117.74294	.445	ML	3	ALTON 1	1518			
+1204722	5	N	12	59	36770	22.1	94.358	33.654371	-117.742629		OR	1	ALTON 2	1519			
+1204727	5	N	12	59	36770	22.1	94.358	33.654371	-117.742629		FR	1	ALTON 2	1519			
+1204729	5	N	12	59	36770	22.1	94.358	33.654371	-117.742629	.475	HV	1	ALTON 2	1519			
+1204731	5	N	12	59	36770	22.1	94.358	33.654371	-117.742629	.475	ML	4	ALTON 2	1519			
+1204737	5	S	12	59	36770	22.14	94.335	33.654741	-117.743323	.325	ML	4	ALTON 2	1519			
+1204743	5	N	12	59	36770	22.2	94.458	33.655581	-117.743597		OR	1	ALTON 3	1520			
+1204748	5	N	12	59	36770	22.2	94.458	33.655581	-117.743597	.325	HV	1	ALTON 3	1520			
+1204750	5	N	12	59	36770	22.2	94.458	33.655581	-117.743597	.325	ML	4	ALTON 3	1520			
+1204757	5	N	12	59	36770	22.75	95.008	33.662274	-117.748817	.425	HV	1	BARRANCA	2615			
+1204759	5	S	12	59	36770	22.75	94.945	33.662021	-117.749253	.475	HV	1	BARRANCA	2615			
+1204761	5	S	12	59	36770	22.75	94.945	33.662021	-117.749253	.455	ML	4	BARRANCA	2615			
+1204766	5	N	12	59	36770	22.75	95.008	33.662274	-117.748817	.425	ML	5	BARRANCA	2615			
+1204772	5	N	12	59	36770	22.75	95.008	33.662274	-117.748817		OR	1	BAR.HOV ON	2615			
+1204774	5	S	12	59	36770	22.75	94.945	33.662021	-117.749253		FR	1	BAR.HOV OFF	2615			
+1204777	5	S	12	59	36770	23.05	95.245	33.665581	-117.75203	.175	HV	2	S OF 133	2616			
+1204779	5	N	12	59	36770	23.05	95.308	33.66578	-117.751722	.225	HV	1	S OF 133	2616			
+1204781	5	S	12	59	36770	23.05	95.245	33.665581	-117.75203	.175	ML	5	S OF 133	2616			
+1204787	5	N	12	59	36770	23.05	95.308	33.66578	-117.751722	.225	ML	4	S OF 133	2616			
+1204794	5	S	12	59	36770	23.1	95.295	33.66617	-117.7525		FR	2	N OF 133	2617			
+1204796	5	S	12	59	36770	23.1	95.295	33.66617	-117.7525	.225	HV	1	N OF 133	2617			
+1204798	5	S	12	59	36770	23.1	95.295	33.66617	-117.7525	.125	ML	5	N OF 133	2617			
+1204803	5	N	12	59	36770	23.2	95.458	33.667646	-117.753237		FF	2	N133 to N5	2619			
+1204806	5	N	12	59	36770	23.2	95.458	33.667646	-117.753237	.225	HV	1	N OF 133	2619			
+1204808	5	N	12	59	36770	23.2	95.458	33.667646	-117.753237	.225	ML	4	N OF 133	2619			
+1204814	5	S	12	59	36770	R23.5	95.695	33.6716	-117.755616	.295	HV	1	S OF SAND CNYN	2618			
+1204816	5	S	12	59	36770	R23.5	95.695	33.6716	-117.755616	.195	ML	6	S OF SAND CNYN	2618			
+1204823	5	N	12	59	36770	R23.5	95.758	33.671657	-117.755266	.245	HV	1	S OF SAND CNYN	2618			
+1204825	5	N	12	59	36770	R23.5	95.758	33.671657	-117.755266	.245	ML	6	S OF SAND CNYN	2618			
+1204833	5	S	12	59		R23.69	95.885	33.674297	-117.756223		OR	1	SAND CANYON 1	665			
+1204839	5	S	12	59		R23.69	95.885	33.674297	-117.756223	.275	HV	1	SAND CANYON 1	665			
+1204841	5	S	12	59		R23.69	95.885	33.674297	-117.756223	.275	ML	5	SAND CANYON 1	665			
+1204848	5	N	12	59		R24.05	96.308	33.67881	-117.759083		OR	1	SAND CANYON 2	559			
+1204854	5	N	12	59		R24.05	96.308	33.67881	-117.759083		FR	2	SAND CANYON 2	559			
+1204857	5	S	12	59		R24.05	96.245	33.67863	-117.759362		FR	1	SAND CANYON 2	559			
+1204859	5	N	12	59		R24.05	96.308	33.67881	-117.759083	.405	HV	1	SAND CANYON 2	559			
+1204861	5	N	12	59		R24.05	96.308	33.67881	-117.759083	.405	ML	5	SAND CANYON 2	559			
+1204867	5	S	12	59		R24.05	96.245	33.67863	-117.759362	.405	HV	1	SAND CANYON 2	559			
+1204869	5	S	12	59		R24.05	96.245	33.67863	-117.759362	.405	ML	5	SAND CANYON 2	559			
+1204876	5	N	12	59		R24.5	96.758	33.68378	-117.76413	.515	HV	1	N OF SAND CNYN	2620			
+1204878	5	N	12	59		R24.5	96.758	33.68378	-117.76413	.515	ML	6	N OF SAND CNYN	2620			
+1204884	5	S	12	59		R24.5	96.695	33.683599	-117.764425	.395	HV	1	N OF SAND CNYN	2620			
+1204886	5	S	12	59		R24.5	96.695	33.683599	-117.764425	.395	ML	6	N OF SAND CNYN	2620			
+1204893	5	S	12	59	36770	R24.84	97.035	33.687939	-117.767277		OR	1	JEFFREY 1	664			
+1204899	5	S	12	59	36770	R24.84	97.035	33.687939	-117.767277		FR	2	JEFFREY 1	664			
+1204902	5	S	12	59	36770	R24.84	97.035	33.687939	-117.767277	.65	HV	1	JEFFREY 1	664			
+1204904	5	S	12	59	36770	R24.84	97.035	33.687939	-117.767277	.65	ML	5	JEFFREY 1	664			
+1204913	5	N	12	59	36770	R25.08	97.338	33.691182	-117.768954		OR	1	JEFFREY 1	560			
+1204919	5	N	12	59	36770	R25.08	97.338	33.691182	-117.768954		FR	2	JEFFREY 1	560			
+1204922	5	N	12	59	36770	R25.08	97.338	33.691182	-117.768954	.325	HV	1	JEFFREY 1	560			
+1204924	5	N	12	59	36770	R25.08	97.338	33.691182	-117.768954	.325	ML	5	JEFFREY 1	560			
+1204929	5	N	12	59	36770	R25.15	97.408	33.692068	-117.769532		OR	1	JEFFREY 2	1825			
+1204935	5	N	12	59	36770	R25.15	97.408	33.692068	-117.769532	.36	HV	1	JEFFREY 2	1825			
+1204937	5	N	12	59	36770	R25.15	97.408	33.692068	-117.769532	.36	ML	5	JEFFREY 2	1825			
+1204942	5	S	12	59	36770	R25.8	97.995	33.700148	-117.775267	.755	HV	1	YALE	2591			
+1204944	5	S	12	59	36770	R25.8	97.995	33.700148	-117.775267	.755	ML	5	YALE	2591			
+1204950	5	N	12	59	36770	R25.8	98.058	33.700287	-117.774934	.705	ML	5	YALE	2591			
+1204956	5	N	12	59	36770	R25.8	98.058	33.700287	-117.774934	.705	HV	1	YALE	2591			
+1204959	5	S	12	59	36770	R26.35	98.545	33.70706	-117.779935		OR	1	CULVER 1	663			
+1204965	5	S	12	59	36770	R26.35	98.545	33.70706	-117.779935	.43	HV	1	CULVER 1	663			
+1204967	5	S	12	59	36770	R26.35	98.545	33.70706	-117.779935	.43	ML	5	CULVER 1	663			
+1204974	5	N	12	59	36770	R26.56	98.818	33.709761	-117.781713		OR	1	CULVER 1	1510			
+1204980	5	N	12	59	36770	R26.56	98.818	33.709761	-117.781713	.505	HV	1	CULVER 1	1510			
+1204982	5	N	12	59	36770	R26.56	98.818	33.709761	-117.781713	.505	ML	5	CULVER 1	1510			
+1204989	5	S	12	59	36770	R26.66	98.855	33.710634	-117.783134		OR	1	CULVER 2	1511			
+1204995	5	S	12	59	36770	R26.66	98.855	33.710634	-117.783134	.537	HV	1	CULVER 2	1511			
+1204997	5	S	12	59	36770	R26.66	98.855	33.710634	-117.783134	.537	ML	5	CULVER 2	1511			
+1205004	5	N	12	59	36770	R26.81	99.068	33.712411	-117.784619		OR	1	CULVER 2	561			
+1205008	5	S	12	59	36770	R26.81	99.005	33.712186	-117.784926		FR	1	CULVER 2	561			
+1205010	5	N	12	59	36770	R26.81	99.068	33.712411	-117.784619	.491	HV	1	CULVER 2	561			
+1205012	5	N	12	59	36770	R26.81	99.068	33.712411	-117.784619	.491	ML	6	CULVER 2	561			
+1205020	5	S	12	59	36770	27.43	99.618	33.717966	-117.793071		OR	1	JAMBOREE 1	662			
+1205026	5	S	12	59	36770	27.43	99.618	33.717966	-117.793071	.516	HV	1	JAMBOREE 1	662			
+1205028	5	S	12	59	36770	27.43	99.618	33.717966	-117.793071	.516	ML	6	JAMBOREE 1	662			
+1205035	5	N	12	59	36770	27.55	99.801	33.719297	-117.794408		OR	1	JAMBOREE 1	1800			
+1205041	5	N	12	59	36770	27.55	99.801	33.719297	-117.794408		FR	1	JAMBOREE 1	1800			
+1205043	5	N	12	59	36770	27.55	99.801	33.719297	-117.794408	.371	HV	1	JAMBOREE 1	1800			
+1205045	5	N	12	59	36770	27.55	99.801	33.719297	-117.794408	.371	ML	5	JAMBOREE 1	1800			
+1205052	5	S	12	59	36770	27.7	99.888	33.72047	-117.796638		OR	1	JAMBOREE 2	1801			
+1205058	5	S	12	59	36770	27.7	99.888	33.72047	-117.796638		FR	1	JAMBOREE 2	1801			
+1205060	5	S	12	59	36770	27.7	99.888	33.72047	-117.796638	.46	HV	1	JAMBOREE 2	1801			
+1205062	5	S	12	59	36770	27.7	99.888	33.72047	-117.796638	.335	ML	5	JAMBOREE 2	1801			
+1205069	5	N	12	59	36770	27.56	99.811	33.719391	-117.794541	.275	HV	1	JAMBOREE 2	562			
+1205071	5	N	12	59	36770	27.56	99.811	33.719391	-117.794541	.275	ML	6	JAMBOREE 2	562			
+1205078	5	N	12	59	80854	28.1	100.351	33.724394	-117.801722		OR	2	TUSTIN RANCH	1817			
+1205084	5	N	12	59	80854	28.1	100.351	33.724394	-117.801722		FR	1	TUSTIN RANCH	1817			
+1205086	5	N	12	59	80854	28.1	100.351	33.724394	-117.801722	.84	HV	1	TUSTIN RANCH	1817			
+1205088	5	N	12	59	80854	28.1	100.351	33.724394	-117.801722	.84	ML	5	TUSTIN RANCH	1817			
+1205095	5	S	12	59	80854	28.35	100.538	33.726403	-117.805381		OR	1	TUSTIN RANCH	1822			
+1205103	5	S	12	59	80854	28.35	100.538	33.726403	-117.805381	.66	HV	1	TUSTIN  RANCH	1822			
+1205105	5	S	12	59	80854	28.1	100.288	33.724136	-117.801999	.66	ML	5	TUSTIN RANCH	1822			
+1205112	5	S	12	59	80854	29.02	101.208	33.732587	-117.814369		OR	1	RED HILL	661			
+1205120	5	S	12	59	80854	29.02	101.208	33.732587	-117.814369	.72	HV	1	RED HILL	661			
+1205122	5	S	12	59	80854	29.02	101.208	33.732587	-117.814369	.8	ML	5	RED HILL*	661			
+1205129	5	N	12	59		29.24	101.491	33.73489	-117.817068		OR	1	RED HILL	563			
+1205135	5	N	12	59		29.24	101.491	33.73489	-117.817068	.845	ML	5	RED HILL	563			
+1205139	5	S	12	59	80854	29.7	101.888	33.737386	-117.824499	.44	ML	6	NEWPORT*	564			
+1205147	5	N	12	59	80854	29.79	102.041	33.738115	-117.825811		OR	1	NEWPORT*	564			
+1205152	5	N	12	59	80854	29.79	102.041	33.738115	-117.825811	.38	ML	5	NEWPORT*	564			
+1205157	5	N	12	59	80854	30	102.251	33.739183	-117.829214	.205	ML	6	B ST.	2301			
+1205165	5	N	12	59	80854	30.2	102.451	33.740283	-117.832416	.2	ML	5	S OF 55	2267			
+1205166	5	S	12	59	80854	30.2	102.388	33.740098	-117.832494	.25	ML	4	S OF 55*	2267			
+1205168	5	N	12	59	80854	30.4	102.651	33.741403	-117.835585	.3	ML	4	N OF 55	2268			
+1205169	5	S	12	59	80854	30.4	102.588	33.741219	-117.835743	.35	ML	5	N OF 55	2268			
+1205171	5	N	12	59	80854	30.6	102.851	33.742605	-117.838695	.25	HV	1	WILLIAMS	2288			
+1205173	5	S	12	59	80854	30.6	102.788	33.742378	-117.839015	.25	HV	1	WILLIAMS (VIADUCT)	2288			
+1205175	5	N	12	59	69000	30.8	103.051	33.744413	-117.841283	.415	ML	5	1ST	213			
+1205177	5	S	12	59	69000	30.9	103.088	33.745553	-117.842538		OR	1	1ST	213			
+1205182	5	S	12	59	69000	30.9	103.088	33.745553	-117.842538	.415	ML	5	1ST	213			
+1205189	5	S	12	59	69000	31.23	103.418	33.749928	-117.844652	.25	ML	5	4TH	568			
+1205193	5	N	12	59	69000	31.23	103.481	33.750124	-117.844061	.3	ML	5	4TH	568			
+1205198	5	S	12	59	69000	31.4	103.588	33.751759	-117.846535	.185	HV	2	CONCORD	2300			
+1205200	5	S	12	59	69000	31.4	103.588	33.751759	-117.846535	.185	ML	6	CONCORD	2300			
+1205204	5	N	12	59	69000	31.4	103.651	33.752049	-117.845939	.185	ML	6	CONCORD	2300			
+1205211	5	S	12	59	69000	31.6	103.788	33.753388	-117.849326	.25	ML	6	1GRAND 1	2320			
+1205215	5	N	12	59	69000	31.6	103.851	33.753753	-117.848788	.165	ML	5	GRAND 1	2320			
+1205220	5	N	12	59	69000	31.9	104.151	33.755834	-117.85344		OR	1	GRAND 2	569			
+1205225	5	N	12	59	69000	31.73	103.981	33.754689	-117.850781	.35	ML	5	GRAND 2	569			
+1205230	5	S	12	59	69000	31.9	104.088	33.755475	-117.853795	.325	ML	5	GRAND 2	212			
+1205239	5	S	12	59	69000	32.25	104.438	33.757943	-117.859225		OR	1	17TH 1	211			
+1205244	5	S	12	59	69000	32.25	104.438	33.757943	-117.859225		FR	1	17TH 1	211			
+1205246	5	S	12	59	69000	32.25	104.438	33.757943	-117.859225	.55	ML	5	17TH 1	211			
+1205250	5	N	12	59	69000	32.3	104.551	33.758644	-117.859664	.385	ML	5	17TH 1	211			
+1205255	5	N	12	59	69000	32.5	104.751	33.760465	-117.862379		OR	1	17TH 2	572			
+1205260	5	N	12	59	69000	32.5	104.751	33.760465	-117.862379		FR	1	17TH 2	572			
+1205262	5	N	12	59	69000	32.5	104.751	33.760465	-117.862379	.15	ML	5	17TH 2	572			
+1205266	5	S	12	59	69000	32.58	104.768	33.761104	-117.863625	.375	HV	1	17TH 2	572			
+1205269	5	N	12	59	69000	32.6	104.851	33.761599	-117.863369	.35	ML	5	17TH 3	570			
+1205271	5	S	12	59	69000	33	105.188	33.766429	-117.866976		OR	1	MAIN 1	210			
+1205276	5	S	12	59	69000	33	105.188	33.766429	-117.866976	.475	ML	5	MAIN 1	210			
+1205281	5	N	12	59	69000	33.2	105.451	33.76901	-117.86784		OR	1	MAIN 2	571			
+1205286	5	S	12	59	69000	33.2	105.388	33.768742	-117.868373	.15	ML	4	MAIN 2	571			
+1205290	5	N	12	59	69000	33.2	105.451	33.76901	-117.86784	.6	ML	5	MAIN 2	571			
+1205297	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238	.3	ML	4	BROADWAY	2302			
+1205303	5	N	12	59	69000	33.8	106.051	33.776455	-117.873886	.5	ML	5	S OF 22	2299			
+1205310	5	S	12	59	69000	33.8	105.988	33.776289	-117.874337	.4	ML	4	S OF 22	2299			
+1205315	5	N	12	59	53980	34.2	106.451	33.781151	-117.878226		FF	2	N5 TO N57	2298			
+1205320	5	N	12	59	53980	34.2	106.451	33.781151	-117.878226	.25	ML	4	LA VETA	2298			
+1205324	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776	.25	ML	5	LA VETA	2284			
+1205330	5	N	12	59	53980	34.3	106.551	33.782039	-117.879468	.4	ML	4	N OF 57	2269			
+1205335	5	S	12	59	53980	34.3	106.488	33.781682	-117.880014	.25	ML	5	N OF 57	2269			
+1205341	5	N	12	59	53980	35.1	107.351	33.790771	-117.888724	.3	ML	5	STATE COLLEGE	5500			
+1205344	5	S	12	59	69000	34.6	106.788	33.784761	-117.883653		OR	1	CHAPMAN 1	265			
+1205349	5	S	12	59	69000	34.6	106.788	33.784761	-117.883653	.45	ML	6	CHAPMAN 1	265			
+1205353	5	S	12	59	69000	34.6	106.788	33.784761	-117.883653	.4	HV	1	CHAPMAN 1	265			
+1205358	5	S	12	59	53980	35.2	107.388	33.791651	-117.890222		OR	1	STATE COLLEGE	264			
+1205364	5	S	12	59	53980	35.2	107.388	33.791651	-117.890222	.4	ML	5	STATE COLLEGE	264			
+1205369	5	N	12	59	53980	35	107.251	33.789689	-117.887536		OR	1	CHAPMAN 2	573			
+1205373	5	N	12	59	53980	35	107.251	33.789689	-117.887536	.25	HV	2	CHAPMAN 2	573			
+1205375	5	N	12	59	53980	35	107.251	33.789689	-117.887536	.4	ML	5	CHAPMAN 2	573			
+1205380	5	N	12	59	53980	35.6	107.851	33.795663	-117.893833	.65	ML	5	GENE AUTRY	2018			
+1205384	5	S	12	59	53980	35.6	107.788	33.79536	-117.894336	.455	ML	5	GENE AUTRY	2018			
+1205389	5	S	12	59	53980	36.31	108.498	33.802101	-117.901359		OR	1	KATELLA	263			
+1205395	5	S	12	59	53980	36.31	108.498	33.802101	-117.901359	.44	ML	4	KATELLA	263			
+1205400	5	N	12	59	2000	36.48	108.731	33.805074	-117.903814		OR	1	KATELLA	574			
+1205406	5	N	12	59	2000	36.48	108.731	33.805074	-117.903814	.1	HV	1	KATELLA	574			
+1205409	5	N	12	59	2000	36.48	108.731	33.805074	-117.903814	.1	ML	4	KATELLA	574			
+1205414	5	S	12	59	53980	36.48	108.668	33.804788	-117.904254		OR	1	ANAHEIM 1	262			
+1205419	5	S	12	59	53980	36.48	108.668	33.804788	-117.904254		FR	2	ANAHEIM 1	262			
+1205421	5	S	12	59	53980	36.48	108.668	33.804788	-117.904254	.145	ML	4	ANAHEIM 1	262			
+1205426	5	N	12	59	2000	37.38	109.631	33.815354	-117.915054		OR	1	HARBOR	575			
+1205430	5	N	12	59	2000	37.38	109.631	33.815354	-117.915054		FR	1	HARBOR	575			
+1205432	5	N	12	59	2000	37.38	109.631	33.815354	-117.915054	.35	ML	4	HARBOR	575			
+1205437	5	S	12	59	2000	37.48	109.668	33.816263	-117.916397		OR	1	HARBOR	261			
+1205440	5	S	12	59	2000	37.48	109.668	33.816263	-117.916397	.5	ML	4	HARBOR	261			
+1205446	5	N	12	59	2000	37.7	109.951	33.818891	-117.918657		OR	1	BALL	576			
+1205452	5	N	12	59	2000	37.7	109.951	33.818891	-117.918657	.36	ML	4	BALL	576			
+1205457	5	S	12	59	2000	38	110.188	33.82198	-117.922328		OR	1	SOUTH 1	260			
+1205463	5	S	12	59	2000	38	110.188	33.82198	-117.922328	.5	ML	4	SOUTH 1	260			
+1205468	5	N	12	59	2000	38.1	110.351	33.823323	-117.923123		OR	1	SOUTH 2	577			
+1205471	5	N	12	59	2000	38.1	110.351	33.823323	-117.923123	.45	HV	1	SOUTH 2	577			
+1205473	5	N	12	59	2000	38.1	110.351	33.823323	-117.923123	.6	ML	4	SOUTH 2	577			
+1205478	5	S	12	59	2000	38.48	110.668	33.827601	-117.927279	.5	ML	4	PEPPER	2017			
+1205482	5	S	12	59	2000	38.48	110.668	33.827601	-117.927279	.5	HV	1	PEPPER	2017			
+1205487	5	N	12	59	2000	39.09	111.341	33.833722	-117.934272		OR	1	LINCOLN	578			
+1205491	5	N	12	59	2000	39.09	111.341	33.833722	-117.934272		FR	1	LINCOLN	578			
+1205493	5	N	12	59	2000	38.9	111.151	33.832016	-117.931513	.6	ML	5	LINCOLN	578			
+1205508	5	S	12	59	2000	39.6	111.788	33.8365	-117.943178	.37	ML	4	EUCLID 2	580			
+1205513	5	N	12	59	2000	39.6	111.851	33.836731	-117.943038		OR	1	EUCLID 2	580			
+1205517	5	N	12	59	2000	39.6	111.851	33.836731	-117.943038	.37	ML	4	EUCLID 2	580			
+1205528	5	N	12	59	2000	40.04	112.291	33.840124	-117.949259	.45	ML	5	CRESCENT	581			
+1205532	5	S	12	59	2000	40.04	112.228	33.839851	-117.949454	.45	ML	5	CRESCENT	581			
+1205537	5	S	12	59	2000	40.5	112.688	33.843443	-117.955942		OR	1	BROOKHURST 1	259			
+1205541	5	S	12	59	2000	40.5	112.688	33.843443	-117.955942	.47	ML	4	BROOKHURST 1	259			
+1205546	5	N	12	59	2000	40.7	112.951	33.845442	-117.958388		OR	1	BROOKHURST 2	1512			
+1205551	5	N	12	59	2000	40.7	112.951	33.845442	-117.958388		FR	1	BROOKHURST 2	1512			
+1205553	5	N	12	59	2000	40.7	112.951	33.845442	-117.958388	.24	ML	4	BROOKHURST 2	1512			
+1205558	5	N	12	59	2000	40.98	113.231	33.847549	-117.962444		OR	1	LA PALMA	582			
+1205562	5	N	12	59	2000	40.98	113.231	33.847549	-117.962444	.32	ML	5	LA PALMA	582			
+1205567	5	N	12	59	2000	41.34	113.591	33.850294	-117.968011	.41	ML	5	GILBERT	2016			
+1205572	5	S	12	59	2000	41.34	113.528	33.85001	-117.968231	.41	ML	6	GILBERT	2016			
+1205577	5	S	12	59	2000	41.8	113.988	33.853961	-117.97494		OR	1	MAGNOLIA	258			
+1205583	5	S	12	59	2000	41.8	113.988	33.853961	-117.97494	.28	ML	6	MAGNOLIA	258			
+1205590	5	N	12	59	2000	41.8	114.051	33.854226	-117.974766	.28	ML	4	MAGNOLIA	258			
+1205601	5	N	12	59	28000	42.52	114.771	33.859271	-117.98503		OR	1	ORANGETHORPE 2	266			
+1205607	5	N	12	59	28000	42.52	114.771	33.859271	-117.98503	.4	ML	6	ORANGETHORPE 2	266			
+1205612	5	S	12	59	28000	42.52	114.708	33.859063	-117.985205	.4	ML	4	ORANGETHORPE 2	266			
+1205623	5	N	12	59	8786	43.01	115.261	33.863248	-117.991902	.29	ML	6	STANTON	257			
+1205627	5	S	12	59	8786	43.01	115.198	33.862901	-117.992155	.3	ML	6	STANTON	257			
+1205632	5	S	12	59	8786	43.3	115.488	33.865235	-117.996273	.295	ML	5	BEACH 1	2559			
+1205636	5	N	12	59	8786	43.28	115.531	33.865195	-117.995907	.295	ML	5	BEACH 1	2559			
+1205651	5	N	12	59	8786	43.6	115.851	33.867724	-118.00058		OR	1	BEACH 2	1803			
+1205656	5	N	12	59	8786	43.6	115.851	33.867724	-118.00058		FR	1	BEACH 2	1803			
+1205658	5	N	12	59	8786	43.6	115.851	33.867724	-118.00058	.31	ML	4	BEACH 2	1803			
+1205668	5	S	12	59	8786	44.2	116.388	33.872567	-118.009266	.362	ML	4	ARTESIA 1	256			
+1205673	5	N	12	59	8786	44.35	116.601	33.874466	-118.011177		OR	1	ARTESIA	267			
+1205678	5	N	12	59	8786	44.35	116.601	33.874466	-118.011177		FR	2	ARTESIA 2	267			
+1205680	5	N	12	59	8786	44.35	116.601	33.874466	-118.011177	.324	ML	5	ARTESIA 2	267			
+1208108	91	E	12	59	2000	R10.84	29.213	33.85429	-117.80262	.61	ML	6	W OF IMPERIAL	5000			
+1208109	91	E	12	59	2000	10.84	29.213	33.85429	-117.80262	.615	HV	2	W OF IMPERIAL	5000			
+1208110	91	W	12	59	2000	R10.84	29.253	33.854556	-117.802756	.62	ML	5	W OF IMPERIAL	5000			
+1208111	91	W	12	59	2000	10.84	29.253	33.854556	-117.802756	1.72	HV	2	W OF IMPERIAL	5000			
+1208121	91	E	12	59	2000	R12.175	30.548	33.858505	-117.780743	.531	ML	5	E OF IMPERIAL	2178			
+1208133	91	E	12	59	2000	R12.175	30.548	33.858505	-117.780743	.531	HV	2	E OF IMPERIAL	2178			
+1208134	91	W	12	59	2000	R12.175	30.588	33.858773	-117.780816	.586	ML	5	E OF IMPERIAL	2178			
+1208135	91	W	12	59	2000	R12.175	30.588	33.858773	-117.780816	.581	HV	2	E OF IMPERIAL	2178			
+1208147	91	E	12	59	2000	R12.762	31.135	33.862813	-117.771912	.586	ML	5	MIDPOINT	5001			
+1208151	91	W	12	59	2000	R12.762	31.175	33.863077	-117.772007	.586	ML	5	MIDPOINT	5001			
+1208161	91	E	12	59	2000	R13.349	31.722	33.867107	-117.763071	.834	ML	6	W OF SCALES	2179			
+1208175	91	E	12	59	2000	R13.349	31.722	33.867107	-117.763071	.819	HV	2	W OF SCALES	2179			
+1208176	91	W	12	59	2000	R13.349	31.762	33.867371	-117.763191	.749	ML	6	W OF SCALES	2179			
+1208177	91	W	12	59	2000	13.349	31.762	33.867371	-117.763191	.719	HV	2	W OF SCALES	2179			
+1208180	91	E	12	59	2000	R15.11	33.483	33.869894	-117.73308	.575	ML	5	East OF WEIR	2180			
+1208190	91	W	12	59	2000	R15.11	33.523	33.870372	-117.733445	.682	ML	5	East OF WEIR	2180			
+1208194	91	E	12	59	2000	15.11	33.483	33.869894	-117.73308	.685	HV	2	East OF WEIR	2180			
+1208196	91	W	12	59	2000	15.11	33.523	33.870372	-117.733445	.647	HV	2	East OF WEIR	2180			
+1208199	91	E	12	59	2000	R15.793	34.143	33.866822	-117.722179	.634	ML	4	West OF GYPSUM	2181			
+1208208	91	W	12	59	2000	R15.793	34.206	33.867126	-117.722277	.545	ML	4	West OF GYPSUM	2181			
+1208212	91	E	12	59	2000	15.793	34.143	33.866822	-117.722179	.956	HV	2	West OF GYPSUM	2181			
+1208214	91	W	12	59	2000	R15.793	34.206	33.867126	-117.722277	.967	HV	2	West OF GYPSUM	2181			
+1208226	91	E	12	59	2000	R17.044	35.394	33.871104	-117.701858	.7	ML	5	E OF GYPSUM	2182			
+1208230	91	W	12	59	2000	R17.044	35.457	33.871439	-117.701993	.82	ML	6	E OF GYPSUM	2182			
+1208232	91	E	12	59	2000	17.044	35.394	33.871104	-117.701858	2.531	HV	2	E OF GYPSUM	2182			
+1208234	91	W	12	59	2000	17.044	35.457	33.871439	-117.701993	1.103	HV	2	E OF GYPSUM	2182			
+1208240	91	E	12	59	2000	R18.435	36.762	33.869165	-117.68015	.679	ML	5	E OF COAL	5002			
+1208260	91	W	12	59	2000	R18.435	36.848	33.869436	-117.680194	.819	ML	4	E OF COAL	5002			
+1208365	5	N	12	59	80854	29.79	102.041	33.738115	-117.825811	.38	HV	1	NEWPORT*	564			
+1208537	5	N	12	59		29.24	101.491	33.73489	-117.817068	.845	HV	1	RED HILL	563			
+1208538	5	N	12	59	80854	28.98	101.231	33.732444	-117.813606		FR	1	RED HILL	661			
+1208701	73	N	12	59	39248	10.9	.9	33.550126	-117.675644	.315	ML	3	SORRENTO	7311			
+1208703	73	S	12	59	39248	10.9	.9	33.550021	-117.676025	.315	ML	3	SORRENTO	7311			
+1208758	73	S	12	59	39248	11.22	1.22	33.554335	-117.677553	.37	ML	3	CABOT	7312			
+1208760	73	N	12	59	39248	11.22	1.22	33.554546	-117.677239	.37	ML	3	CABOT	7312			
+1208789	73	N	12	59	39220	12	2	33.559105	-117.689417	.335	ML	3	GREENFIELD 2	7314			
+1208809	73	S	12	59	39248	11.64	1.64	33.557463	-117.683347	.39	ML	3	GREENFIELD 1	7313			
+1208886	73	N	12	59	39248	11.64	1.64	33.557803	-117.683209	.39	ML	3	GREENFIELD 1	7313			
+1208887	73	S	12	59	39220	11.8	1.8	33.558059	-117.686199		OR	1	GREENFIELD 1	7313			
+1208888	73	N	12	59	39220	11.8	1.8	33.55839	-117.68611		FR	1	GREENFIELD 1	7313			
+1208940	73	N	12	59	39220	12.1	2.1	33.559873	-117.690855		OR	1	GREENFIELD 2	7314			
+1208941	73	S	12	59	39220	12	2	33.558786	-117.689492	.335	ML	4	GREENFIELD 2	7314			
+1208942	73	N	12	59	39220	12.31	2.31	33.562029	-117.693351	.26	ML	3	ROCKRIDGE	7315			
+1208943	73	S	12	59	39220	12.31	2.31	33.56161	-117.693516	.26	ML	4	ROCKRIDGE	7315			
+1208944	73	N	12	59	39248	12.52	2.52	33.564588	-117.695254	.26	ML	3	WESTRIDGE	7316			
+1208945	73	S	12	59	39248	12.52	2.52	33.564154	-117.695429	.26	ML	4	WESTRIDGE	7316			
+1208954	405	N	12	59	36770	.93	.7	33.64809	-117.746598	.255	HV	1	IRVINE C1	1331			
+1208955	5	S	12	59	36770	22.1	94.295	33.654255	-117.74294	.415	HV	1	ALTON 2	1519			
+1208962	5	S	12	59	80854	29.79	101.978	33.737856	-117.825947	.44	HV	1	NEWPORT	564			
+1208963	5	S	12	59	80854	29.94	102.128	33.738636	-117.828362		FF	2	N55 to S5	564			
+1208964	5	S	12	59	80854	29.94	102.128	33.738636	-117.828362		FR	2	NEWPORT	564			
+1208965	55	S	12	59	69000	R8.12	8.12	33.711451	-117.849099	.49	HV	1	DYER 2	922			
+1208975	5	N	12	59	80854	30	102.251	33.739183	-117.829214	.205	HV	1	B ST	2301			
+1208976	5	S	12	59	80854	29.9	102.088	33.738432	-117.827716	.25	ML	4	B ST	2301			
+1208977	5	S	12	59	80854	29.9	102.088	33.738432	-117.827716	.205	HV	1	B ST.	2301			
+1208989	5	N	12	59	80854	30.2	102.451	33.740283	-117.832416	.2	HV	1	S OF 55	2267			
+1208990	5	N	12	59	80854	30.2	102.451	33.740283	-117.832416		FF	2	N5 to N 55	2267			
+1208993	5	S	12	59	80854	30.2	102.388	33.740098	-117.832494	.25	HV	1	S OF 55	2267			
+1209011	5	N	12	59	80854	30.4	102.651	33.741403	-117.835585	.2	HV	1	N OF 55	2268			
+1209012	5	N	12	59	80854	30.4	102.651	33.741403	-117.835585		FF	2	N55 to N5	2268			
+1209013	5	N	12	59	80854	30.4	102.651	33.741403	-117.835585		FF	1	N5 to S55	2268			
+1209014	5	S	12	59	80854	30.4	102.588	33.741219	-117.835743	.2	HV	1	N OF 55	2268			
+1209020	73	N	12	59		13.6	3.6	33.574966	-117.70902	.28	ML	3	LA PAZ 1	7319			
+1209029	57	N	12	59	53980	11.68	.946	33.794121	-117.878448	.24	HV	1	ORANGEWO1	957			
+1209031	57	N	12	59	8100	21.16	10.426	33.929701	-117.879881	1	HV	1	LAMBERT	973			
+1209033	57	S	12	59	53980	11.08	.431	33.783256	-117.880197	.2	HV	1	CHAPMAN 1	1004			
+1209035	57	S	12	59	53980	11.55	.901	33.792388	-117.879621	.6	HV	1	ORANGEWOOD	1003			
+1209037	57	S	12	59	53980	12.4	1.751	33.804096	-117.88008	.515	HV	1	KATELLA 1	1002			
+1209039	57	S	12	59	53980	12.58	1.931	33.806677	-117.880243	.435	HV	1	KATELLA 2	1001			
+1209041	57	S	12	59		22.06	11.411	33.94149	-117.874675	1.269	HV	1	TONNER	987			
+1209043	405	N	12	59	36770	1.11	.88	33.648958	-117.74955	.32	HV	1	IRVINE C2	1332			
+1209046	405	S	12	59	36770	3.84	3.61	33.66293	-117.793047	.36	HV	1	JEFFREY 1	1410			
+1209047	405	S	12	59	36770	4.03	3.8	33.663404	-117.796283	.585	HV	1	JEFFREY 2	1409			
+1209059	405	N	12	59	36770	3.31	3.08	33.661319	-117.784046	.41	ML	5	N OF SAND CYN	2040			
+1209068	405	S	12	59	36770	5.05	4.82	33.666292	-117.813632	.245	HV	1	SPRUCE	2604			
+1209070	405	S	12	59	36770	5.05	4.82	33.666292	-117.813632	.245	ML	4	SPRUCE	2604			
+1209075	405	N	12	59	36770	5.05	4.82	33.66659	-117.813561	.27	HV	1	SPRUCE	2604			
+1209076	405	N	12	59	36770	5.05	4.82	33.66659	-117.813561	.27	ML	4	SPRUCE	2604			
+1209090	405	N	12	59	36770	1.57	1.34	33.651141	-117.757101	.41	HV	1	N OF 133	2474			
+1209091	405	S	12	59	36770	1.57	1.34	33.650789	-117.757205	.485	ML	4	N OF 133	2474			
+1209092	405	N	12	59	36770	1.57	1.34	33.651141	-117.757101	.41	ML	5	N OF 133	2474			
+1209094	405	S	12	59	36770	1.73	1.5	33.65133	-117.759896		FF	2	AT 133	2435			
+1209123	405	S	12	59	36770	1.73	1.5	33.65133	-117.759896		FF	1	AT 133 S133 to S405	2435			
+1209124	405	N	12	59	36770	1.73	1.5	33.651697	-117.759796		FF	1	AT 133 N405 to S133	2435			
+1209143	405	S	12	59		8.9	8.67	33.687245	-117.875063	.4	HV	1	N OF 55	2415			
+1209161	405	S	12	59	36770	1.93	1.7	33.651837	-117.763315	.39	ML	4	S OF 133	2475			
+1209162	405	N	12	59	36770	1.93	1.7	33.652204	-117.763194	.39	ML	6	S OF 133	2475			
+1209163	405	N	12	59	36770	1.93	1.7	33.652204	-117.763194	.39	HV	1	S OF 133	2475			
+1209176	405	N	12	59	36770	2.35	2.12	33.65368	-117.770173	.48	ML	5	LAGUNA CYN RD	2041			
+1209177	405	N	12	59	36770	2.35	2.12	33.65368	-117.770173	.48	HV	1	LAGUNA CANYON RD	2041			
+1209178	405	S	12	59	36770	2.35	2.12	33.653346	-117.770361	.475	ML	4	LAGUNA CANYON RD	2041			
+1209179	405	S	12	59	36770	2.35	2.12	33.653346	-117.770361	.475	HV	1	LAGUNA CANYON RD	2041			
+1209187	405	N	12	59	36770	3.31	3.08	33.661319	-117.784046	.435	HV	1	N OF SAND CANYON	2040			
+1209189	405	S	12	59	36770	3.31	3.08	33.660957	-117.784273	.48	ML	5	N OF SAND CANYON	2040			
+1209190	405	S	12	59	36770	3.31	3.08	33.660957	-117.784273	.48	HV	1	N OF SAND CANYON	2040			
+1209204	405	N	12	59		8.26	8.03	33.686072	-117.864081	.335	ML	6	AIRPORT	2433			
+1209205	405	S	12	59		8.26	8.03	33.685751	-117.86423	.285	HV	2	AIRPORT	2433			
+1209217	405	S	12	59	16532	10.48	10.25	33.687582	-117.902507	.46	ML	5	N OF 73	2601			
+1209218	405	S	12	59	16532	10.48	10.25	33.687582	-117.902507	.46	HV	1	N OF 73	2601			
+1209241	405	S	12	59	16532	12.16	11.93	33.693448	-117.930222	.485	ML	6	HAMPSHIRE	5012			
+1209242	405	S	12	59	16532	12.16	11.93	33.693448	-117.930222	.485	HV	1	HAMPSHIRE	5012			
+1209243	405	N	12	59	16532	12.16	11.93	33.693692	-117.930032	.556	ML	6	HAMPSHIRE	5012			
+1209244	405	N	12	59	16532	12.16	11.93	33.693692	-117.930032	.556	HV	1	HAMPSHIRE	5012			
+1209407	405	S	12	59	70686	23.19	22.96	33.774466	-118.084694	.071	ML	5	N OF 7TH ST	5022			
+1209408	405	S	12	59	70686	23.19	22.96	33.774466	-118.084694	.071	HV	2	N OF 7TH ST	5022			
+1209422	405	N	12	59	70686	23.92	23.69	33.782737	-118.090834	.144	HV	1	S OF 605	2430			
+1209423	405	N	12	59	70686	23.92	23.69	33.782737	-118.090834		FF	2	S OF 605	2430			
+1209424	405	S	12	59	70686	23.92	23.69	33.782679	-118.0911	.1	ML	4	S OF 605	2430			
+1209425	405	S	12	59	70686	23.92	23.69	33.782679	-118.0911	.1	HV	1	S OF 605	2430			
+1209437	405	N	12	59	70686	24.12	23.89	33.785381	-118.092441	.205	HV	1	N OF 605	2219			
+1209438	405	S	12	59	70686	24.12	23.89	33.785289	-118.092624	.21	ML	4	N OF 605	2219			
+1209439	405	S	12	59	70686	24.12	23.89	33.785289	-118.092624	.21	HV	1	N OF 605	2219			
+1209477	405	S	12	59	36770	1.93	1.7	33.651837	-117.763315		FF	2	S OF 133	2475			
+1209483	405	S	12	59		8.9	8.67	33.687245	-117.875063		FF	2	405 SB TO 55 NB	2415			
+1209487	405	S	12	59	70686	24.12	23.89	33.785289	-118.092624		FR	1	N OF 605-S405 TO 7TH	2219			
+1209493	405	S	12	59	70686	23.62	23.39	33.778421	-118.089913	.192	ML	4	SALMON	2218			
+1209496	405	S	12	59	70686	23.62	23.39	33.778421	-118.089913		FF	2	SALMON	2218			
+1209531	241	N	12	59		17.8	3.255	33.63353	-117.599074	2.55	ML	2	ANTONIO 2	6550			
+1209532	241	N	12	59		17.8	3.255	33.63353	-117.599074		OR	1	ANTONIO 2	6550			
+1209534	241	S	12	59		17.8	3.255	33.633478	-117.599491		FR	1	ANTONIO 2	6550			
+1209542	241	N	12	59		18.08	3.535	33.637405	-117.600814	.4	ML	2	BANDERAS	6050			
+1209543	241	N	12	59		18.08	3.535	33.637405	-117.600814		FR	1	BANDERAS	6050			
+1209548	241	S	12	59		18.3	3.755	33.640172	-117.602781	.45	ML	2	SANTA MARGUERITA	6551			
+1209549	241	S	12	59		18.7	4.155	33.645513	-117.605479		FR	2	SANTA MARGUERITA	6551			
+1209558	241	N	12	59		18.7	4.155	33.645877	-117.605062	.36	ML	2	SANTA MARGUERITA	6552			
+1209559	241	N	12	59		18.7	4.155	33.645877	-117.605062		OR	1	SANTA MARGUERITA	6552			
+1209567	241	N	12	59		24.16	9.615	33.688336	-117.681661	.305	ML	3	N OF ALTON	6057			
+1209568	241	S	12	59		24.16	9.615	33.688049	-117.681883	.305	ML	3	N OF ALTON	6057			
+1209577	241	N	12	59		18.8	4.255	33.647249	-117.605721	.3	ML	4	TRABUCO CREEK	6051			
+1209578	241	S	12	59		18.8	4.255	33.646855	-117.606132	.5	ML	3	TRABUCO CREEK	6051			
+1209585	241	N	12	59		19.3	4.755	33.651938	-117.612216	.48	ML	3	MELINDA	6052			
+1209586	241	S	12	59		19.3	4.755	33.651498	-117.612415	.48	ML	2	MELINDA	6052			
+1209594	241	S	12	59		19.76	5.215	33.653076	-117.620208	.28	ML	2	LOS ALISOS 1	6553			
+1209595	241	S	12	59		19.76	5.215	33.653076	-117.620208		OR	1	LOS ALISOS 1	6553			
+1209598	241	N	12	59		19.76	5.215	33.653482	-117.620027	.28	ML	3	LOS ALISOS 1	6553			
+1209606	241	N	12	59	48256	20.13	5.585	33.655536	-117.62601	.34	ML	3	LOS ALISOS 2	6554			
+1209607	241	N	12	59	48256	20.13	5.585	33.655536	-117.62601		OR	1	LOS ALISOS 2	6554			
+1209614	241	N	12	59	48256	20.54	5.995	33.658363	-117.632286	.74	ML	3	UPPER OSO	6053			
+1209615	241	S	12	59	48256	20.54	5.995	33.657968	-117.632465	.925	ML	2	UPPER OSO	6053			
+1209621	241	N	12	59		22.81	8.265	33.674212	-117.666212	.1	ML	3	BAKE	6056			
+1209622	241	S	12	59		22.81	8.265	33.673843	-117.666424	.1	ML	3	BAKE	6056			
+1209632	241	S	12	59		23.2	8.655	33.677298	-117.671674	.195	ML	3	ALTON 1	6558			
+1209633	241	S	12	59		23.2	8.655	33.677298	-117.671674		OR	1	ALTON 1	6558			
+1209634	241	N	12	59		23.2	8.655	33.677671	-117.671424	.195	ML	3	ALTON 1	6558			
+1209644	241	N	12	59		23.54	8.995	33.681906	-117.67436	.175	ML	3	ALTON 2	6559			
+1209645	241	N	12	59		23.54	8.995	33.681906	-117.67436		OR	1	ALTON 2	6559			
+1209646	241	S	12	59		23.54	8.995	33.681564	-117.674584	.175	ML	3	ALTON 2	6559			
+1209652	241	N	12	59		21.61	7.065	33.666889	-117.647778	.695	ML	3	PORTOLA S 1	6054			
+1209661	241	S	12	59		21.61	7.065	33.666554	-117.647927		OR	1	PORTOLA S 1	6555			
+1209669	241	N	12	59		21.93	7.385	33.668867	-117.652743	.5	ML	3	PORTOLA S 2	6556			
+1209670	241	N	12	59		21.93	7.385	33.668867	-117.652743		OR	1	PORTOLA S 2	6556			
+1209674	241	S	12	59		22.02	7.475	33.669094	-117.654243	.205	ML	2	PORTOLA S 2	6055			
+1209684	241	S	12	59		22.61	8.065	33.67261	-117.663291	.295	ML	3	LAKE FOREST	6557			
+1209685	241	N	12	59		22.61	8.065	33.672946	-117.663113	.39	ML	3	LAKE FOREST	6557			
+1209686	241	N	12	59		22.61	8.065	33.672946	-117.663113		OR	1	LAKE FOREST	6557			
+1209693	5	N	12	59	69000	30.9	103.151	33.745655	-117.842095	.315	HV	1	1ST	213			
+1209694	5	S	12	59	69000	30.9	103.088	33.745553	-117.842538	.315	HV	1	1ST	213			
+1209697	5	N	12	59	69000	30.9	103.151	33.745655	-117.842095		FR	2	1ST	213			
+1209700	241	S	12	59		23.54	8.995	33.681564	-117.674584		FR	1	ALTON 2	6559			
+1209701	241	N	12	59		23.2	8.655	33.677671	-117.671424		FR	1	ALTON 1	6558			
+1209702	241	S	12	59		22.61	8.065	33.67261	-117.663291		FR	1	LAKE FOREST	6557			
+1209726	5	N	12	59	69000	31.23	103.481	33.750124	-117.844061		OR	1	4TH	568			
+1209727	5	N	12	59	69000	31.23	103.481	33.750124	-117.844061	.25	HV	1	4TH	568			
+1209728	5	S	12	59	69000	31.23	103.418	33.749928	-117.844652	.25	HV	2	4TH	568			
+1209731	5	S	12	59	69000	31.23	103.418	33.749928	-117.844652		FR	2	4TH	568			
+1209746	5	N	12	59	69000	31.4	103.651	33.752049	-117.845939	.185	HV	2	CONCORD	2300			
+1209763	5	N	12	59	69000	31.9	104.151	33.755834	-117.85344		FR	1	GRAND 2	569			
+1209764	5	N	12	59	69000	31.9	104.151	33.755834	-117.85344	.325	HV	1	GRAND 2	569			
+1209777	5	S	12	59	69000	32	104.188	33.756108	-117.855324		OR	1	GRAND 2	212			
+1209778	5	S	12	59	69000	32	104.188	33.756108	-117.855324		FR	1	GRAND 2	212			
+1209779	5	S	12	59	69000	32	104.188	33.756108	-117.855324	.325	HV	2	GRAND 2	212			
+1209826	5	S	12	59	69000	32.25	104.438	33.757943	-117.859225	.29	HV	1	17TH 1	211			
+1209827	5	N	12	59	69000	32.25	104.501	33.758263	-117.858902	.3	HV	1	17TH 1	211			
+1209840	5	S	12	59	69000	31	103.188	33.746922	-117.843088		FF	1	S5 to S55 HOV VIA	213			
+1209841	5	N	12	59	69000	31	103.251	33.747013	-117.84264		FF	1	N55 to N5 HOV VIA	213			
+1209860	55	N	12	59	80854	10.2	10.182	33.737088	-117.833583	.271	ML	4	N OF 5 OFF	2349			
+1209861	55	N	12	59	80854	10.2	10.182	33.737088	-117.833583	.191	HV	1	N OF 5 OFF	2349			
+1209862	55	N	12	59	80854	10.2	10.182	33.737088	-117.833583		FF	2	N55 to N 5	2349			
+1209873	55	N	12	59	80854	10.4	10.382	33.739982	-117.83368	.15	ML	3	S OF 5	2344			
+1209874	55	N	12	59	80854	10.4	10.382	33.739982	-117.83368	.15	HV	1	S OF 5	2344			
+1209875	55	S	12	59	80854	10.4	10.382	33.739982	-117.833908		FF	2	S5 to S55	2344			
+1209888	55	N	12	59	80854	10.5	10.482	33.741429	-117.833698	.35	ML	3	N OF 5	2348			
+1209889	55	S	12	59	80854	10.5	10.482	33.741429	-117.833876	.61	HV	1	N OF 5	2348			
+1209890	55	N	12	59	80854	10.5	10.482	33.741429	-117.833698	.35	HV	1	N OF 5	2348			
+1209891	55	N	12	59	80854	10.5	10.482	33.741429	-117.833698		FF	2	N5 to N55	2348			
+1209892	55	N	12	59	80854	10.5	10.482	33.741429	-117.833698		FR	1	N OF 5	2348			
+1209893	55	N	12	59	80854	10.5	10.482	33.741429	-117.833698		FR	1	N OF 5 -1	2348			
+1209898	241	S	12	59		22.02	7.475	33.669094	-117.654243		FR	1	PORTOLA S 2	6055			
+1209901	241	N	12	59		21.61	7.065	33.666889	-117.647778		FR	1	PORTOLA S 1	6054			
+1209903	241	N	12	59		19.76	5.215	33.653482	-117.620027		FR	1	LOS ALISOS 1	6553			
+1209910	241	S	12	59		18.3	3.755	33.640172	-117.602781		OR	1	SANTA MARGUERITA	6551			
+1209931	5	N	12	59	69000	32.5	104.751	33.760465	-117.862379	.375	HV	1	17TH 2	572			
+1209943	5	N	12	59	69000	32.6	104.851	33.761599	-117.863369		OR	1	17TH 3	570			
+1209950	5	S	12	59	69000	33	105.188	33.766429	-117.866976	.31	HV	1	MAIN 1	210			
+1209951	5	N	12	59	69000	33	105.251	33.766579	-117.866456	.35	HV	1	MAIN 1	210			
+1209959	5	N	12	59	69000	33.2	105.451	33.76901	-117.86784		FR	1	MAIN 2 OFF TO M&B	571			
+1209964	5	N	12	59	69000	33.2	105.451	33.76901	-117.86784		FR	2	MAIN 2 (1=B,2=M) OFF	571			
+1209965	5	N	12	59	69000	33.2	105.451	33.76901	-117.86784	.15	HV	1	MAIN 2	571			
+1209967	5	S	12	59	69000	33.2	105.388	33.768742	-117.868373	.15	HV	1	MAIN 2	571			
+1210000	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238	.2	HV	1	BROADWAY	2302			
+1210001	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238		CD	2	S57 to S5 at BDWY	2302			
+1210002	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238		FR	1	BROADWAY	2302			
+1210003	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238		FR	1	BROADWAY (MAIN OFF)	2302			
+1210004	5	N	12	59	69000	33.3	105.551	33.770299	-117.868723	.2	HV	1	BROADWAY	2302			
+1210011	5	N	12	59	69000	33.6	105.851	33.773944	-117.871893	.45	HV	2	SANTIAGO	5010			
+1210014	5	S	12	59	69000	33.6	105.788	33.773768	-117.872316	.25	HV	2	SANTIAGO	5010			
+1210020	5	N	12	59	69000	33.8	106.051	33.776455	-117.873886		FF	2	N5 TO W22	2299			
+1210025	5	S	12	59	69000	33.8	105.988	33.776289	-117.874337		FF	3	S5&S57 to M,B,S5	2299			
+1210029	5	S	12	59	69000	33.8	105.988	33.776289	-117.874337		FF	1	E22 to M,B,S5	2299			
+1210030	5	S	12	59	69000	33.8	105.988	33.776289	-117.874337		FF	1	E22 TO S5 ONLY	2299			
+1210031	5	S	12	59	69000	33.8	105.988	33.776289	-117.874337	.3	HV	2	S OF 22	2299			
+1210034	5	N	12	59	53980	34.2	106.451	33.781151	-117.878226	.4	HV	2	LA VETA	2298			
+1210036	5	S	12	59	53980	34.2	106.388	33.780805	-117.878897	.3	HV	2	LA VETA	2298			
+1210051	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776		FR	1	LA VETA  S5 TO BRIST	2284			
+1210052	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776		FF	1	S5 to E22 La Veta	2284			
+1210053	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776		FF	1	S57 to E22 La Veta	2284			
+1210054	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776		FF	2	S57 to S5 La Veta	2284			
+1210055	5	S	12	59	53980	34.1	106.288	33.779824	-117.87776		FR	1	LA VETA S5 TO M & B	2284			
+1210059	5	N	12	59	68028	6.91	79.168	33.468032	-117.671714	.785	HV	1	LAS RAMBLES	536			
+1210061	5	N	12	59	68028	7.46	79.718	33.475073	-117.674271	.54	HV	1	CAPISTRANO	539			
+1210063	5	N	12	59	68028	7.99	80.248	33.481685	-117.669596	.59	HV	1	AEROPUERTO	2033			
+1210066	5	N	12	59	68028	8.64	80.898	33.489561	-117.663255	.58	HV	1	S JUAN CREEK	540			
+1210069	5	N	12	59	68028	9.69	81.948	33.503727	-117.658585	.215	HV	1	ORTEGA  2	541			
+1210071	5	N	12	59	68028	11.05	83.308	33.52247	-117.666382	.485	HV	1	JUNIPERO SERRA	542			
+1210073	5	N	12	59	48256	13.05	85.308	33.548817	-117.672686	.72	HV	1	AVERY PARK	543			
+1210075	5	N	12	59	48256	13.7	85.958	33.558096	-117.672848	.41	HV	1	CROWN VA1	544			
+1210078	5	N	12	59	48256	13.87	86.128	33.560549	-117.672791	.38	HV	1	CROWN VA2	545			
+1210079	5	S	12	59	48256	13.87	86.065	33.560545	-117.673112		FR	2	CROWN VA2	545			
+1210081	5	N	12	59	48256	15.13	87.388	33.578849	-117.67162	.445	HV	1	OSO PARK1	547			
+1210083	5	N	12	59	48256	15.35	87.608	33.582052	-117.67157	.335	HV	1	OSO PARK2	548			
+1210085	5	N	12	59	39220	16.51	88.768	33.597861	-117.676059	.445	HV	1	LA PAZ 1	550			
+1210087	5	N	12	59	39220	16.69	88.948	33.599252	-117.678685	.46	HV	1	LA PAZ 2	552			
+1210089	5	N	12	59	39220	17.43	89.688	33.604242	-117.68984	.47	HV	1	ALICIA 1	1445			
+1210103	5	N	12	59	39220	18.61	90.868	33.613883	-117.706467	.325	HV	1	EL TORO 1	554			
+1210106	5	N	12	59	39220	18.82	91.078	33.616112	-117.70901	.36	HV	2	EL TORO 2	555			
+1210115	5	N	12	59	39220	19.33	91.588	33.621929	-117.714379	.59	HV	2	RED ROBIN	2012			
+1210121	5	S	12	59	39220	19.33	91.525	33.621819	-117.714838	.55	HV	2	RED ROBIN	2012			
+1210141	5	S	12	59	68028	9.15	81.345	33.496001	-117.659442	.4	ML	4	PLAZA	2032			
+1210159	55	N	12	59	16532	R5.8	5.8	33.685142	-117.874255		FF	1	N 55 TO S 405	916			
+1210160	55	S	12	59	16532	R5.8	5.8	33.685224	-117.874399		FR	1	S 55 OFF TO BAKE	916			
+1210161	55	N	12	59	16532	R5.8	5.8	33.685142	-117.874255	2.65	HV	1	PAULARINO 2	916			
+1210162	55	S	12	59	16532	R5.8	5.8	33.685224	-117.874399		FR	1	N 405 TO OFF BAKE	916			
+1210172	55	N	12	59	16532	R5.51	5.51	33.681801	-117.877327	.405	ML	4	PAULARINO 1	2350			
+1210173	55	S	12	59	16532	R5.51	5.51	33.681935	-117.87755	.405	ML	4	PAULARINO 1	2350			
+1210189	55	S	12	59	16532	R5.06	5.06	33.676789	-117.882355	.405	ML	3	BAKER 2	2503			
+1210190	55	N	12	59	16532	R5.06	5.06	33.676702	-117.882208	.405	ML	3	BAKER 2	2503			
+1210191	55	S	12	59	16532	R5.06	5.06	33.676789	-117.882355		FF	2	S55 to S73	2503			
+1210192	55	S	12	59	16532	R5.06	5.06	33.676789	-117.882355		FR	1	BAKER 2	2503			
+1210193	55	S	12	59	16532	R5.06	5.06	33.676789	-117.882355		OR	1	BAKER 2	2503			
+1210194	55	N	12	59	16532	R5.06	5.06	33.676702	-117.882208		FF	2	N73 to N55	2503			
+1210205	55	N	12	59	16532	R4.7	4.7	33.672968	-117.886575	.24	ML	3	BAKER 1	952			
+1210206	55	S	12	59	16532	R4.7	4.7	33.673112	-117.88678		OR	1	BAKER 1	952			
+1210207	55	N	12	59	16532	R4.7	4.7	33.672968	-117.886575		FR	1	BAKER 1	952			
+1210220	55	S	12	59	16532	R4.58	4.58	33.671928	-117.888309	.365	ML	4	BRISTOL	2501			
+1210221	55	N	12	59	16532	R4.58	4.58	33.671785	-117.888101		FF	2	N55 to N73	2501			
+1210222	55	S	12	59	16532	R4.58	4.58	33.671928	-117.888309		FF	2	S73 to S55	2501			
+1210254	5	S	12	59	36770	20.59	92.785	33.635959	-117.728446		OR	1	BAKE 1	583			
+1210255	5	S	12	59	36770	20.59	92.785	33.635959	-117.728446	.51	HV	2	BAKE 1	583			
+1210256	5	S	12	59	36770	20.59	92.785	33.635959	-117.728446		CD	3	BAKE 1	583			
+1210257	5	S	12	59	36770	20.95	93.145	33.640308	-117.731896		OR	1	BAKE 2	584			
+1210258	5	S	12	59	36770	20.95	93.145	33.640308	-117.731896		CD	3	BAKE 2	584			
+1210259	5	S	12	59	36770	20.95	93.145	33.640308	-117.731896		FR	3	BAKE 2	584			
+1210260	5	S	12	59	36770	20.95	93.145	33.640308	-117.731896		CD	2	BAKE 2 @ 405	584			
+1210270	5	N	12	59	36770	20.23	92.488	33.631998	-117.724216	.295	HV	2	OLDFIELD	2011			
+1210271	5	N	12	59	36770	20.23	92.488	33.631998	-117.724216		CD	4	OLDFIELD CD	2011			
+1210272	5	S	12	59	36770	20.23	92.425	33.631888	-117.724695	.345	HV	2	OLDFIELD	2011			
+1210304	5	S	12	59	39220	19.8	91.995	33.627286	-117.719875		OR	1	LAKE FOR1	669			
+1210305	5	S	12	59	39220	19.8	91.995	33.627286	-117.719875	.285	HV	2	LAKE FOR1	669			
+1210320	5	S	12	59	39220	18.7	90.895	33.614654	-117.707825		OR	1	EL TORO 2	670			
+1210321	5	S	12	59	39220	18.7	90.895	33.614654	-117.707825		FR	2	EL TORO 2	670			
+1210322	5	S	12	59	39220	18.7	90.895	33.614654	-117.707825	.415	HV	2	EL TORO 2	670			
+1210323	5	S	12	59	39220	19.9	92.095	33.628454	-117.720919		OR	1	LAKE FOR2	668			
+1210324	5	S	12	59	39220	19.9	92.095	33.628454	-117.720919		FR	3	LAKE FOR2	668			
+1210326	5	S	12	59	39220	19.9	92.095	33.628454	-117.720919	.215	HV	2	LAKE FOR2	668			
+1210339	5	S	12	59	39220	18.5	90.695	33.612561	-117.705361		OR	1	EL TORO 1	671			
+1210340	5	S	12	59	39220	18.5	90.695	33.612561	-117.705361	.265	HV	2	EL TORO 1	671			
+1210367	5	S	12	59	39220	17.26	89.455	33.602645	-117.687691		OR	1	ALICIA 1	1447			
+1210368	5	S	12	59	39220	17.26	89.455	33.602645	-117.687691	.495	HV	1	ALICIA 1	1447			
+1210377	5	S	12	59	48256	13.05	85.245	33.548822	-117.672993		FR	1	AVERY PARK	543			
+1210379	5	S	12	59	68028	11.05	83.245	33.522341	-117.6667		FR	1	JUNIPERO SERRA	542			
+1210440	73	N	12	59	39248	10.59	.59	33.545677	-117.674552	.745	ML	3	CAPISTRANO	7310			
+1210441	73	S	12	59	39248	10.59	.59	33.545627	-117.674915	.745	ML	3	CAPISTRANO	7310			
+1210446	73	N	12	59	36770	24.78	14.78	33.655401	-117.86475	.265	ML	3	JAMBOREE 2	7358			
+1210447	73	S	12	59	36770	24.78	14.78	33.655174	-117.865011	.265	ML	3	JAMBOREE 2	7358			
+1210455	73	S	12	59	36770	24.72	14.72	33.65462	-117.864335	.19	ML	3	JAMBOREE 1	7357			
+1210456	73	N	12	59	36770	24.72	14.72	33.654806	-117.864027	.19	ML	3	JAMBOREE 1	7357			
+1210465	73	N	12	59	36770	24.4	14.4	33.650823	-117.8614	.31	ML	4	UNIVERSITY SOUT	7356			
+1210466	73	S	12	59	36770	24.4	14.4	33.650695	-117.861933	.31	ML	4	UNIVERSITY SOUT	7356			
+1210474	73	N	12	59	36770	24.1	14.1	33.646501	-117.860508	.25	ML	3	MACARTHUR 2	7355			
+1210475	73	S	12	59	36770	24.1	14.1	33.646308	-117.860978	.25	ML	3	MACARTHUR 2	7355			
+1210476	73	S	12	59	39220	12.83	2.83	33.567532	-117.698836	.31	ML	3	MOULTON	7317			
+1210477	73	N	12	59	39220	12.83	2.83	33.567967	-117.698683	.31	ML	3	MOULTON	7317			
+1210478	73	N	12	59	39220	13.14	3.14	33.571095	-117.702528	.385	ML	3	PACIFIC PARK	7318			
+1210479	73	S	12	59	39220	13.14	3.14	33.570836	-117.702926	.275	ML	3	PACIFIC PARK	7318			
+1210487	73	N	12	59	36770	23.9	13.9	33.643656	-117.859875	.3	ML	3	BISON 2	7372			
+1210488	73	N	12	59		13.7	3.7	33.575554	-117.710558	.18	ML	5	ALICIA	7321			
+1210489	73	S	12	59	36770	23.9	13.9	33.643454	-117.86032	.2	ML	3	BISON 2	7372			
+1210491	73	S	12	59		13.7	3.7	33.575244	-117.71075	.29	ML	3	ALICIA	7321			
+1210494	73	S	12	59	36770	23.7	13.7	33.640714	-117.859193	.2	ML	3	MACARTHUR 1	7354			
+1210504	73	S	12	59	36770	23.5	13.5	33.638307	-117.857266	.25	ML	4	BISON 1	7353			
+1210505	73	N	12	59	36770	23.5	13.5	33.638513	-117.856881	.35	ML	4	BISON 1	7353			
+1210523	73	N	12	59		13.96	3.96	33.577091	-117.714614	.35	ML	4	ALISO 1	7322			
+1210524	73	N	12	59	36770	23.2	13.2	33.635664	-117.852976	.35	ML	4	N OF BONITA	7352			
+1210525	73	S	12	59	36770	R23.2	13.2	33.635399	-117.853396	.35	ML	4	N OF BONITA	7352			
+1210527	73	S	12	59		13.96	3.96	33.576781	-117.714799	.35	ML	3	ALISO 1	7322			
+1210536	73	N	12	59	36770	22.8	12.8	33.632697	-117.847113	.35	ML	4	BONITA 2	7351			
+1210542	73	S	12	59	36770	22.8	12.8	33.632444	-117.847497	.35	ML	4	BONITA 2	7351			
+1210543	73	N	12	59		14.4	4.4	33.580619	-117.720958	.37	ML	4	ALISO 3	7323			
+1210551	73	S	12	59		14.4	4.4	33.580299	-117.721195	.37	ML	3	ALISO 3	7323			
+1210552	73	S	12	59	36770	22.5	12.5	33.630935	-117.842609	.3	ML	4	BONITA 1	7350			
+1210560	73	N	12	59		14.7	4.7	33.583441	-117.724921	.275	ML	4	ALISO 4	7325			
+1210561	73	N	12	59	36770	22.5	12.5	33.631208	-117.842241	.3	ML	4	BONITA 1	7350			
+1210570	73	S	12	59		14.7	4.7	33.583126	-117.725184	.275	ML	4	ALISO 4	7325			
+1210571	73	N	12	59	36770	22.2	12.2	33.629759	-117.837358	.35	ML	5	S OF BONITA	7349			
+1210572	73	S	12	59	36770	22.2	12.2	33.629475	-117.837662	.35	ML	4	S OF BONITA	7349			
+1210573	73	N	12	59		14.95	4.95	33.585779	-117.72822	.28	ML	4	LAGUNA HILLS	7326			
+1210574	73	S	12	59		14.95	4.95	33.585421	-117.728504	.28	ML	3	LAGUNA HILLS	7326			
+1210582	73	N	12	59		15.26	5.26	33.58748	-117.733096	.375	ML	5	GLENWOOD 1	7327			
+1210583	73	S	12	59		15.26	5.26	33.587118	-117.733325	.375	ML	4	GLENWOOD 1	7327			
+1210589	73	S	12	59		15.7	5.7	33.587924	-117.740964	.35	ML	3	EL TORO 1	7328			
+1210590	73	N	12	59		15.7	5.7	33.588223	-117.740639	.35	ML	4	EL TORO 1	7328			
+1210597	73	S	12	59		15.96	5.96	33.588855	-117.745361	.275	ML	3	EL TORO 2	7329			
+1210598	73	N	12	59		15.96	5.96	33.589091	-117.744983	.275	ML	3	EL TORO 2	7329			
+1210599	73	S	12	59		16.25	6.25	33.590342	-117.750156	.315	ML	3	EL TORO 3	7330			
+1210600	73	N	12	59		16.25	6.25	33.590678	-117.749665	.315	ML	3	EL TORO 3	7330			
+1210601	73	N	12	59	39178	16.59	6.59	33.591624	-117.755573	.365	ML	4	EL TORO 4	7331			
+1210602	73	S	12	59	39178	16.59	6.59	33.59118	-117.755882	.365	ML	3	EL TORO 4	7331			
+1210609	73	N	12	59		16.98	6.98	33.593909	-117.76171	.305	ML	4	RTE 133 3	7334			
+1210610	73	S	12	59		16.98	6.98	33.593514	-117.761968	.305	ML	3	RTE 133 3	7334			
+1210618	73	N	12	59		17.2	7.2	33.595997	-117.764653	.32	ML	4	RTE 133 4	7335			
+1210619	73	S	12	59		17.2	7.2	33.595564	-117.764927	.32	ML	3	RTE 133 4	7335			
+1210628	73	N	12	59		17.62	7.62	33.598966	-117.770961	.375	ML	4	S OF PM 18	7336			
+1210629	73	S	12	59		17.62	7.62	33.59849	-117.771217	.375	ML	3	S OF PM 18	7336			
+1210637	73	N	12	59		17.95	7.95	33.599693	-117.776669	.34	ML	4	AT PM 18	7337			
+1210638	73	S	12	59		17.95	7.95	33.599221	-117.776885	.34	ML	3	AT PM 18	7337			
+1210647	73	N	12	59		18.3	8.3	33.601969	-117.782151	.32	ML	4	WILDLIFE	7338			
+1210648	73	S	12	59		18.3	8.3	33.601523	-117.78232	.32	ML	4	WILDLIFE	7338			
+1210659	73	N	12	59		18.59	8.59	33.602777	-117.786992	.6	ML	3	CATALINA 1	7339			
+1210660	73	S	12	59		18.59	8.59	33.602353	-117.787181	.6	ML	5	CATALINA 1	7339			
+1210661	73	N	12	59	36770	21.8	11.8	33.626366	-117.831907	.35	ML	4	NEWPORT COAST 2	7348			
+1210669	73	S	12	59	36770	21.8	11.8	33.625981	-117.832171	.35	ML	4	NEWPORT COAST 2	7348			
+1210678	73	S	12	59	36770	21.5	11.5	33.623005	-117.828338	.35	ML	4	NEWPORT COAST 1	7347			
+1210679	73	N	12	59	36770	21.5	11.5	33.623392	-117.828171	.35	ML	4	NEWPORT COAST 1	7347			
+1210687	73	N	12	59		21.1	11.1	33.620522	-117.822056	.35	ML	4	SAND CANYON 5	7346			
+1210688	73	S	12	59		21.1	11.1	33.620205	-117.822441	.35	ML	4	SAND CANYON 5	7346			
+1210696	73	N	12	59	36770	20.8	10.8	33.616831	-117.819255	.25	ML	3	SAND CANYON 4	7345			
+1210697	73	S	12	59	36770	20.8	10.8	33.616669	-117.819745	.25	ML	4	SAND CANYON 4	7345			
+1210705	73	N	12	59	36770	20.6	10.6	33.614224	-117.817786	.2	ML	4	SAND CANYON 3	7344			
+1210706	73	S	12	59	36770	20.6	10.6	33.614005	-117.8183	.2	ML	4	SAND CANYON 3	7344			
+1210715	73	N	12	59	36770	20.4	10.4	33.611986	-117.815658	.2	ML	4	SAND CANYON 2	7343			
+1210716	73	S	12	59	36770	20.4	10.4	33.611697	-117.816184	.2	ML	4	SAND CANYON 2	7343			
+1210728	73	N	12	59	36770	20.2	10.2	33.610446	-117.812765	.3	ML	4	SAND CANYON 1	7342			
+1210729	73	S	12	59	36770	20.2	10.2	33.610123	-117.813251	.3	ML	5	SAND CANYON 1	7342			
+1210736	73	N	12	59	36770	19.8	9.8	33.609334	-117.806039	.35	ML	3	CATALINA 3	7341			
+1210737	73	S	12	59	36770	19.8	9.8	33.608817	-117.806455	.35	ML	3	CATALINA 3	7341			
+1210744	73	N	12	59	36770	19.5	9.5	33.607825	-117.801253	.605	ML	3	CATALINA 2	7340			
+1210745	73	S	12	59	36770	19.5	9.5	33.607237	-117.801595	.605	ML	3	CATALINA 2	7340			
+1210749	73	S	12	59		13.38	3.38	33.573158	-117.706028	.28	ML	3	LA PAZ  1	7319			
+1210751	73	S	12	59	39220	12.9	2.9	33.568221	-117.699705		OR	1	MOULTON	7317			
+1210754	73	N	12	59		13.38	3.38	33.573435	-117.705711		OR	2	LA PAZ  1	7319			
+1210757	73	S	12	59		15.9	5.9	33.588528	-117.744385		OR	2	EL TORO 1	7328			
+1210759	73	N	12	59		16.98	6.98	33.593909	-117.76171		OR	1	RTE 133 3	7334			
+1210762	73	S	12	59	36770	19.8	9.8	33.608817	-117.806455		FR	3	CATALINA 3	7341			
+1210764	73	S	12	59	36770	21.5	11.5	33.623005	-117.828338		OR	1	NEWPORT COAST 1	7347			
+1210766	73	S	12	59	36770	22.5	12.5	33.630935	-117.842609		OR	1	BONITA 1	7350			
+1210768	73	S	12	59	36770	23.5	13.5	33.638307	-117.857266		OR	1	BISON 1	7353			
+1210770	73	S	12	59	36770	23.7	13.7	33.640714	-117.859193		OR	1	MACARTHUR 1	7354			
+1210772	73	N	12	59	36770	23.73	13.73	33.64132	-117.858984		OR	1	BISON 2	7372			
+1210774	73	N	12	59	36770	24.1	14.1	33.646501	-117.860508		OR	1	MACARTHUR 2	7355			
+1210776	73	S	12	59	36770	24.72	14.72	33.65462	-117.864335		OR	1	JAMBOREE 1	7357			
+1210779	73	N	12	59	36770	24.78	14.78	33.655401	-117.86475		OR	1	JAMBOREE 2	7358			
+1210780	73	S	12	59	39220	12.1	2.1	33.559525	-117.69095		FR	1	GREENFIELD 2	7314			
+1210785	73	N	12	59		13.96	3.96	33.577091	-117.714614		FR	2	ALISO 1	7322			
+1210787	73	S	12	59		14.7	4.7	33.583126	-117.725184		FR	1	ALISO 4	7325			
+1210790	73	N	12	59		15.9	5.9	33.588765	-117.744024		FR	2	EL TORO 1	7328			
+1210792	73	N	12	59	36770	21.5	11.5	33.623392	-117.828171		FR	1	NEWPORT COAST 1	7347			
+1210794	73	S	12	59	36770	21.8	11.8	33.625981	-117.832171		FR	1	NEWPORT COAST 2	7348			
+1210796	73	N	12	59	36770	22.5	12.5	33.631208	-117.842241		FR	1	BONITA 1	7350			
+1210799	73	S	12	59	36770	24.1	14.1	33.646308	-117.860978		FR	1	MACARTHUR 2	7355			
+1210801	73	S	12	59	36770	23.9	13.9	33.643454	-117.86032		FR	1	BISON 2	7372			
+1210805	73	S	12	59	36770	22.8	12.8	33.632444	-117.847497		FR	1	BONITA 2	7351			
+1210814	5	N	12	59	36770	27.7	99.951	33.720695	-117.796397		OR	1	JAMBOREE 2	562			
+1210841	5	S	12	59	65084	.9	73.095	33.408425	-117.599923	.31	ML	4	CALAFIA	689			
+1210842	5	S	12	59	65084	.9	73.095	33.408425	-117.599923		OR	1	CALAFIA	689			
+1210843	5	S	12	59	65084	.9	73.095	33.408425	-117.599923		FR	1	CALAFIA	689			
+1210856	5	S	12	59	65084	1.49	73.685	33.416348	-117.603827	.44	ML	4	EL CAMINO REAL	688			
+1210857	5	S	12	59	65084	1.49	73.685	33.416348	-117.603827		OR	1	EL CAMINO REAL	688			
+1210858	5	S	12	59	65084	1.49	73.685	33.416348	-117.603827		FR	1	EL CAMINO REAL	688			
+1210872	5	S	12	59	65084	2.14	74.335	33.424652	-117.609039	.655	ML	4	PRESIDIO	687			
+1210877	5	S	12	59	65084	2.14	74.335	33.424652	-117.609039		OR	1	PRESIDIO	687			
+1210882	5	S	12	59	65084	3.23	75.425	33.437336	-117.619943	.38	ML	4	PICO 1	686			
+1210883	5	S	12	59	65084	3.23	75.425	33.437336	-117.619943		OR	1	PICO 1	686			
+1210895	5	S	12	59	65084	5.59	77.785	33.457014	-117.653153	.535	ML	4	ESTRELLA	685			
+1210896	5	S	12	59	65084	5.59	77.785	33.457014	-117.653153		OR	1	ESTRELLA	685			
+1210897	5	S	12	59	65084	5.59	77.785	33.457014	-117.653153		FR	2	ESTRELLA	685			
+1210908	5	N	12	59	65084	3.23	75.488	33.43749	-117.619773	.38	ML	4	PICO 1	686			
+1210909	5	S	12	59	65084	2.8	74.995	33.432273	-117.615724	.545	ML	5	PALIZADA	532			
+1210912	5	S	12	59	65084	2.8	74.995	33.432273	-117.615724		FR	1	PALIZADA	532			
+1210925	5	S	12	59	68028	9.15	81.345	33.496001	-117.659442	1.4	HV	1	PLAZA	2032			
+1210926	5	N	12	59	68028	9.15	81.408	33.495938	-117.659127	.515	ML	4	PLAZA	2032			
+1210927	5	N	12	59	68028	9.15	81.408	33.495938	-117.659127	.515	HV	1	PLAZA	2032			
+1210946	5	S	12	59	68028	9.4	81.595	33.499521	-117.658583		OR	1	ORTEGA  1	683			
+1210948	5	N	12	59	68028	9.4	81.658	33.499516	-117.658278		FR	1	ORTEGA  1	683			
+1210957	5	S	12	59	68028	9.69	81.885	33.503672	-117.65892		FR	2	ORTEGA  2	541			
+1210972	5	S	12	59	68028	10.1	82.295	33.5093	-117.661127	.5	ML	5	EL HORNO	2031			
+1210973	5	S	12	59	68028	10.1	82.295	33.5093	-117.661127	.5	HV	1	EL HORNO	2031			
+1210974	5	N	12	59	68028	10.1	82.358	33.50939	-117.660803	.355	ML	5	EL HORNO	2031			
+1210975	5	N	12	59	68028	10.1	82.358	33.50939	-117.660803	.355	HV	1	EL HORNO	2031			
+1210991	5	N	12	59	68028	10.4	82.658	33.513534	-117.662568	.475	ML	5	SERRA PARK	5008			
+1210992	5	N	12	59	68028	10.4	82.658	33.513534	-117.662568	.475	HV	1	SERRA PARK	5008			
+1210993	5	S	12	59	68028	10.4	82.595	33.513441	-117.662905	.3	ML	5	SERRA PARK	5008			
+1210994	5	S	12	59	68028	10.4	82.595	33.513441	-117.662905	.3	HV	1	SERRA PARK	5008			
+1211047	405	S	12	59	36770	2.88	2.65	33.657534	-117.778085		FR	1	SAND CANYON	1560			
+1211054	405	S	12	59	36770	.96	.73	33.64795	-117.747203		FR	2	IRVINE C2	1413			
+1211065	405	S	12	59	36770	.6	.37	33.646186	-117.741301	.455	HV	1	N OF 5	2436			
+1211066	405	N	12	59	36770	.6	.37	33.646486	-117.741156	.535	ML	3	N OF 5	2436			
+1211067	405	N	12	59	36770	.6	.37	33.646486	-117.741156	.535	HV	1	N OF 5	2436			
+1211075	5	S	12	59	68028	7.46	79.655	33.475102	-117.674584	.695	ML	5	CAPISTRANO	539			
+1211079	5	N	12	59	68028	8.64	80.898	33.489561	-117.663255		FR	2	S JUAN CREEK	540			
+1211087	5	S	12	59	68028	11.37	83.565	33.526418	-117.668912	.605	HV	1	TRABUCO	2030			
+1211088	5	N	12	59	68028	11.37	83.628	33.526621	-117.66866	.43	HV	1	TRABUCO	2030			
+1211095	5	N	12	59	68028	11.91	84.168	33.53247	-117.674488	.445	HV	1	WILDWOOD	2544			
+1211096	5	S	12	59	68028	11.91	84.105	33.53231	-117.674919	.515	HV	1	WILDWOOD	2544			
+1211107	5	N	12	59	68028	12.26	84.518	33.537513	-117.674416	.57	ML	4	S OF 73	5009			
+1211108	5	N	12	59	68028	12.26	84.518	33.537513	-117.674416	.57	HV	1	S OF 73	5009			
+1211109	5	N	12	59	68028	12.26	84.518	33.537513	-117.674416		FF	3	N5 to N73	5009			
+1211117	5	N	12	59	39220	20	92.258	33.629553	-117.721491	.45	HV	2	LAKE FOR2	557			
+1211118	5	N	12	59	39220	20	92.258	33.629553	-117.721491		CD	2	LAKE FOR2	557			
+1211133	5	N	12	59	36770	20.59	92.848	33.636144	-117.72806	.355	HV	2	BAKE 1	558			
+1211134	5	N	12	59	36770	20.59	92.848	33.636144	-117.72806		OR	1	BAKE 1	558			
+1211135	5	N	12	59	36770	20.59	92.848	33.636144	-117.72806		FR	2	BAKE 1	558			
+1211136	5	N	12	59	36770	20.59	92.848	33.636144	-117.72806		CD	2	BAKE 1	558			
+1211146	5	N	12	59	36770	20.94	93.198	33.640323	-117.731437		FF	2	5 NB TO 405 NB	566			
+1211147	5	N	12	59	36770	20.94	93.198	33.640323	-117.731437		OR	2	BAKE 2	566			
+1211148	5	N	12	59	36770	20.94	93.198	33.640323	-117.731437		CD	2	5 NB TRUCK BYPASS	566			
+1211151	5	S	12	59	36770	21.92	94.115	33.652076	-117.741205		FF	2	CD OFF	1518			
+1211177	5	S	12	59	39220	16.5	88.695	33.597607	-117.67615	.48	HV	1	LA PAZ 2	673			
+1211178	5	S	12	59	39220	16.5	88.695	33.597607	-117.67615		OR	1	LA PAZ 2	673			
+1211180	5	S	12	59	39220	16.5	88.695	33.597607	-117.67615		FR	3	LA PAZ 2	673			
+1211182	5	S	12	59	48256	16.3	88.495	33.595354	-117.673779	.35	HV	1	LA PAZ 1	674			
+1211183	5	S	12	59	39220	17.49	89.685	33.604617	-117.69087	.455	HV	1	ALICIA 2	1446			
+1211204	241	N	12	59		25.15	10.605	33.697044	-117.695163	.315	ML	4	PORTOLA N2	6560			
+1211205	241	N	12	59		25.15	10.605	33.697044	-117.695163		OR	1	PORTOLA N2	6560			
+1211206	241	S	12	59		25.15	10.605	33.696803	-117.695456	.315	ML	3	PORTOLA N2	6560			
+1211207	241	S	12	59		25.15	10.605	33.696803	-117.695456		FR	1	PORTOLA N2	6560			
+1211218	241	N	12	59		25.43	10.885	33.699076	-117.699355	.19	ML	3	TOMATO 1	6058			
+1211221	241	S	12	59		25.43	10.885	33.698857	-117.699698	.19	ML	3	TOMATO 1	6058			
+1211229	241	S	12	59		25.72	11.175	33.700961	-117.704109	.145	ML	3	TOMATO 2	6059			
+1211236	241	N	12	59		25.95	11.405	33.702783	-117.707184	.26	ML	3	TOMATO 3	6060			
+1211247	241	S	12	59		26.35	11.805	33.705538	-117.71368	.29	ML	4	TOMATO 4	6061			
+1211248	241	N	12	59		26.35	11.805	33.70568	-117.713171	.175	ML	4	TOMATO 4	6061			
+1211264	241	N	12	59		26.58	12.035	33.707439	-117.716523	.18	ML	3	133-1	6062			
+1211265	241	N	12	59		26.58	12.035	33.707439	-117.716523		FF	2	N241 TO S133 133-1	6062			
+1211266	241	S	12	59		26.58	12.035	33.707275	-117.717092	.18	ML	4	133-1	6062			
+1211276	241	N	12	59		26.76	12.215	33.709384	-117.718562	.27	ML	2	133-2	6063			
+1211277	241	N	12	59		26.76	12.215	33.709384	-117.718562		FF	2	N241 TO S133 133-2	6063			
+1211278	241	S	12	59		26.76	12.215	33.709292	-117.719081	.27	ML	2	133-2	6063			
+1211279	241	S	12	59		26.76	12.215	33.709292	-117.719081		FF	2	N133 TO S241 133-2	6063			
+1211285	241	N	12	59		27.12	12.575	33.714309	-117.720349	.23	ML	2	133-3	6064			
+1211286	241	S	12	59		27.12	12.575	33.714276	-117.720884	.23	ML	2	133-3	6064			
+1211296	241	N	12	59		27.43	12.885	33.718783	-117.719917	.155	ML	2	BEE CANYON	6065			
+1211297	241	N	12	59		27.43	12.885	33.718783	-117.719917		FF	2	N133 TO N241 BEE CAN	6065			
+1211298	241	S	12	59		27.43	12.885	33.718798	-117.72046	.155	ML	2	BEE CANYON	6065			
+1211299	241	S	12	59		27.43	12.885	33.718798	-117.72046		FF	2	S241 TO S133 BEE CAN	6065			
+1211309	241	N	12	59		27.74	13.195	33.723299	-117.719302	.155	ML	4	N OF 133	6066			
+1211310	241	S	12	59		27.74	13.195	33.723287	-117.719567	.155	ML	3	N OF 133	6066			
+1211317	241	N	12	59		28.09	13.545	33.728406	-117.71867	.175	ML	3	S OF JEFFREY	6067			
+1211318	241	S	12	59		28.09	13.545	33.728394	-117.718803	.175	ML	2	S OF JEFFREY	6067			
+1211325	241	N	12	59		28.44	13.895	33.73351	-117.718013	.27	ML	3	N OF JEFFREY	6068			
+1211326	241	S	12	59		28.44	13.895	33.733511	-117.71813	.27	ML	2	N OF JEFFREY	6068			
+1211334	241	N	12	59		28.73	14.185	33.737751	-117.71751	.265	ML	3	N OF HAUL ROAD	6069			
+1211335	241	S	12	59		28.73	14.185	33.73777	-117.717633	.265	ML	2	N OF HAUL ROAD	6069			
+1211343	241	N	12	59		28.97	14.425	33.741266	-117.717935	.305	ML	3	HAUL-CULVER	6070			
+1211344	241	S	12	59		28.97	14.425	33.741319	-117.718081	.305	ML	2	HAUL-CULVER	6070			
+1211352	241	N	12	59		29.34	14.795	33.746087	-117.720909	.36	ML	3	S OF CULVER S	6071			
+1211353	241	S	12	59		29.34	14.795	33.746148	-117.721164	.36	ML	2	S OF CULVER S	6071			
+1211360	241	N	12	59		29.69	15.145	33.749247	-117.725783	.33	ML	3	N OF CULVER S	6072			
+1211361	241	S	12	59		29.69	15.145	33.74929	-117.726132	.33	ML	2	N OF CULVER S	6072			
+1211368	241	N	12	59		30	15.455	33.751905	-117.730214	.205	ML	3	CULVER-CULVER 1	6073			
+1211369	241	S	12	59		30	15.455	33.752046	-117.730537	.205	ML	2	CULVER-CULVER 1	6073			
+1211378	241	N	12	59		30.33	15.785	33.756276	-117.732601	.165	ML	3	CULVER-CULVER 2	6074			
+1211379	241	S	12	59		30.33	15.785	33.756517	-117.732805	.165	ML	3	CULVER-CULVER 2	6074			
+1211387	241	N	12	59		30.72	16.175	33.76201	-117.732107	.195	ML	3	S OF CULVER N	6075			
+1211388	241	S	12	59		30.72	16.175	33.762314	-117.732284	.195	ML	3	S OF CULVER N	6075			
+1211395	241	N	12	59		31.03	16.485	33.766355	-117.733568	.155	ML	2	N OF CULVER N	6076			
+1211396	241	S	12	59		31.03	16.485	33.766637	-117.734012	.155	ML	3	N OF CULVER N	6076			
+1211410	241	S	12	59	2000	38.23	23.685	33.862266	-117.717429	1.024	ML	5	S OF 91	6094			
+1211417	241	S	12	59	2000	38.64	24.095	33.866619	-117.722022		FF	2	E91 TO S241 RT 91 ON	6095			
+1211418	241	S	12	59	2000	38.64	24.095	33.866619	-117.722022		FF	3	W91 TO S241 RT 91 ON	6095			
+1211424	241	N	12	59		33.68	19.135	33.794622	-117.731726	.165	ML	3	S OF SANT CREEK	6081			
+1211425	241	S	12	59		33.68	19.135	33.794954	-117.732055	.165	ML	3	S OF SANT CREEK	6081			
+1211433	241	N	12	59		34.03	19.485	33.798225	-117.72693	.3	ML	3	N OF SANT CR1	6082			
+1211434	241	S	12	59		34.03	19.485	33.798558	-117.727285	.3	ML	3	N OF SANT CR1	6082			
+1211444	241	S	12	59		34.38	19.835	33.803726	-117.725304	.345	ML	3	N OF SANT CR2	6083			
+1211445	241	N	12	59		34.38	19.835	33.803371	-117.724852	.345	ML	4	N OF SANT CR2	6083			
+1211451	241	N	12	59		34.72	20.175	33.808431	-117.722969	.22	ML	4	S OF OAK	6084			
+1211455	241	S	12	59		34.72	20.175	33.808747	-117.72335	.22	ML	3	S OF OAK	6084			
+1211461	241	N	12	59		35.08	20.535	33.813341	-117.719677	.305	ML	4	N OF OAK	6085			
+1211465	241	S	12	59		35.08	20.535	33.81365	-117.720094	.305	ML	3	N OF OAK	6085			
+1211471	241	N	12	59		35.43	20.885	33.818484	-117.717431	.37	ML	4	S OF SCE OC	6086			
+1211475	241	S	12	59		35.43	20.885	33.818768	-117.71784	.37	ML	4	S OF SCE OC	6086			
+1211481	241	N	12	59	2000	38.31	23.765	33.863192	-117.716721		FF	2	N241 TO E91 RT 91OFF	6096			
+1211482	241	N	12	59	2000	38.31	23.765	33.863192	-117.716721		FF	2	N241 TO W91 RT 91OFF	6096			
+1211490	241	N	12	59		31.44	16.895	33.770424	-117.738882	.205	ML	3	S OF EOC OC	6077			
+1211491	241	S	12	59		31.44	16.895	33.770618	-117.739531	.205	ML	3	S OF EOC OC	6077			
+1211499	241	N	12	59		31.88	17.335	33.774559	-117.744897	.375	ML	2	CHAPMAN 1	6078			
+1211500	241	N	12	59		31.88	17.335	33.774559	-117.744897		FR	1	CHAPMAN 1	6078			
+1211501	241	S	12	59		31.88	17.335	33.774682	-117.745706	.375	ML	3	CHAPMAN 1	6078			
+1211509	241	N	12	59		32.29	17.745	33.780001	-117.747616	.255	ML	2	CHAPMAN 2	6562			
+1211510	241	S	12	59		32.29	17.745	33.780289	-117.7482	.255	ML	2	CHAPMAN 2	6562			
+1211511	241	S	12	59		32.29	17.745	33.780289	-117.7482		OR	2	CHAPMAN 2	6562			
+1211515	241	N	12	59		35.82	21.275	33.824439	-117.715964	.355	ML	3	WINDY RIDGE 1	6087			
+1211518	241	N	12	59		35.82	21.275	33.824439	-117.715964		FR	2	WINDY RIDGE 1	6087			
+1211522	241	S	12	59		35.82	21.275	33.824805	-117.717155	.355	ML	3	WINDY RIDGE 1	6087			
+1211524	241	S	12	59		35.82	21.275	33.824805	-117.717155		FR	2	WINDY RIDGE 1	6087			
+1211528	241	N	12	59		36.14	21.595	33.829413	-117.716485	.275	ML	3	WINDY RIDGE 2	6088			
+1211531	241	S	12	59		36.14	21.595	33.829789	-117.717224	.305	ML	3	WINDY RIDGE 2	6088			
+1211535	241	N	12	59		36.37	21.825	33.832975	-117.717081	.34	ML	3	WINDY RIDGE 3	6089			
+1211539	241	S	12	59		36.43	21.885	33.83428	-117.717841	.34	ML	3	WINDY RIDGE 3	6089			
+1211541	241	N	12	59		36.37	21.825	33.832975	-117.717081		OR	2	WINDY RIDGE 3	6089			
+1211545	241	S	12	59		36.43	21.885	33.83428	-117.717841		FR	3	WINDY RIDGE 3	6089			
+1211550	241	N	12	59	2000	36.82	22.275	33.839984	-117.717671	.375	ML	4	W R WILDLIFE	6090			
+1211560	241	N	12	59		32.71	18.165	33.785685	-117.745126	.21	ML	2	CHAPMAN 3	6079			
+1211561	241	N	12	59		32.71	18.165	33.785685	-117.745126		FF	2	N261 TO N241 CHAPMN3	6079			
+1211562	241	S	12	59		32.71	18.165	33.786034	-117.745698	.21	ML	2	CHAPMAN 3	6079			
+1211563	241	S	12	59		32.71	18.165	33.786034	-117.745698		FF	2	S241 TO S261 CHAPMN3	6079			
+1211574	241	N	12	59		32.97	18.425	33.788286	-117.741766	.27	ML	2	CHAPMAN 4	6563			
+1211575	241	S	12	59		32.97	18.425	33.788553	-117.74219	.27	ML	3	CHAPMAN 4	6563			
+1211576	241	S	12	59		32.97	18.425	33.788553	-117.74219		FR	1	CHAPMAN 4	6563			
+1211577	241	N	12	59		32.97	18.425	33.788286	-117.741766		FF	3	CHAPMAN 4	6563			
+1211585	241	N	12	59		33.35	18.805	33.791626	-117.736347	.24	ML	3	N OF CHAPMAN	6080			
+1211586	241	S	12	59		33.35	18.805	33.791961	-117.73675	.24	ML	3	N OF CHAPMAN	6080			
+1211624	241	N	12	59	2000	37.88	23.335	33.856526	-117.716773	.37	ML	4	N OF W R WILDLIFE 3	6093			
+1211625	241	S	12	59	2000	37.88	23.335	33.856811	-117.717346	.37	ML	4	N OF W R WILDLIFE 3	6093			
+1211626	241	N	12	59	2000	37.49	22.945	33.850422	-117.71672	.38	ML	4	N OF W R WILDLIFE 2	6092			
+1211627	241	S	12	59	2000	37.49	22.945	33.850729	-117.717261	.38	ML	4	N OF W R WILDLIFE 2	6092			
+1211628	241	N	12	59	2000	37.12	22.575	33.844639	-117.716931	.335	ML	4	N OF W R WILDLIFE 1	6091			
+1211629	241	S	12	59	2000	37.12	22.575	33.844965	-117.717372	.335	ML	4	N OF W R WILDLIFE 1	6091			
+1211634	241	S	12	59	2000	36.82	22.275	33.840335	-117.718159	.345	ML	4	W R WILDLIFE	6090			
+1211641	22	W	12	59	53980	R9.9	11.461	33.779058	-117.886182	.225	ML	4	HESPERIAN	2341			
+1211653	133	N	12	59		13.42	13.411	33.71555	-117.721749	.414	ML	3	ORANGE 2	6111			
+1211654	133	S	12	59		13.42	13.411	33.715749	-117.722121	.414	ML	2	ORANGE 2	6111			
+1211663	133	N	12	59		13.04	13.031	33.709447	-117.724497	.325	ML	2	ORANGE 1	6110			
+1211664	133	N	12	59		13.04	13.031	33.709447	-117.724497		FR	1	ORANGE 1	6110			
+1211665	133	S	12	59		13.04	13.031	33.710914	-117.72449	.5	ML	2	ORANGE 1	6110			
+1211666	133	S	12	59		13.04	13.031	33.710914	-117.72449		OR	1	ORANGE 1	6110			
+1211682	133	N	12	59		12.77	12.761	33.706148	-117.726196	.31	ML	2	133NB to 241NB	6109			
+1211683	133	N	12	59		12.77	12.761	33.706148	-117.726196		FF	2	133NB to 241SB	6109			
+1211692	133	N	12	59		12.42	12.411	33.70238	-117.72971	.36	ML	4	S OF PORTOLA	6108			
+1211693	133	S	12	59		12.42	12.411	33.702574	-117.730095	.495	ML	4	S OF PORTOLA	6108			
+1211706	133	N	12	59		12.05	12.041	33.698464	-117.733959	.36	ML	3	IRVINE BLVD 3	6582			
+1211707	133	N	12	59		12.05	12.041	33.698464	-117.733959		OR	1	IRVINE BLVD 3	6582			
+1211708	133	S	12	59		12.05	12.041	33.698681	-117.734303	.36	ML	3	IRVINE BLVD 3	6582			
+1211709	133	S	12	59		12.05	12.041	33.698681	-117.734303		FR	2	IRVINE BLVD 3	6582			
+1211716	133	S	12	59		11.7	11.691	33.694604	-117.737826	.35	ML	3	IRVINE BLVD 1	6580			
+1211717	133	N	12	59		11.7	11.691	33.694404	-117.737541	.35	ML	3	IRVINE BLVD 1	6580			
+1211718	133	N	12	59		11.6	11.591	33.69322	-117.738544		FR	1	IRVINE BLVD 1	6580			
+1211724	133	N	12	59		11.35	11.341	33.690256	-117.741045	.31	ML	3	N OF PM 11	6107			
+1211725	133	S	12	59		11.35	11.341	33.690454	-117.741328	.31	ML	3	N OF PM 11	6107			
+1211731	133	N	12	59		11.08	11.071	33.687048	-117.743737	.31	ML	3	AT PM 11	6106			
+1211732	133	S	12	59		11.08	11.071	33.687243	-117.744014	.31	ML	3	AT PM 11	6106			
+1211740	133	N	12	59		10.73	10.721	33.683166	-117.746935	.29	ML	4	S OF PM 11	6105			
+1211741	133	S	12	59		10.73	10.721	33.683386	-117.747277	.29	ML	4	S OF PM 11	6105			
+1211750	133	N	12	59		10.5	10.491	33.680812	-117.748819	.34	ML	3	N OF MARINE	6104			
+1211752	133	S	12	59		10.5	10.491	33.68106	-117.74924	.34	ML	3	N OF MARINE	6104			
+1211760	133	N	12	59		10.05	10.041	33.676181	-117.752421	.365	ML	2	MARINE WAY	6103			
+1211761	133	S	12	59		10.05	10.041	33.676396	-117.752844	.365	ML	3	MARINE WAY	6103			
+1211770	133	N	12	59	36770	9.77	9.761	33.672836	-117.753243	.34	ML	2	N OF 5	6102			
+1211772	133	S	12	59	36770	9.77	9.761	33.673029	-117.753623	.34	ML	2	N OF 5	6102			
+1211784	133	N	12	59	36770	9.37	9.361	33.667495	-117.753044	.335	ML	2	S OF 5	6100			
+1211785	133	N	12	59	36770	9.37	9.361	33.667495	-117.753044		FF	2	S OF 5	6100			
+1211786	133	N	12	59	36770	9.37	9.361	33.667495	-117.753044		FF	1	S OF 5	6100			
+1211787	133	S	12	59	36770	9.37	9.361	33.667665	-117.753428	.385	ML	2	S OF 5	6100			
+1211788	133	S	12	59	36770	9.37	9.361	33.667665	-117.753428		FF	2	S OF 5	6100			
+1211800	5	S	12	59	48256	13.6	85.795	33.556667	-117.673131		OR	2	CROWN VA1	678			
+1211801	5	S	12	59	48256	13.6	85.795	33.556667	-117.673131	.83	HV	1	CROWN VA1	678			
+1211804	5	S	12	59	39220	17.49	89.685	33.604617	-117.69087		OR	1	ALICIA 2	1446			
+1211805	5	S	12	59	39220	17.49	89.685	33.604617	-117.69087		FR	2	ALICIA 2	1446			
+1211816	5	S	12	59	48256	12.8	84.995	33.545217	-117.673404	.6	ML	4	AVERY 1	679			
+1211817	5	S	12	59	48256	12.8	84.995	33.545217	-117.673404		OR	1	AVERY 1	679			
+1211818	5	S	12	59	48256	12.8	84.995	33.545217	-117.673404	.6	HV	1	AVERY 1	679			
+1211829	5	S	12	59	68028	12.4	84.595	33.539447	-117.674695	.445	ML	4	S of 73	5011			
+1211830	5	S	12	59	68028	12.4	84.595	33.539447	-117.674695	.445	HV	1	S of 73	5011			
+1211831	5	S	12	59	68028	12.4	84.595	33.539447	-117.674695		FF	3	S 73 to S5	5011			
+1211844	5	S	12	59	68028	10.7	82.895	33.517588	-117.664664		OR	1	JUNIPERO SERRA	680			
+1211845	5	N	12	59	68028	10.7	82.958	33.517677	-117.664335		FR	1	JUNIPERO SERRA	680			
+1211846	5	S	12	59	68028	10.7	82.895	33.517588	-117.664664	.485	HV	1	JUNIPERO SERRA	680			
+1211847	5	S	12	59	48256	15.03	87.225	33.577397	-117.671983		OR	1	OSO PARK1	677			
+1211848	5	S	12	59	48256	16.3	88.495	33.595354	-117.673779		OR	1	LA PAZ 1	674			
+1211849	5	S	12	59	48256	15.3	87.495	33.581316	-117.671925		OR	1	OSO PARK2	676			
+1211850	5	S	12	59	48256	15.3	87.495	33.581316	-117.671925		FR	1	OSO PARK2	676			
+1211851	5	S	12	59	48256	15.3	87.495	33.581316	-117.671925	.385	HV	1	OSO PARK2	676			
+1211852	5	S	12	59	48256	15.03	87.225	33.577397	-117.671983	.42	HV	1	OSO PARK1	677			
+1211853	5	S	12	59	36770	21.25	93.445	33.643978	-117.734722	.575	ML	3	At 405	2303			
+1211854	5	S	12	59	36770	21.25	93.445	33.643978	-117.734722	.665	HV	1	At 405	2303			
+1211855	5	S	12	59	36770	21.25	93.445	33.643978	-117.734722		FF	3	S405 to S5	2303			
+1211856	5	N	12	59	36770	21.25	93.508	33.644068	-117.734444	.58	HV	1	At 405	2303			
+1211857	5	N	12	59	36770	21.25	93.508	33.644068	-117.734444		FF	2	CD to N5	2303			
+1211860	91	W	12	59	40256	R.4	15.139	33.85962	-118.035622	.639	HV	1	ORANGETHORPE	315			
+1211862	91	E	12	59	40256	R.6	15.339	33.858147	-118.032578	.739	HV	1	ORANGETHORPE	305			
+1211869	57	N	12	59		22	11.266	33.940872	-117.875138	1.054	HV	1	TONNER	987			
+1211870	57	N	12	59		22	11.266	33.940872	-117.875138	1.054	ML	4	TONNER	987			
+1211871	57	N	12	59		22	11.266	33.940872	-117.875138		FR	1	TONNER	987			
+1211906	57	N	12	59	53980	11.1	.366	33.78435	-117.879424	.2	HV	1	AT CHAPMAN OFF	2351			
+1211907	57	N	12	59	53980	11.1	.366	33.78435	-117.879424	.426	ML	5	AT CHAPMAN OFF	2351			
+1211908	57	S	12	59	53980	11.2	.551	33.786694	-117.880073	.235	HV	1	AT CHAPMAN OFF	2351			
+1211922	91	W	12	59	8786	R1.99	16.729	33.856125	-118.008835	.355	HV	1	KNOTT 2	313			
+1211936	5	S	12	59	68028	8.6	80.795	33.489176	-117.663917		OR	1	S JUAN CREEK	682			
+1211937	5	S	12	59	68028	8.6	80.795	33.489176	-117.663917		FR	1	S JUAN CREEK	682			
+1211939	57	N	12	59	53980	11.2	.466	33.786905	-117.879753	.1	HV	1	CHAPMAN 1	955			
+1211942	91	E	12	59	40256	R1	15.739	33.856083	-118.026091	.36	HV	1	VALLEY VIEW	306			
+1211943	91	W	12	59	40256	R1	15.739	33.856241	-118.026045	.46	HV	1	VALLEY VIEW	306			
+1211954	57	S	12	59	53980	10.8	.151	33.777415	-117.874735	.291	ML	2	RTE 22 & 5	2352			
+1211955	57	S	12	59	53980	10.8	.151	33.777415	-117.874735		FF	1	S57 TO E22	2352			
+1211956	57	S	12	59	53980	10.8	.151	33.777415	-117.874735		FF	3	S57 TO W22	2352			
+1212001	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246	.44	ML	4	ORANGEWOOD 2	5503			
+1212013	5	N	12	59	69000	34.4	106.651	33.782887	-117.880773	.2	HV	1	N OF 57*	2269			
+1212014	5	S	12	59	69000	34.4	106.588	33.782529	-117.881218	.2	HV	1	N OF 57*	2269			
+1212015	5	N	12	59	69000	34.4	106.651	33.782887	-117.880773		FF	2	E22 TO N5	2269			
+1212017	5	S	12	59	69000	34.4	106.588	33.782529	-117.881218		FR	1	5S OFF TO LA VETA	2269			
+1212018	5	S	12	59	69000	34.4	106.588	33.782529	-117.881218		FF	2	S5 TO E22	2269			
+1212038	5	N	12	59	53980	35.1	107.351	33.790771	-117.888724		OR	1	STATE COLLEGE	5500			
+1212045	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246		OR	1	ORANGEWOOD 2	5503			
+1212046	5	S	12	59	69000	31.6	103.788	33.753388	-117.849326	.3	HV	1	GRAND 1	2320			
+1212047	5	N	12	59	69000	31.6	103.851	33.753753	-117.848788	.25	HV	1	GRAND 1	2320			
+1212052	5	S	12	59	80854	29.79	101.978	33.737856	-117.825947		FR	1	NEWPORT	564			
+1212094	5	S	12	59	53980	35.4	107.588	33.793517	-117.892284	.2	ML	4	ORANGEWOOD 1	5502			
+1212095	5	S	12	59	53980	35.4	107.588	33.793517	-117.892284		OR	1	ORANGEWOOD 1	5502			
+1212115	5	N	12	59	2000	36.6	108.851	33.806644	-117.905829	.26	ML	4	ANAHEIM 2	5504			
+1212116	5	S	12	59	2000	36.6	108.788	33.806478	-117.906207	.26	ML	5	ANAHEIM 2	5504			
+1212117	5	N	12	59	2000	36.6	108.851	33.806644	-117.905829		OR	1	ANAHEIM 2	5504			
+1212124	91	E	12	59	8786	R1.99	16.729	33.855926	-118.008847	.385	HV	1	KNOTT 2	308			
+1212126	91	E	12	59	40256	R1.81	16.549	33.855903	-118.011986	.335	HV	1	KNOTT 1	307			
+1212129	91	W	12	59	2000	6.3	24.713	33.848505	-117.872819	.385	HV	1	E OF 57	2377			
+1212130	91	E	12	59	2000	6.3	24.673	33.848316	-117.872812		FF	1	N57 TO E91 CONN	2377			
+1212131	91	W	12	59	2000	6.3	24.713	33.848505	-117.872819		FF	1	W91 TO S57 CONN	2377			
+1212132	91	W	12	59	2000	6.3	24.713	33.848505	-117.872819		FF	1	W91 TO N57 CONN	2377			
+1212134	91	W	12	59	2000	6.05	24.463	33.850258	-117.87661	.4	HV	1	W OF 57	2376			
+1212135	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605		FF	1	W OF 57	2376			
+1212136	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605		FF	2	W OF 57	2376			
+1212137	91	W	12	59	2000	6.05	24.463	33.850258	-117.87661		FF	1	57 SB TO 91 WB	2376			
+1212142	5	N	12	59	69000	34.6	106.851	33.785047	-117.883174	.3	HV	1	CHAPMAN 1	265			
+1212143	5	N	12	59	69000	34.6	106.851	33.785047	-117.883174		FR	1	CHAPMAN 1	265			
+1212147	5	S	12	59	53980	35.4	107.588	33.793517	-117.892284	.2	HV	2	ORANGEWOOD 1	5502			
+1212149	5	S	12	59	53980	36.31	108.498	33.802101	-117.901359	.44	HV	1	KATELLA	263			
+1212150	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246	.44	HV	2	ORANGEWOOD 2	5503			
+1212157	22	W	12	59	53980	R10.71	12.271	33.778461	-117.872394		FF	2	W22 TO N5/N57	2340			
+1212170	22	E	12	59	53980	R10.53	12.091	33.778882	-117.875647	.29	ML	2	W OF 5	2338			
+1212173	22	E	12	59	69000	R10.35	11.911	33.778938	-117.878722		FF	2	E22 TO S5	2338			
+1212174	22	E	12	59	53980	R10.53	12.091	33.778882	-117.875647		FF	2	E22 TO N5/N57	2338			
+1212179	5	N	12	59	2000	37.38	109.631	33.815354	-117.915054	.35	HV	1	HARBOR	575			
+1212184	5	S	12	59	2000	37.48	109.668	33.816263	-117.916397	.35	HV	1	HARBOR	261			
+1212185	5	S	12	59	2000	37.48	109.668	33.816263	-117.916397		FR	1	HARBOR	261			
+1212190	5	S	12	59	2000	37.7	109.888	33.818669	-117.918922	.26	HV	1	BALL	576			
+1212191	5	N	12	59	2000	37.7	109.951	33.818891	-117.918657	.31	HV	1	BALL	576			
+1212195	5	S	12	59	2000	38	110.188	33.82198	-117.922328	.39	HV	1	SOUTH 1	260			
+1212201	5	S	12	59	2000	38.48	110.668	33.827601	-117.927279		FR	1	HOV OFF DISNEYLAND	2017			
+1212202	5	S	12	59	2000	38.48	110.668	33.827601	-117.927279		FR	2	DISNEY DR. OFFRAMP	2017			
+1212216	5	N	12	59	2000	37	109.251	33.811147	-117.910643	.39	ML	5	S OF HARBOR	2491			
+1212217	5	N	12	59	2000	37	109.251	33.811147	-117.910643	.39	HV	1	S OF HARBOR	2491			
+1212218	5	S	12	59	2000	37	109.188	33.810933	-117.910895	.44	ML	5	S OF HARBOR	2491			
+1212219	5	S	12	59	2000	37	109.188	33.810933	-117.910895	.44	HV	1	S OF HARBOR	2491			
+1212224	5	N	12	59	2000	36.6	108.851	33.806644	-117.905829	.26	HV	2	ANAHEIM 2	5504			
+1212225	5	S	12	59	2000	36.6	108.788	33.806478	-117.906207	.26	HV	1	ANAHEIM 2	5504			
+1212226	5	S	12	59	2000	36.6	108.788	33.806478	-117.906207		FR	1	DISNEY WAY	5504			
+1212230	5	S	12	59	53980	36.48	108.668	33.804788	-117.904254	.145	HV	1	ANAHEIM 1	262			
+1212236	5	S	12	59	53980	35.2	107.388	33.791651	-117.890222	.4	HV	2	STATE COLLEGE	264			
+1212240	5	S	12	59	53980	35.2	107.388	33.791651	-117.890222		FR	3	STATE COLLEGE	264			
+1212247	5	N	12	59	53980	35.6	107.851	33.795663	-117.893833	.65	HV	1	GENE AUTRY	2018			
+1212249	5	S	12	59	53980	35.6	107.788	33.79536	-117.894336	.455	HV	1	GENE AUTRY	2018			
+1212250	5	N	12	59	53980	35.6	107.851	33.795663	-117.893833		FR	2	HOV GENE AUTRY OFF	2018			
+1212252	5	N	12	59	53980	35.6	107.851	33.795663	-117.893833		FR	1	HOV DISNEY WAY OFF	2018			
+1212253	5	S	12	59	53980	35.6	107.788	33.79536	-117.894336		OR	2	HOV GENE AUTRY ON	2018			
+1212261	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246		FR	2	KATELLA OFF	5503			
+1212262	5	S	12	59	53980	36.4	108.588	33.803614	-117.902924		FR	1	HOV GENE AUTRY OFF	5503			
+1212263	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246		FR	1	HOV DISNEY WAY OFF	5503			
+1212264	5	N	12	59	53980	36.4	108.651	33.803764	-117.902246		FF	1	HOV GENE AUTRY ON 1	5503			
+1212265	5	N	12	59	2000	38	110.251	33.822186	-117.92205	.2	HV	1	SOUTH 1	260			
+1212268	5	N	12	59	53980	35.1	107.351	33.790771	-117.888724	.3	HV	2	STATE COLLEGE	5500			
+1212281	261	N	12	59	36770	.04	.04	33.712252	-117.800349	.175	ML	3	JAMBOREE	6115			
+1212282	261	S	12	59	36770	.04	.04	33.7124	-117.800638	.27	ML	2	JAMBOREE	6115			
+1212283	261	N	12	59	36770	.04	.04	33.712252	-117.800349		FR	2	JAMBOREE	6115			
+1212284	261	S	12	59	36770	.04	.04	33.7124	-117.800638		OR	2	JAMBOREE	6115			
+1212292	261	N	12	59	36770	.31	.31	33.715376	-117.797696	.23	ML	2	WALNUT 2	6585			
+1212293	261	N	12	59	36770	.31	.31	33.715376	-117.797696		OR	1	WALNUT 2	6585			
+1212302	261	S	12	59	36770	.5	.5	33.717315	-117.795434	.43	ML	2	S OF 5	6116			
+1212303	261	N	12	59	36770	.5	.5	33.717083	-117.795181	.295	ML	3	S OF 5	6116			
+1212304	261	S	12	59	36770	.5	.5	33.717315	-117.795434		FR	1	S OF 5	6116			
+1212310	261	N	12	59		.9	.9	33.720342	-117.789435	.425	ML	2	EL CAMINO REAL	6117			
+1212311	261	S	12	59		.9	.9	33.720604	-117.789693	.425	ML	2	EL CAMINO REAL	6117			
+1212319	261	S	12	59		1.35	1.35	33.723902	-117.782999	.425	ML	2	IRVINE BLVD 1	6586			
+1212320	261	N	12	59		1.35	1.35	33.72367	-117.782735	.425	ML	2	IRVINE BLVD 1	6586			
+1212321	261	S	12	59		1.35	1.35	33.723902	-117.782999		OR	1	IRVINE BLVD 1	6586			
+1212322	261	N	12	59		1.35	1.35	33.72367	-117.782735		FR	1	IRVINE BLVD 1	6586			
+1212333	261	N	12	59		1.75	1.75	33.727564	-117.777645	.445	ML	2	IRVINE BLVD 2 FSTRK	6587			
+1212335	261	N	12	59		1.75	1.75	33.727564	-117.777645		OR	1	IRVINE BLVD 2	6587			
+1212336	261	S	12	59		1.75	1.75	33.727725	-117.777924	.445	ML	3	IRVINE BLVD 2	6587			
+1212337	261	S	12	59		1.75	1.75	33.727725	-117.777924		FR	1	IRVINE BLVD 2	6587			
+1212345	261	N	12	59		2.24	2.24	33.733387	-117.772751	.245	ML	2	IRVINE RANCH FSTRK	6118			
+1212346	261	S	12	59		2.24	2.24	33.733529	-117.773023	.235	ML	2	IRVINE RANCH FSTRK	6118			
+1212347	261	N	12	59		2.24	2.24	33.733387	-117.772751	.235	ML	1	IRVINE RANCH TOLL	6118			
+1212348	261	S	12	59		2.24	2.24	33.733529	-117.773023	.245	ML	1	IRVINE RANCH TOLL	6118			
+1212359	261	S	12	59		2.71	2.71	33.739132	-117.768378	.46	ML	2	PORTOLA  1 FSTRK	6588			
+1212361	261	S	12	59		2.71	2.71	33.739132	-117.768378		OR	1	PORTOLA  1	6588			
+1212362	261	N	12	59		2.71	2.71	33.738979	-117.768065	.46	ML	3	PORTOLA  1	6588			
+1212363	261	N	12	59		2.71	2.71	33.738979	-117.768065		FR	1	PORTOLA  1	6588			
+1212372	261	N	12	59		3.16	3.16	33.74498	-117.765231	.4	ML	3	PORTOLA 2	6589			
+1212373	261	N	12	59		3.16	3.16	33.74498	-117.765231		OR	1	PORTOLA 2	6589			
+1212374	261	S	12	59		3.16	3.16	33.745156	-117.765643	.4	ML	2	PORTOLA 2	6589			
+1212375	261	S	12	59		3.16	3.16	33.745156	-117.765643		FR	1	PORTOLA 2	6589			
+1212382	261	N	12	59		3.51	3.51	33.749991	-117.764319	.315	ML	3	PORTOLA 3	6119			
+1212383	261	S	12	59		3.51	3.51	33.750147	-117.764687	.315	ML	2	PORTOLA 3	6119			
+1212390	261	N	12	59		3.79	3.79	33.754	-117.763603	.315	ML	3	PORTOLA 4	6120			
+1212391	261	S	12	59		3.79	3.79	33.754147	-117.763983	.315	ML	2	PORTOLA 4	6120			
+1212398	261	N	12	59		4.14	4.14	33.758685	-117.76135	.335	ML	3	S OF UTILITY	6121			
+1212405	261	N	12	59		4.46	4.46	33.762966	-117.759099	.28	ML	3	N OF UTILITY	6122			
+1212406	261	S	12	59		4.46	4.46	33.763114	-117.759498	.28	ML	2	N OF UTILITY	6122			
+1212407	261	S	12	59		4.14	4.14	33.758827	-117.761762	.335	ML	2	S OF UTILITY	6121			
+1212414	261	N	12	59		4.7	4.7	33.766351	-117.758414	.235	ML	3	HANDY 1	6123			
+1212415	261	S	12	59		4.7	4.7	33.766516	-117.758825	.235	ML	2	HANDY 1	6123			
+1212423	261	N	12	59		4.93	4.93	33.769642	-117.75831	.285	ML	3	HANDY 2	6124			
+1212424	261	S	12	59		4.93	4.93	33.769824	-117.758692	.285	ML	2	HANDY 2	6124			
+1212431	261	N	12	59		5.27	5.27	33.77449	-117.757935	.355	ML	3	HANDY 3	6125			
+1212432	261	S	12	59		5.27	5.27	33.7747	-117.758346	.355	ML	2	HANDY 3	6125			
+1212441	261	N	12	59		5.64	5.64	33.779145	-117.75497	.75	ML	3	CHAPMAN	6590			
+1212442	261	N	12	59		5.64	5.64	33.779145	-117.75497		FR	1	CHAPMAN	6590			
+1212443	261	S	12	59		5.64	5.64	33.779357	-117.75529	.75	ML	2	CHAPMAN	6590			
+1212444	261	S	12	59		5.64	5.64	33.779357	-117.75529		OR	1	CHAPMAN	6590			
+1212454	73	S	12	59	36770	R25.25	15.25	33.659515	-117.871215	.436	ML	3	ORCHID	7360			
+1212455	73	N	12	59	36770	R25.25	15.25	33.659804	-117.870921	.436	ML	4	ORCHID	7360			
+1212463	73	N	12	59	36770	R25.7	15.653	33.663519	-117.87634	.501	ML	4	CAMPUS	7361			
+1212464	73	S	12	59	36770	R25.7	15.653	33.66324	-117.876633	.501	ML	4	CAMPUS	7361			
+1212472	73	S	12	59	16532	26.3	16.253	33.669908	-117.88342	.5	ML	3	S OF 55	7362			
+1212473	73	N	12	59	16532	26.3	16.253	33.67012	-117.883175	.5	ML	4	S OF 55	7362			
+1212479	73	N	12	59	16532	26.7	16.653	33.674893	-117.887299	.55	ML	3	N OF 55	7363			
+1212480	73	S	12	59	16532	26.7	16.653	33.67464	-117.887584	.45	ML	3	N OF 55	7363			
+1212484	73	S	12	59	16532	27.2	17.153	33.68058	-117.892743	.51	ML	3	BEAR 1	7364			
+1212489	73	N	12	59	16532	R27.4	17.353	33.683052	-117.894515	.51	ML	3	BEAR 2	7365			
+1212495	73	S	12	59	16532	R27.72	17.673	33.686456	-117.898045	.585	ML	3	FAIRVIEW	7366			
+1212496	73	N	12	59	16532	R27.72	17.673	33.686594	-117.897754	.485	ML	3	FAIRVIEW	7366			
+1212504	73	S	12	59	36770	R25.25	15.25	33.659515	-117.871215		FR	2	ORCHID	7360			
+1212505	73	N	12	59	36770	25.25	15.25	33.659804	-117.870921		FR	1	ORCHID	7360			
+1212506	73	S	12	59	36770	R25.7	15.653	33.66324	-117.876633		FR	2	CAMPUS	7361			
+1212514	73	N	12	59	36770	R25.7	15.653	33.663519	-117.87634		OR	1	CAMPUS	7361			
+1212518	73	S	12	59	16532	26.3	16.253	33.669908	-117.88342		FF	1	55NB TO 73SB	7362			
+1212519	73	S	12	59	16532	26.3	16.253	33.669908	-117.88342		FF	2	55SB TO 73SB	7362			
+1212525	73	S	12	59	16532	27.2	17.153	33.68058	-117.892743		OR	1	BEAR 1	7364			
+1212526	73	N	12	59	16532	R27.2	17.153	33.680652	-117.892318		FR	1	BEAR 1	7364			
+1212532	73	N	12	59	16532	R27.4	17.353	33.683052	-117.894515		OR	1	BEAR 2	7365			
+1212533	73	S	12	59	16532	27.4	17.353	33.682854	-117.894753		FR	1	BEAR 2	7365			
+1212537	73	S	12	59	16532	R27.72	17.673	33.686456	-117.898045		OR	1	FAIRVIEW	7366			
+1212544	73	N	12	59	16532	R26.791	16.744	33.675963	-117.888212		FF	2	N55 TO N73 On	7363			
+1212545	73	S	12	59	16532	R26.72	16.673	33.674875	-117.887796		FF	2	S73 TO S55	7363			
+1212565	5	N	12	59	2000	40.7	112.951	33.845442	-117.958388	.24	HV	1	BROOKHURST 2	1512			
+1212566	5	N	12	59	2000	40.7	112.951	33.845442	-117.958388		FR	2	BROOKHURST 2	1512			
+1212578	5	N	12	59	2000	40.04	112.291	33.840124	-117.949259	.45	HV	1	CRESCENT	581			
+1212579	5	S	12	59	2000	40.04	112.228	33.839851	-117.949454	.45	HV	1	CRESCENT	581			
+1212588	5	N	12	59	2000	40.5	112.751	33.843721	-117.955716	.33	ML	4	BROOKHURST 1	259			
+1212594	5	S	12	59	2000	40.5	112.688	33.843443	-117.955942	.47	HV	1	BROOKHURST 1	259			
+1212595	5	N	12	59	2000	40.5	112.751	33.843721	-117.955716	.33	HV	1	BROOKHURST 1	259			
+1212596	5	S	12	59	2000	40.5	112.688	33.843443	-117.955942		FR	2	BROOKHURST 1	259			
+1212609	5	N	12	59	2000	40.98	113.231	33.847549	-117.962444	.32	HV	1	LA PALMA	582			
+1212610	5	S	12	59	2000	40.98	113.168	33.847169	-117.96276	.42	HV	1	LA PALMA	582			
+1212611	5	S	12	59	2000	40.98	113.168	33.847169	-117.96276	.42	ML	6	LA PALMA	582			
+1212622	5	N	12	59	53980	35.1	107.351	33.790771	-117.888724		FR	2	STATE COLLEGE	5500			
+1212627	5	N	12	59	2000	38.9	111.151	33.832016	-117.931513	.6	HV	1	LINCOLN	578			
+1212644	5	S	12	59	2000	39.3	111.488	33.834594	-117.938264	.3	HV	1	EUCLID 1	5505			
+1212645	5	S	12	59	2000	39.3	111.488	33.834594	-117.938264	.3	ML	4	EUCLID 1	5505			
+1212646	5	S	12	59	2000	39.3	111.488	33.834594	-117.938264		OR	1	EUCLID 1	5505			
+1212647	5	S	12	59	2000	39.3	111.488	33.834594	-117.938264		FR	1	EUCLID 1	5505			
+1212648	5	N	12	59	2000	39.3	111.551	33.834815	-117.938078	.35	HV	1	EUCLID 1	5505			
+1212649	5	N	12	59	2000	39.3	111.551	33.834815	-117.938078	.35	ML	4	EUCLID 1	5505			
+1212661	5	S	12	59	2000	39	111.188	33.832791	-117.933068	.41	HV	1	LINCOLN	0595			
+1212662	5	S	12	59	2000	39	111.188	33.832791	-117.933068	.41	ML	4	LINCOLN	0595			
+1212663	5	S	12	59	2000	39	111.188	33.832791	-117.933068		OR	1	LINCOLN	0595			
+1212664	5	N	12	59	2000	36.481	108.732	33.805087	-117.903831		FR	1	HOV DISNEY WAY OFF	574			
+1212665	5	N	12	59	2000	36.481	108.732	33.805087	-117.903831		OR	1	HOV GENE AUTRY ON 2	574			
+1212672	5	N	12	59	2000	41.34	113.591	33.850294	-117.968011	.41	HV	1	GILBERT	2016			
+1212673	5	S	12	59	2000	41.34	113.528	33.85001	-117.968231	.41	HV	1	GILBERT	2016			
+1212677	57	S	12	59	53980	11.08	.431	33.783256	-117.880197		FR	1	CHAPMAN 1	1004			
+1212689	5	N	12	59	2000	39.6	111.851	33.836731	-117.943038	.37	HV	1	EUCLID 2	580			
+1212690	5	S	12	59	2000	39.6	111.788	33.8365	-117.943178	.37	HV	1	EUCLID 2	580			
+1212691	5	N	12	59	2000	39.6	111.851	33.836731	-117.943038		FR	1	EUCLID 2	580			
+1212692	5	S	12	59	2000	39.6	111.788	33.8365	-117.943178		FR	1	EUCLID 2	580			
+1212700	133	N	12	59		13.04	13.031	33.709447	-117.724497		FF	2	N241 TO S133 -3	6110			
+1212706	5	S	12	59	36770	23.2	95.395	33.667502	-117.753539		FF	2	5S TO 133S/BARA	2619			
+1212715	5	S	12	59	36770	22.75	94.945	33.662021	-117.749253		FF	2	133S TO 5S	2615			
+1212723	91	E	12	59	28000	3.91	22.283	33.853681	-117.912688	.89	HV	1	LEMON	1091			
+1212724	91	W	12	59	28000	3.91	22.323	33.853895	-117.912686	.525	HV	1	LEMON	1091			
+1212725	91	W	12	59	28000	3.91	22.323	33.853895	-117.912686	.525	ML	4	LEMON	1091			
+1212726	91	W	12	59	2000	4.8	23.213	33.854044	-117.897207	.48	HV	1	ACACIA	2174			
+1212727	91	E	12	59	2000	4.8	23.173	33.85388	-117.897217	.5	HV	1	ACACIA	2174			
+1212730	5	N	12	59	36770	23.05	95.308	33.66578	-117.751722		FF	2	S OF 133	2616			
+1212741	5	N	12	59	69000	31.23	103.481	33.750124	-117.844061		FF	1	55N HOV TO 5N HOV	568			
+1212742	5	S	12	59	69000	31.23	103.418	33.749928	-117.844652		FF	1	5S HOV TO 55S HOV	568			
+1212760	91	E	12	59	8786	R2.58	17.319	33.855997	-117.998577	.385	HV	1	BEACH 1	309			
+1212767	91	E	12	59	8786	R2.76	17.499	33.856024	-117.995448	.21	HV	1	BEACH 2	310			
+1212770	91	E	12	59	2000	1.37	19.743	33.853902	-117.95679	.82	HV	1	BROOKHURST	1088			
+1212773	91	E	12	59	2000	2.4	20.773	33.854029	-117.938876	1.27	HV	1	EUCLID	1089			
+1212780	5	S	12	59	69000	31.6	103.788	33.753388	-117.849326		OR	1	GRAND 1 HOV ON	2320			
+1212781	5	N	12	59	69000	31.602	103.853	33.753768	-117.848819		FR	1	GRAND 1 HOV OFF	2320			
+1212784	5	S	12	59	69000	33.3	105.488	33.770032	-117.869238		FR	1	MAIN HOV OFF	2302			
+1212785	5	N	12	59	69000	33.3	105.551	33.770299	-117.868723		OR	1	MAIN HOV ON	2302			
+1212789	91	E	12	59	2000	4.35	22.723	33.853767	-117.905042	.31	HV	1	EAST	1092			
+1212811	91	E	12	59	2000	7.3	25.673	33.847636	-117.856212	.33	HV	1	GLASSELL1	1096			
+1212813	91	E	12	59	2000	7.48	25.853	33.848381	-117.85323	.28	HV	1	GLASSELL2	1097			
+1212818	91	E	12	59	2000	7.48	25.853	33.848381	-117.85323		FR	1	GLASSELL2	1097			
+1212839	55	S	12	59	53980	14.4	14.382	33.797729	-117.831223	.425	HV	1	Walnut	5025			
+1212840	55	S	12	59	53980	14.4	14.382	33.797729	-117.831223	.425	ML	5	Walnut	5025			
+1212841	55	N	12	59	53980	14.4	14.382	33.797732	-117.831045	.35	HV	1	Walnut	5025			
+1212842	55	N	12	59	53980	14.4	14.382	33.797732	-117.831045	.35	ML	5	Walnut	5025			
+1212862	55	S	12	59	53980	14.6	14.582	33.800649	-117.831527	.41	HV	1	COLLINS	2507			
+1212863	55	S	12	59	53980	14.6	14.582	33.800649	-117.831527	.41	ML	5	COLLINS	2507			
+1212864	55	N	12	59	53980	14.6	14.582	33.800652	-117.831355	.41	HV	1	COLLINS	2507			
+1212865	55	N	12	59	53980	14.6	14.582	33.800652	-117.831355	.41	ML	5	COLLINS	2507			
+1212900	55	N	12	59	53980	15.8	15.782	33.817981	-117.831919	2.276	HV	1	TAFT	2508			
+1212901	55	N	12	59	53980	15.8	15.782	33.817981	-117.831919	.4	ML	4	TAFT	2508			
+1212902	55	S	12	59	53980	15.8	15.782	33.817979	-117.832098	.745	HV	1	TAFT	2508			
+1212903	55	S	12	59	53980	15.8	15.782	33.817979	-117.832098	.49	ML	4	TAFT	2508			
+1212915	55	N	12	59	53980	15.4	15.382	33.812203	-117.831905	.29	HV	1	KATELLA  2	0934			
+1212916	55	N	12	59	53980	15.4	15.382	33.812203	-117.831905	.29	ML	5	KATELLA  2	0934			
+1212917	55	N	12	59	53980	15.4	15.382	33.812203	-117.831905		OR	1	KATELLA  2	0934			
+1212934	55	S	12	59	69000	12.7	12.682	33.773138	-117.831088	.605	HV	1	FAIRHAVEN	2347			
+1212935	55	S	12	59	69000	12.7	12.682	33.773138	-117.831088	.605	ML	3	FAIRHAVEN	2347			
+1212936	55	S	12	59	69000	12.7	12.682	33.773138	-117.831088		FF	2	22E TO 55S	2347			
+1212937	55	N	12	59	69000	12.7	12.682	33.773139	-117.830912	.8	HV	1	FAIRHAVEN	2347			
+1212938	55	N	12	59	69000	12.7	12.682	33.773139	-117.830912	.8	ML	4	FAIRHAVEN	2347			
+1212939	55	N	12	59	69000	12.7	12.682	33.773139	-117.830912		FF	2	55N TO 22W	2347			
+1212955	55	N	12	59	53980	16.2	16.182	33.823807	-117.83192	.66	ML	4	MEATS	2509			
+1212957	55	S	12	59	53980	16.2	16.182	33.823807	-117.832097	.455	ML	4	MEATS	2509			
+1213036	57	N	12	59	2000	15.1	4.366	33.842505	-117.875902	.25	ML	5	UNDERHILL	2358			
+1213041	57	N	12	59	2000	15.4	4.666	33.846873	-117.875931	.3	ML	3	LA PALMA	2357			
+1213051	91	W	12	59	2000	5.14	23.553	33.854309	-117.891303	.35	HV	1	STATE COLLEGE	1126			
+1213054	91	W	12	59	2000	4.18	22.593	33.853925	-117.907991	.445	HV	1	EAST	1127			
+1213060	91	E	12	59	2000	4.18	22.553	33.853755	-117.907999	.22	ML	4	EAST	1127			
+1213061	91	E	12	59	2000	4.18	22.553	33.853755	-117.907999	.22	HV	1	EAST	1127			
+1213087	57	N	12	59	28000	18.85	8.116	33.896472	-117.880822	.305	ML	5	Bastanchury	5024			
+1213088	57	S	12	59	53980	18.85	8.201	33.896472	-117.881094	.365	ML	4	Bastanchury	5024			
+1213089	57	N	12	59	28000	18.85	8.116	33.896472	-117.880822	.3	HV	1	Bastanchury	5024			
+1213090	57	S	12	59	53980	18.85	8.201	33.896472	-117.881094	.365	HV	1	Bastanchury	5024			
+1213103	57	N	12	59	2000	13.9	3.166	33.825188	-117.875981	.45	HV	1	Wagner	2510			
+1213104	57	S	12	59	53980	13.9	3.251	33.825192	-117.876256	.475	HV	1	Wagner	2510			
+1213105	57	N	12	59	2000	13.9	3.166	33.825188	-117.875981	.42	ML	5	Wagner	2510			
+1213106	57	S	12	59	53980	13.9	3.251	33.825192	-117.876256	.475	ML	5	Wagner	2510			
+1213119	57	S	12	59	53980	14.4	3.751	33.832386	-117.876232	.375	HV	1	South	2183			
+1213120	57	N	12	59	2000	14.4	3.666	33.83238	-117.875965	.4	HV	1	South	2183			
+1213121	57	S	12	59	53980	14.4	3.751	33.832386	-117.876232	.375	ML	5	South	2183			
+1213122	57	N	12	59	2000	14.4	3.666	33.83238	-117.875965	.415	ML	5	South	2183			
+1213131	57	N	12	59	2000	15.1	4.366	33.842505	-117.875902	.25	HV	1	UNDERHILL	2358			
+1213132	57	S	12	59	53980	15.1	4.451	33.842489	-117.876207	.285	HV	1	UNDERHILL	2358			
+1213133	57	S	12	59	53980	15.1	4.451	33.842489	-117.876207	.285	ML	6	UNDERHILL	2358			
+1213203	5	N	12	59	65084	4.02	76.278	33.44466	-117.630415		OR	1	HERMOSA 1	2036			
+1213204	5	N	12	59	65084	4.02	76.278	33.44466	-117.630415		FR	1	HERMOSA 1	2036			
+1213215	5	N	12	59	65084	4.1	76.358	33.445434	-117.631445	.34	ML	4	HERMOSA 2	5588			
+1213216	5	N	12	59	65084	4.1	76.358	33.445434	-117.631445		OR	1	HERMOSA 2	5588			
+1213229	5	S	12	59	65084	4.1	76.295	33.445303	-117.631557	.57	ML	4	HERMOSA 2	5509			
+1213230	5	S	12	59	65084	4.1	76.295	33.445303	-117.631557		OR	1	HERMOSA 2	5509			
+1213231	5	S	12	59	65084	4.1	76.295	33.445303	-117.631557		FR	2	HERMOSA 2	5509			
+1213237	55	N	12	59	53980	13.9	13.882	33.790409	-117.830884		FR	2	CHAPMAN 2 EB	932			
+1213239	55	S	12	59	69000	11.62	11.602	33.75738	-117.831392		FR	1	17TH 1	942			
+1213244	55	S	12	59	53980	16.71	16.692	33.830875	-117.834539		OR	1	LINCOLN 1	937			
+1213246	55	S	12	59	53980	16.71	16.692	33.830875	-117.834539	1.621	HV	1	LINCOLN 1	937			
+1213247	55	N	12	59	53980	13.9	13.882	33.790409	-117.830884		OR	2	CHAPMAN 2	932			
+1213258	55	S	12	59	53980	17.12	17.102	33.837162	-117.835146		FR	2	LINCOLN 2	935			
+1213274	55	S	12	59	53980	15.22	15.202	33.809605	-117.832031	.6	ML	4	KATELLA 1	0938			
+1213275	55	S	12	59	53980	15.22	15.202	33.809605	-117.832031	.6	HV	1	KATELLA 1	0938			
+1213276	55	S	12	59	53980	15.22	15.202	33.809605	-117.832031		OR	2	KATELLA 1	0938			
+1213283	5	S	12	59		R24.05	96.245	33.67863	-117.759362		FF	2	5S to 133N	559			
+1213398	91	W	12	59	2000	.45	18.863	33.856235	-117.972391	.282	ML	3	MAGNOLIA	1087			
+1213407	5	N	12	59	2000	41.8	114.051	33.854226	-117.974766		FR	1	MAGNOLIA	258			
+1213409	5	S	12	59	2000	41.8	113.988	33.853961	-117.97494		FR	2	MAGNOLIA	258			
+1213410	5	S	12	59	2000	41.81	113.998	33.854064	-117.975069		FR	1	MAGNOLIA 91E OFF	258			
+1213417	5	S	12	59	2000	41.8	113.988	33.853961	-117.97494	.28	HV	2	MAGNOLIA	258			
+1213418	5	N	12	59	2000	41.8	114.051	33.854226	-117.974766	.28	HV	2	MAGNOLIA	258			
+1213419	5	N	12	59	2000	41.8	114.051	33.854226	-117.974766		FF	2	5 NB to 91 WB	258			
+1213424	91	E	12	59	28000	.45	18.823	33.856043	-117.972438	.497	HV	1	MAGNOLIA	1087			
+1213425	91	W	12	59	2000	.45	18.863	33.856235	-117.972391	.517	HV	1	MAGNOLIA	1087			
+1213426	91	W	12	59	2000	.45	18.863	33.856235	-117.972391		FF	2	91 WB to 5 NB	1087			
+1213509	5	N	12	59	39220	19.33	91.588	33.621929	-117.714379		FR	1	RED ROBIN	2012			
+1213525	5	N	12	59	39220	18.17	90.428	33.60972	-117.70083	.49	HV	1	ANKERTON	2013			
+1213526	5	S	12	59	39220	18.17	90.365	33.609505	-117.700998	.505	HV	1	ANKERTON	2013			
+1213527	5	N	12	59	39220	18.17	90.428	33.60972	-117.70083	.49	ML	6	ANKERTON	2013			
+1213528	5	S	12	59	39220	18.17	90.365	33.609505	-117.700998	.505	ML	6	ANKERTON	2013			
+1213537	91	E	12	59	2000	6.05	24.423	33.850044	-117.876605		FF	1	S57 to E91	2376			
+1213568	5	N	12	59	48256	14.46	86.718	33.569099	-117.671844	.63	HV	1	FAIRCOURT	2015			
+1213569	5	S	12	59	48256	14.46	86.655	33.569098	-117.67216	.715	HV	1	Faircourt	2015			
+1213570	5	N	12	59	48256	14.46	86.718	33.569099	-117.671844	.63	ML	5	FAIRCOURT	2015			
+1213571	5	S	12	59	48256	14.46	86.655	33.569098	-117.67216	.715	ML	4	Faircourt	2015			
+1213602	5	N	12	59	36770	R26.56	98.818	33.709761	-117.781713		FR	1	CULVER 1	1510			
+1213640	405	S	12	59		8.35	8.12	33.686295	-117.865648		FF	1	HOV 55S to 405S	2433			
+1213641	405	N	12	59		8.26	8.03	33.686072	-117.864081		FF	1	HOV 405N to 55N	2433			
+1213650	405	N	12	59	16532	11.6	11.37	33.690091	-117.921335	.38	ML	6	HYLAND	1352			
+1213651	405	N	12	59	16532	11.6	11.37	33.690091	-117.921335	.38	HV	1	HYLAND	1352			
+1213653	405	S	12	59		8.35	8.12	33.686295	-117.865648	.07	HV	1	55SB- 405SB HOV FLY	2433			
+1213655	405	N	12	59		8.35	8.12	33.686563	-117.865527	.485	HV	1	HOV AT 55N FLYOVER**	2433			
+1213672	57	N	12	59	2000	15.7	4.966	33.851227	-117.875572	.355	ML	3	N of 91	2353			
+1213673	57	S	12	59	53980	15.7	5.051	33.851167	-117.875855	.355	ML	4	N of 91	2353			
+1213680	91	E	12	59	2000	18	36.35	33.871539	-117.68647	.543	ML	5	W of COAL	2379			
+1213686	91	W	12	59	2000	R18	36.413	33.872075	-117.686605	.13	ML	4	W of COAL	2379			
+1213690	91	W	12	59	2000	18	36.413	33.872075	-117.686605	.528	HV	2	W of COAL	2379			
+1213699	5	S	12	59	48256	15.8	87.995	33.588522	-117.671829	.5	ML	4	CERVANTES	2014			
+1213700	5	N	12	59	48256	15.8	88.058	33.588603	-117.671484	.58	ML	4	CERVANTES	2014			
+1213706	5	S	12	59	48256	15.8	87.995	33.588522	-117.671829	.5	HV	1	CERVANTES	2014			
+1213708	5	N	12	59	48256	15.8	88.058	33.588603	-117.671484	.58	HV	1	CERVANTES	2014			
+1213709	57	N	12	59	2000	15.7	4.966	33.851227	-117.875572	.355	HV	1	N of 91	2353			
+1213710	57	S	12	59	53980	15.7	5.051	33.851167	-117.875855	.355	HV	1	N of 91	2353			
+1213711	57	S	12	59	53980	15.7	5.051	33.851167	-117.875855		FF	2	57SB to 91WB	2353			
+1213712	57	S	12	59	53980	15.7	5.051	33.851167	-117.875855		FF	1	57 SB to 91 EB	2353			
+1213713	57	N	12	59	2000	15.7	4.966	33.851227	-117.875572		FF	1	91WB to 57NB	2353			
+1213716	57	N	12	59	2000	15.7	4.966	33.851227	-117.875572		FF	2	91EB to 57NB	2353			
+1213721	57	S	12	59	53980	15.4	4.751	33.846832	-117.876202	.3	ML	4	LA PALMA	2357			
+1213741	57	N	12	59		12.9	2.166	33.811084	-117.878472	.32	ML	5	DOUGLASS	2511			
+1213742	57	S	12	59	53980	12.9	2.251	33.811089	-117.878726	.345	ML	4	DOUGLASS	2511			
+1213743	57	N	12	59		12.9	2.166	33.811084	-117.878472	.2	HV	1	DOUGLASS	2511			
+1213744	57	N	12	59		12.9	2.166	33.811084	-117.878472	.1	HV	1	DOUGLASS	2511			
+1213746	55	N	12	59	69000	R7.85	7.85	33.708364	-117.85183		FR	1	DYER 1	921			
+1213749	55	S	12	59	69000	R7.62	7.62	33.705879	-117.854598		FR	1	DYER 1	948			
+1213754	57	N	12	59	2000	15.4	4.666	33.846873	-117.875931	.3	HV	1	LA PALMA	2357			
+1213755	57	S	12	59	53980	15.4	4.751	33.846832	-117.876202	.3	HV	1	LA PALMA	2357			
+1213758	57	S	12	59	53980	15.4	4.751	33.846832	-117.876202		FF	2	91W to 57S	2357			
+1213761	57	N	12	59	2000	15.4	4.666	33.846873	-117.875931		FF	2	57N to 91E	2357			
+1213764	57	N	12	59	2000	15.4	4.666	33.846873	-117.875931		FF	1	57N to 91W	2357			
+1213765	57	S	12	59	53980	15.4	4.751	33.846832	-117.876202		FF	1	91E to 57S	2357			
+1213767	5	N	12	59	48256	12.8	85.058	33.545242	-117.673098		FR	1	AVERY 1	679			
+1213778	91	W	12	59	2000	3.13	21.543	33.853907	-117.926204	.9	HV	1	HARBOR 1	1129			
+1213780	91	W	12	59	2000	2.11	20.523	33.854189	-117.943925	1.005	HV	1	EUCLID	1130			
+1213782	91	W	12	59	28000	1.12	19.533	33.853951	-117.961157	.675	HV	1	BROOKHURST	1131			
+1213786	605	S	12	59	70686	R1.49	1.899	33.804047	-118.081675		FR	1	KATELLA 2	448			
+1213795	91	E	12	59	2000	R10.08	28.453	33.850669	-117.814377		FR	2	LAKEVIEW1	1100			
+1213832	133	N	12	59		12	11.991	33.697907	-117.734495		OR	2	IRVINE BLVD 3 (loop)	6582			
+1213836	133	S	12	59		11.7	11.691	33.694604	-117.737826		OR	1	IRVINE BLVD 1	6580			
+1213841	91	W	12	59	2000	16.2	34.613	33.866503	-117.715237		OR	1	GYPSUM 1	1112			
+1213844	91	E	12	59	2000	R16.6	34.95	33.868014	-117.708584		FF	2	GYPSUM 2	1108			
+1213849	405	N	12	59		9.46	9.23	33.687523	-117.884653		FF	1	BRISTOL 1	1347			
+1213852	405	N	12	59		9.46	9.23	33.687523	-117.884653		FF	2	55 SB TO 405 NB	1347			
+1213859	405	S	12	59	16532	10.28	10.05	33.68748	-117.899035		FF	1	FAIRVIEW TO 73 SB	1400			
+1213870	73	S	12	59	16532	26.3	16.253	33.669908	-117.88342		FF	2	73NB TO 55NB	7362			
+1213873	405	S	12	59	16532	10.48	10.25	33.687582	-117.902507		FF	3	N OF 73	2601			
+1213879	5	S	12	59	36770	23.1	95.295	33.66617	-117.7525		FF	2	N OF 133	2617			
+1213889	91	E	12	59	40256	R1.32	16.059	33.855843	-118.020532	.405	HV	1	HOLDER	05028			
+1213890	91	W	12	59	40256	R1.32	16.059	33.856023	-118.020493	.345	HV	1	HOLDER	05028			
+1213891	91	E	12	59	40256	R1.32	16.059	33.855843	-118.020532	.405	ML	4	HOLDER	05028			
+1213892	91	W	12	59	40256	R1.32	16.059	33.856023	-118.020493	.345	ML	4	HOLDER	05028			
+1213900	91	W	12	59	2000	7.4	25.813	33.848299	-117.854502	.275	HV	1	KRAEMER 2	1122			
+1213903	91	E	12	59	2000	6.82	25.193	33.846226	-117.864299	.5	HV	1	LA PALMA	2175			
+1213904	91	W	12	59	2000	6.82	25.233	33.84645	-117.864265	.505	HV	1	LA PALMA	2175			
+1213911	91	E	12	59	2000	7.86	26.233	33.849953	-117.846936	1.3	HV	1	GROVE	2176			
+1213912	91	W	12	59	2000	7.86	26.273	33.850205	-117.846854	1.72	HV	1	GROVE	2176			
+1213914	91	W	12	59	2000	7.31	25.723	33.847931	-117.855999	.29	HV	1	KRAEMER 1	1123			
+1213916	55	S	12	59	69000	R7.03	7.03	33.699146	-117.861041		FR	1	MACARTHU2	949			
+1213932	5	S	12	59	53980	36.48	108.668	33.804788	-117.904254		FR	1	ANAHEIM 1	262			
+1213940	5	S	12	59	53980	36.31	108.498	33.802101	-117.901359		FR	2	KATELLA	263			
+1213941	5	S	12	59	53980	36.31	108.498	33.802101	-117.901359		FR	3	KATELLA	263			
+1213943	5	N	12	59	53980	35.4	107.651	33.793754	-117.891888		FF	1	ORANGEWOOD 1	5502			
+1213944	5	N	12	59	53980	35.6	107.851	33.795663	-117.893833		FR	1	GENE AUTRY	2018			
+1213963	405	N	12	59	36770	2.89	2.66	33.657928	-117.777952	.345	ML	4	SAND CANYON 1	5515			
+1213964	405	N	12	59	36770	2.89	2.66	33.657928	-117.777952		OR	1	SAND CANYON 1	5515			
+1213965	405	N	12	59	36770	2.89	2.66	33.657928	-117.777952		FR	1	SAND CANYON 1	5515			
+1213966	405	N	12	59	36770	2.89	2.66	33.657928	-117.777952	.32	HV	2	SAND CANYON 1	5515			
+1213983	91	W	12	59	2000	5.5	23.913	33.85385	-117.885106	.455	HV	1	PLACENTIA	5555			
+1213984	91	E	12	59	2000	5.5	23.873	33.853485	-117.885166	.35	HV	1	PLACENTIA	5555			
+1213985	91	W	12	59	2000	5.5	23.913	33.85385	-117.885106	.505	ML	4	PLACENTIA	5555			
+1213986	91	E	12	59	2000	5.5	23.873	33.853485	-117.885166	.35	ML	5	PLACENTIA	5555			
+1213987	91	W	12	59	2000	5.5	23.913	33.85385	-117.885106		FF	1	PLACENTIA	5555			
+1213988	91	E	12	59	2000	5.5	23.873	33.853485	-117.885166		FF	1	PLACENTIA	5555			
+1214005	5	N	12	59	2000	41.9	114.151	33.855211	-117.976025	.36	ML	4	MAGNOLIA 2	2270			
+1214006	5	S	12	59	2000	41.9	114.088	33.854882	-117.976235	.36	ML	4	MAGNOLIA 2	2270			
+1214007	5	N	12	59	2000	41.9	114.151	33.855211	-117.976025	.36	HV	1	MAGNOLIA 2	2270			
+1214008	5	S	12	59	2000	41.9	114.088	33.854882	-117.976235	.36	HV	1	MAGNOLIA 2	2270			
+1214009	5	N	12	59	2000	41.9	114.151	33.855211	-117.976025		FF	1	5N HOV to 91W HOV	2270			
+1214010	5	N	12	59	2000	41.9	114.151	33.855211	-117.976025		FF	2	91E to 5S	2270			
+1214011	5	S	12	59	2000	41.9	114.088	33.854882	-117.976235		FF	1	91E HOV to 5S HOV	2270			
+1214022	405	S	12	59	84550	17.98	17.75	33.7468	-118.007585		FF	1	GOLDEN WEST CD	1389			
+1214062	91	W	12	59	8786	R3	17.739	33.85622	-117.991257	.4	ML	5	E OF STANTON	2171			
+1214063	91	E	12	59	8786	R3	17.739	33.856035	-117.991253	.32	ML	5	E OF STANTON	2171			
+1214064	91	W	12	59	8786	R3	17.739	33.85622	-117.991257	.4	HV	1	E OF STANTON	2171			
+1214065	91	E	12	59	8786	R3	17.739	33.856035	-117.991253	.32	HV	1	E OF STANTON	2171			
+1214066	91	W	12	59	28000	.76	19.173	33.854549	-117.967351	.335	HV	1	GILBERT	2097			
+1214067	91	E	12	59	28000	.76	19.133	33.854376	-117.967371	.46	HV	1	GILBERT	2097			
+1214080	405	N	12	59	16532	9.9	9.67	33.687569	-117.8923	.225	ML	5	BEAR	5026			
+1214081	405	S	12	59	16532	9.9	9.67	33.687337	-117.892435	.37	ML	4	BEAR	5026			
+1214082	405	N	12	59	16532	9.9	9.67	33.687569	-117.8923	.225	HV	1	BEAR	5026			
+1214083	405	S	12	59	16532	9.9	9.67	33.687337	-117.892435	.37	HV	1	BEAR	5026			
+1214117	91	W	12	59	8786	R3.4	18.139	33.856869	-117.984356	.435	ML	3	W OF 5	2382			
+1214118	91	E	12	59	8786	R3.4	18.139	33.856265	-117.984237	.542	ML	3	W OF 5	2382			
+1214119	91	E	12	59	8786	R3.4	18.139	33.856265	-117.984237		FF	2	91E to 5S	2382			
+1214120	91	W	12	59	8786	R3.4	18.139	33.856869	-117.984356		FF	2	N5 to 91W	2382			
+1214121	91	W	12	59	8786	R3.4	18.139	33.856869	-117.984356	.562	HV	1	W OF 5	2382			
+1214122	91	E	12	59	8786	R3.4	18.139	33.856265	-117.984237	.542	HV	1	W OF 5	2382			
+1214123	91	W	12	59	8786	R3.4	18.139	33.856869	-117.984356		FF	1	5N to 91W HOV	2382			
+1214124	91	E	12	59	8786	R3.4	18.139	33.856265	-117.984237		FF	1	91E to 5S HOV	2382			
+1214209	405	S	12	59		9.2	8.97	33.687254	-117.880276	.32	ML	6	AVE. OF ART	05027			
+1214212	405	N	12	59		8.7	8.47	33.687449	-117.871466	.4	ML	4	ANTON	5558			
+1214215	55	S	12	59	69000	8.6	8.6	33.71674	-117.843837	.535	ML	5	WARNER	7001			
+1214237	405	S	12	59		9.2	8.97	33.687254	-117.880276		FF	1	405SB TO 55NB HOV	05027			
+1214238	405	N	12	59		9.2	8.97	33.687519	-117.880139	.38	ML	4	AVE. OF ART	05027			
+1214239	405	N	12	59		9.2	8.97	33.687519	-117.880139	.25	FR	1	AVE. OF ART	05027			
+1214240	405	S	12	59		9.2	8.97	33.687254	-117.880276		FF	1	55SB TO 405NB HOV	05027			
+1214241	405	N	12	59		9.2	8.97	33.687519	-117.880139		OR	2	55SB TO 405NB	05027			
+1214242	405	S	12	59		9.2	8.97	33.687254	-117.880276	.32	HV	1	AVE. OF ART	05027			
+1214243	405	N	12	59		9.2	8.97	33.687519	-117.880139	.38	HV	1	AVE. OF ART	05027			
+1214253	55	N	12	59	69000	8.6	8.6	33.716619	-117.843611	.645	ML	4	WARNER	7001			
+1214254	55	S	12	59	69000	8.6	8.6	33.71674	-117.843837	.535	HV	1	WARNER	7001			
+1214255	55	N	12	59	69000	8.6	8.6	33.716619	-117.843611	.645	HV	1	WARNER	7001			
+1214260	405	N	12	59		8.7	8.47	33.687449	-117.871466	.425	HV	1	ANTON	5558			
+1214265	405	N	12	59		8.7	8.47	33.687449	-117.871466		OR	1	ANTON	5558			
+1214268	405	N	12	59		8.7	8.47	33.687449	-117.871466		FF	2	55SB TO 405NB	5558			
+1214270	405	N	12	59		8.7	8.47	33.687449	-117.871466		FR	1	ANTON	5558			
+1214273	405	N	12	59		8.7	8.47	33.687449	-117.871466		FF	1	55SB TO 405NB HOV	5558			
+1214274	405	N	12	59		8.7	8.47	33.687449	-117.871466		FF	1	405NB TO 55SB HOV	5558			
+1214282	405	N	12	59		9.2	8.97	33.687519	-117.880139		FR	1	AVE. OF ART	05027			
+1214321	55	N	12	59		6.35	6.35	33.691451	-117.868181	.42	ML	5	MAIN	1826			
+1214322	55	S	12	59		6.35	6.35	33.691579	-117.868353	.505	ML	4	MAIN	1826			
+1214323	55	N	12	59		6.35	6.35	33.691451	-117.868181	.42	HV	1	MAIN	1826			
+1214324	55	S	12	59		6.35	6.35	33.691579	-117.868353	2.765	HV	1	MAIN	1826			
+1214325	55	N	12	59		6.35	6.35	33.691451	-117.868181		FF	1	MAIN-405NB/55NB FLY	1826			
+1214326	55	S	12	59		6.35	6.35	33.691579	-117.868353		FF	1	MAIN-55SB/405SB FLY	1826			
+1214341	55	N	12	59		6.35	6.35	33.691451	-117.868181		FF	1	MAIN/405SB- 55NB FLY	1826			
+1214342	55	S	12	59		6.35	6.35	33.691579	-117.868353		FF	1	MAIN-55SB/4O5NB  FLY	1826			
+1214343	55	S	12	59		6.35	6.35	33.691579	-117.868353		FF	2	MAIN- 55SB TO 405SB	1826			
+1214373	55	N	12	59		6.1	6.1	33.688567	-117.870964	.24	ML	4	AIRPORT AT 55 NB	1564			
+1214374	55	N	12	59		6.1	6.1	33.688567	-117.870964	.275	HV	1	AIRPORT AT 55 NB	1564			
+1214376	55	N	12	59		6.1	6.1	33.688567	-117.870964		OR	1	AIRPORT AT 55 NB	1564			
+1214461	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773	.5	ML	4	N OF 73	5557			
+1214706	22	W	12	59	69000	R10.14	11.701	33.779081	-117.882183	.225	HV	1	BRISTOL	901			
+1214713	22	W	12	59	53980	R9.9	11.461	33.779058	-117.886182	.225	HV	1	HESPERIAN	2341			
+1214714	22	E	12	59	53980	R9.9	11.461	33.778902	-117.88618	.215	HV	1	HESPERIAN	2341			
+1214715	22	E	12	59	53980	R9.9	11.461	33.778902	-117.88618	.215	ML	2	HESPERIAN	2341			
+1214719	22	E	12	59	53980	R9.9	11.461	33.778902	-117.88618		FF	2	22E CD AT HESPERIAN	2341			
+1214723	22	E	12	59	69000	R10.13	11.691	33.778903	-117.882341	.225	HV	1	BRISTOL	892			
+1214724	22	E	12	59	69000	R10.13	11.691	33.778903	-117.882341		FF	2	22E CD AT BRISTOL	892			
+1214727	22	W	12	59	53980	R11.68	13.241	33.776676	-117.855696	.39	HV	1	GLASSELL1	898			
+1214729	22	E	12	59	53980	R11.68	13.241	33.776567	-117.855753	1.699	HV	1	GLASSELL1	898			
+1214734	22	W	12	59	53980	R12.01	13.571	33.775279	-117.850279	.285	HV	1	GLASSELL2	895			
+1214742	22	W	12	59	53980	R9.69	11.251	33.779085	-117.889576	.282	HV	1	CITY DRIVE	903			
+1214743	22	W	12	59	53980	R9.69	11.251	33.779085	-117.889576		FF	2	5S/57S TO 22W	903			
+1214746	22	W	12	59	53980	R11.23	12.791	33.778348	-117.863135	.485	HV	1	MAIN	899			
+1214752	22	E	12	59	53980	R11.25	12.811	33.778206	-117.862808	.485	HV	1	MAIN	894			
+1214763	22	E	12	59	84550	R3.44	4.897	33.771171	-117.994688	.425	HV	1	BEACH 1	884			
+1214770	22	W	12	59	29000	R8.68	10.137	33.773193	-117.907475	.57	HV	1	GARDEN G1	904			
+1214771	22	E	12	59	29000	R8.68	10.137	33.773077	-117.907372	.37	HV	1	GARDEN G1	904			
+1214780	22	W	12	59	29000	R4.6	6.057	33.767155	-117.976011	.325	HV	1	MAGNOLIA 1	909			
+1214781	22	E	12	59	29000	R4.6	6.057	33.767032	-117.976135	.325	HV	1	MAGNOLIA 1	909			
+1214785	22	W	12	59	29000	R6.94	8.397	33.766144	-117.935768	.34	HV	1	EUCLID	907			
+1214790	22	E	12	59	29000	R6.94	8.397	33.765995	-117.935763	.34	HV	1	EUCLID	888			
+1214803	22	E	12	59	29000	R6.61	8.067	33.765949	-117.941486	.3	HV	1	TAFT	5034			
+1214804	22	W	12	59	29000	R6.61	8.067	33.766079	-117.94149	.3	HV	1	TAFT	5034			
+1214805	22	E	12	59	29000	R6.61	8.067	33.765949	-117.941486	.3	ML	4	TAFT	5034			
+1214806	22	W	12	59	29000	R6.61	8.067	33.766079	-117.94149	.3	ML	4	TAFT	5034			
+1214807	22	E	12	59	29000	R6.61	8.067	33.765949	-117.941486		FR	1	EUCLID	5034			
+1214811	22	W	12	59	29000	R3.73	5.187	33.771057	-117.989817	.29	HV	1	BEACH 2	910			
+1214816	22	W	12	59	84550	R3.45	4.907	33.771348	-117.994525	.425	HV	1	BEACH 1	911			
+1214821	22	E	12	59	29000	R3.73	5.187	33.770894	-117.989845	.295	HV	1	BEACH 2	885			
+1214826	22	E	12	59	29000	R4.99	6.447	33.765717	-117.969658	.485	HV	1	MAGNOLIA 2	886			
+1214832	22	W	12	59	29000	R4.99	6.447	33.765877	-117.96964	.485	HV	1	MAGNOLIA 2	886			
+1214838	22	E	12	59	29000	R1.08	2.537	33.774261	-118.034947		FR	1	VALLEY V2	882			
+1214842	22	W	12	59		R.89	2.347	33.774686	-118.038174		FR	2	VALLEY V2	1504			
+1214852	22	E	12	59	29000	R1.41	2.867	33.774239	-118.029233	.33	HV	1	VIA LOS ALISOS	5042			
+1214853	22	E	12	59	29000	R1.41	2.867	33.774239	-118.029233	.33	ML	3	VIA LOS ALISOS	5042			
+1214854	22	W	12	59	29000	R1.41	2.867	33.774397	-118.029216	.37	ML	4	VIA LOS ALISOS	5042			
+1214857	22	E	12	59	29000	R1.75	3.207	33.774214	-118.023344	.165	HV	1	SPRINGDALE	2220			
+1214868	22	E	12	59	29000	R2.07	3.527	33.774209	-118.0178	.37	HV	1	YUMA	5040			
+1214869	22	E	12	59	29000	R2.07	3.527	33.774209	-118.0178	.37	ML	3	YUMA	5040			
+1214870	22	W	12	59	29000	R2.07	3.527	33.774371	-118.017789	.8	HV	1	YUMA	5040			
+1214871	22	W	12	59	29000	R2.07	3.527	33.774371	-118.017789	.37	ML	3	YUMA	5040			
+1214881	22	E	12	59	53980	R12.25	13.811	33.775624	-117.846173	.345	ML	5	CONCORD	5032			
+1214882	22	W	12	59	53980	R12.25	13.811	33.775744	-117.846201	.345	ML	4	CONCORD	5032			
+1214892	22	E	12	59	29000	R7.72	9.177	33.76705	-117.922361	.36	HV	1	HARBOR 1	906			
+1214893	22	W	12	59	29000	R7.72	9.177	33.767174	-117.922445	.315	HV	1	HARBOR 1	906			
+1214894	22	E	12	59	29000	R7.72	9.177	33.76705	-117.922361	.36	ML	4	HARBOR 1	906			
+1214899	22	W	12	59	29000	R7.93	9.387	33.768341	-117.919037	.29	HV	1	HARBOR 2	905			
+1214936	22	E	12	59	29000	R4.03	5.487	33.770587	-117.984626	.305	HV	1	WILSON	5038			
+1214937	22	W	12	59	29000	R4.03	5.487	33.770765	-117.984576	.305	HV	1	WILSON	5038			
+1214938	22	E	12	59	29000	R4.03	5.487	33.770587	-117.984626	.305	ML	4	WILSON	5038			
+1214939	22	W	12	59	29000	R4.03	5.487	33.770765	-117.984576	.305	ML	4	WILSON	5038			
+1214952	22	W	12	59	29000	R4.34	5.797	33.769612	-117.979437	.285	HV	1	NEWLAND	5037			
+1214953	22	E	12	59	29000	R4.34	5.797	33.769467	-117.979526	.285	HV	1	NEWLAND	5037			
+1214954	22	W	12	59	29000	R4.34	5.797	33.769612	-117.979437	.285	ML	4	NEWLAND	5037			
+1214955	22	E	12	59	29000	R4.34	5.797	33.769467	-117.979526	.285	ML	4	NEWLAND	5037			
+1214970	22	E	12	59	29000	R5.77	7.227	33.765809	-117.955835	.24	HV	1	BROOKHUR2	887			
+1214971	22	W	12	59	29000	R5.77	7.227	33.765971	-117.955835	.24	HV	1	BROOKHUR2	887			
+1214972	22	W	12	59	29000	R5.77	7.227	33.765971	-117.955835	.24	ML	4	BROOKHUR2	887			
+1214985	22	W	12	59	29000	R6.05	7.507	33.766001	-117.951027	.285	HV	1	HOPE	5036			
+1214986	22	E	12	59	29000	R6.05	7.507	33.765858	-117.951027	.285	HV	1	HOPE	5036			
+1214987	22	W	12	59	29000	R6.05	7.507	33.766001	-117.951027	.285	ML	4	HOPE	5036			
+1214988	22	E	12	59	29000	R6.05	7.507	33.765858	-117.951027	.285	ML	4	HOPE	5036			
+1215000	22	W	12	59	29000	R6.34	7.797	33.76605	-117.946098	.28	HV	1	WARD	5035			
+1215001	22	E	12	59	29000	R6.34	7.797	33.76591	-117.946095	.28	HV	1	WARD	5035			
+1215002	22	W	12	59	29000	R6.34	7.797	33.76605	-117.946098	.28	ML	4	WARD	5035			
+1215003	22	E	12	59	29000	R6.34	7.797	33.76591	-117.946095	.28	ML	4	WARD	5035			
+1215015	22	E	12	59	29000	R8.3	9.757	33.77033	-117.913078	.33	HV	1	PEARCE	5033			
+1215016	22	W	12	59	29000	R8.3	9.757	33.770454	-117.91315	.375	HV	1	PEARCE	5033			
+1215017	22	E	12	59	29000	R8.3	9.757	33.77033	-117.913078	.33	ML	4	PEARCE	5033			
+1215018	22	W	12	59	29000	R8.3	9.757	33.770454	-117.91315	.375	ML	4	PEARCE	5033			
+1215026	22	E	12	59	53980	R12.7	14.261	33.776625	-117.838553	.689	ML	4	TUSTIN	5031			
+1215027	22	E	12	59	53980	R12.7	14.261	33.776625	-117.838553		FR	2	TUSTIN	5031			
+1215041	22	E	12	59	29000	R9.44	10.897	33.778512	-117.895881	.382	HV	1	LEWIS	5030			
+1215042	22	W	12	59	29000	R9.44	10.897	33.77865	-117.895924	.557	HV	1	LEWIS	5030			
+1215043	22	E	12	59	29000	R9.44	10.897	33.778512	-117.895881	.382	ML	5	LEWIS	5030			
+1215044	22	W	12	59	29000	R9.44	10.897	33.77865	-117.895924	.377	ML	5	LEWIS	5030			
+1215051	22	E	12	59	29000	R9.04	10.497	33.775838	-117.901985	.2	HV	1	GARDEN G2	890			
+1215052	22	E	12	59	29000	R9.04	10.497	33.775838	-117.901985	.18	HV	1	GARDEN G2	890			
+1215055	22	E	12	59	29000	R8.02	9.477	33.768707	-117.917517	.29	HV	1	HARBOR 2	889			
+1215062	22	W	12	59	29000	R7.29	8.747	33.766181	-117.929696	.18	HV	1	NEWHOPE	2223			
+1215063	22	E	12	59	29000	R7.29	8.747	33.766038	-117.929691	.18	HV	1	NEWHOPE	2223			
+1215071	22	W	12	59	29000	R5.57	7.027	33.765954	-117.959407	.39	HV	1	BROOKHUR1	908			
+1215072	22	E	12	59	29000	R5.57	7.027	33.765798	-117.959406	.39	HV	1	BROOKHUR1	908			
+1215077	22	W	12	59	29000	R2.49	3.947	33.774652	-118.010501	.32	HV	1	KNOTT 1	912			
+1215078	22	E	12	59	29000	R2.49	3.947	33.774494	-118.010537	.32	HV	1	KNOTT 1	912			
+1215089	22	W	12	59	29000	R2.71	4.167	33.774166	-118.006721	.195	HV	1	GARDEN GROV	5039			
+1215090	22	E	12	59	29000	R2.71	4.167	33.774003	-118.006807	.195	HV	1	GARDEN GROV	5039			
+1215091	22	W	12	59	29000	R2.71	4.167	33.774166	-118.006721	.195	ML	3	GARDEN GROV	5039			
+1215092	22	E	12	59	29000	R2.71	4.167	33.774003	-118.006807	.195	ML	3	GARDEN GROV	5039			
+1215096	22	E	12	59	84550	R2.88	4.337	33.772807	-118.004149	.365	HV	1	KNOTT 2	883			
+1215097	22	W	12	59	84550	R2.88	4.337	33.772939	-118.004084	.37	HV	1	KNOTT 2	883			
+1215108	22	E	12	59	53980	R9.7	11.261	33.778925	-117.889394	.282	HV	1	THE CITY DRIVE	891			
+1215109	22	E	12	59	53980	R9.7	11.261	33.778925	-117.889394		FF	2	22E CD AT CITY DRIVE	891			
+1215111	22	E	12	59	53980	R10.53	12.091	33.778882	-117.875647		FF	1	22E CD ON AT 5	2338			
+1215114	22	W	12	59	69000	R10.35	11.911	33.779104	-117.878735	.285	HV	1	W OF 5	2338			
+1215115	22	E	12	59	69000	R10.35	11.911	33.778938	-117.878722	.29	HV	1	W OF 5	2338			
+1215122	22	W	12	59	53980	R10.53	12.091	33.779039	-117.875662		FF	2	22W to 5/57N	2338			
+1215123	22	W	12	59	53980	R10.53	12.091	33.779039	-117.875662		FF	2	22E to 5N/57N	2338			
+1215128	22	E	12	59	53980	R10.71	12.271	33.77834	-117.872382	.45	HV	1	E OF 5	2340			
+1215129	22	W	12	59	53980	R10.71	12.271	33.778461	-117.872394	.44	HV	1	E OF 5	2340			
+1215212	22	W	12	59	53980	R12.25	13.811	33.775744	-117.846201	1.034	HV	1	CONCORD	5032			
+1215235	22	E	12	59	29000	R1.74	3.197	33.774214	-118.023517	.17	HV	1	SPRINGDALE CENSUS	5041			
+1215236	22	E	12	59	29000	R1.74	3.197	33.774214	-118.023517	.17	ML	3	SPRINGDALE CENSUS	5041			
+1215248	22	W	12	59	29000	R1.74	3.197	33.774389	-118.02351	.17	ML	4	SPRINGDALE CENSUS	5041			
+1215249	22	W	12	59	29000	7.3	8.757	33.766182	-117.929523	.215	HV	1	NEWHOPE CENSUS	5051			
+1215250	22	W	12	59	29000	7.3	8.757	33.766182	-117.929523	.215	ML	4	NEWHOPE CENSUS	5051			
+1215251	22	E	12	59	29000	7.3	8.757	33.766037	-117.929518	.215	HV	1	NEWHOPE CENSUS	5051			
+1215252	22	E	12	59	29000	7.3	8.757	33.766037	-117.929518	.215	ML	4	NEWHOPE CENSUS	5051			
+1215405	73	N	12	59	36770	24.72	14.72	33.654806	-117.864027		FR	1	JAMBOREE 1	7357			
+1215418	55	S	12	59	53980	15.22	15.202	33.809605	-117.832031		FR	2	KATELLA 1	0938			
+1215709	73	N	12	59	36770	24.68	14.68	33.654387	-117.863578		FF	1	MACARTHUR BLVD	7358			
+1215808	55	S	12	59	69000	12.3	12.282	33.767289	-117.83108	.54	HV	1	SANTA CLARA	319			
+1215809	55	S	12	59	69000	12.3	12.282	33.767289	-117.83108	.54	ML	5	SANTA CLARA	319			
+1215810	55	N	12	59	69000	12.3	12.282	33.767287	-117.830905	.35	HV	1	SANTA CLARA	319			
+1215811	55	N	12	59	69000	12.3	12.282	33.767287	-117.830905	.35	ML	5	SANTA CLARA	319			
+1215822	241	S	12	59		24.8	10.255	33.694005	-117.690369	.445	ML	3	SOUTH OF PORTOLA	6561			
+1215823	241	N	12	59		24.8	10.255	33.694263	-117.690124	.445	ML	3	SOUTH OF PORTOLA	6561			
+1215963	22	W	12	59	70686	R.2	1.667	33.774472	-118.093888	.507	ML	2	COLLEGE PARK	5047			
+1215964	22	W	12	59	70686	R.2	1.667	33.774472	-118.093888		FF	1	COLLEGE PARK	5047			
+1215965	22	E	12	59	70686	R.2	1.667	33.774295	-118.093885	.602	ML	2	COLLEGE PARK	5047			
+1215966	22	E	12	59	70686	R.2	1.667	33.774295	-118.093885		FF	2	COLLEGE PARK	5047			
+1215986	241	S	12	59		26.4	11.855	33.705842	-117.714477	.115	ML	4	SOLAR TOMATO 4	6761			
+1215987	241	N	12	59		26.4	11.855	33.705999	-117.713947	.115	ML	4	SOLAR TOMATO 4	6761			
+1216001	241	S	12	59		19.86	5.315	33.653645	-117.621818	.39	ML	2	SOLAR LOS ALISOS 1	6653			
+1216002	241	N	12	59		19.86	5.315	33.654041	-117.621643	.185	ML	3	SOLAR LOS ALISOS 1	6653			
+1216006	241	S	12	59		21.71	7.165	33.667139	-117.649531	.74	ML	2	SOLAR PORTOLA S1	6655			
+1216010	241	S	12	59		22.12	7.575	33.669671	-117.655768	.295	ML	2	SOLAR PORTOLA S2	6755			
+1216018	241	S	12	59		23.3	8.755	33.678496	-117.672636	.17	ML	3	SOLAR ALTON 1	6758			
+1216019	241	N	12	59		23.3	8.755	33.678874	-117.672365	.17	ML	3	SOLAR ALTON 1	6758			
+1216024	241	S	12	59		25.82	11.275	33.70167	-117.705642	.315	ML	3	SOLAR TOMATO 2	6759			
+1216039	241	N	12	59		17.9	3.355	33.634945	-117.599584	.14	ML	2	SOLAR ANTONIO 2	6650			
+1216040	241	S	12	59		17.9	3.355	33.634852	-117.600017	.25	ML	2	SOLAR ANTONIO 2	6650			
+1216048	241	N	12	59		22.71	8.165	33.673571	-117.664667	.1	ML	3	SOLAR LAKE FOREST	6657			
+1216049	241	S	12	59		22.71	8.165	33.673218	-117.664862	.1	ML	3	SOLAR LAKE FOREST	6657			
+1216058	241	N	12	59		22.91	8.365	33.67491	-117.66772	.195	ML	4	SOLAR BAKE	6656			
+1216059	241	S	12	59		22.91	8.365	33.674541	-117.667938	.195	ML	3	SOLAR BAKE	6656			
+1216067	241	N	12	59		23.65	9.105	33.68325	-117.675368	.31	ML	3	SOLAR ALTON 2	6659			
+1216068	241	S	12	59		23.65	9.105	33.682914	-117.675593	.31	ML	3	SOLAR ALTON 2	6659			
+1216070	241	N	12	59		24.26	9.715	33.689253	-117.682992	.32	ML	3	SOLAR N OF ALTON	6777			
+1216077	241	S	12	59		24.26	9.715	33.68898	-117.683211	.32	ML	3	SOLAR N OF ALTON	6777			
+1216081	241	N	12	59	2000	38.23	23.685	33.861991	-117.716374	1.024	ML	4	241N TO 91E ADVANCE	6094			
+1216086	241	N	12	59		26.05	11.505	33.703475	-117.708703	.2	ML	3	SOLAR TOMATO 3	6660			
+1216094	241	N	12	59		25.53	10.985	33.6998	-117.700854	.26	ML	3	SOLAR TOMATO 1	6658			
+1216095	241	S	12	59		25.53	10.985	33.699586	-117.701217	.145	ML	3	SOLAR TOMATO 1	6658			
+1216111	241	N	12	59		27.22	12.675	33.715752	-117.720286	.155	ML	2	SOLAR 133-3	6664			
+1216112	241	S	12	59		27.22	12.675	33.715736	-117.720827	.155	ML	2	SOLAR 133-3	6664			
+1216118	241	N	12	59		27.53	12.985	33.720239	-117.719726	.155	ML	2	SOLAR BEE CANYON	6665			
+1216119	241	S	12	59		27.53	12.985	33.720259	-117.72027	.155	ML	2	SOLAR BEE CANYON	6665			
+1216128	241	N	12	59		27.84	13.295	33.724757	-117.719107	.175	ML	4	SOLAR N OF 133	6666			
+1216129	241	S	12	59		27.84	13.295	33.724741	-117.719309	.175	ML	3	SOLAR N OF 133	6666			
+1216136	241	N	12	59		28.19	13.645	33.729864	-117.718482	.175	ML	3	SOLAR S OF JEFFREY	6667			
+1216137	241	S	12	59		28.19	13.645	33.729855	-117.718606	.175	ML	2	SOLAR S OF JEFFREY	6667			
+1216152	241	N	12	59		30.1	15.555	33.753089	-117.731261	.165	ML	3	SOLAR CUL-CULVER 1	6673			
+1216153	241	S	12	59		30.1	15.555	33.753272	-117.73154	.165	ML	2	SOLAR CUL-CULVER 1	6673			
+1216161	241	N	12	59		30.43	15.885	33.757747	-117.732661	.195	ML	3	SOLAR CUL-CULVER 2	6674			
+1216162	241	S	12	59		30.43	15.885	33.758005	-117.7328	.195	ML	3	SOLAR CUL-CULVER 2	6674			
+1216170	241	N	12	59		30.82	16.275	33.763475	-117.732264	.155	ML	3	SOLAR S OF CULVER N	6675			
+1216171	241	S	12	59		30.82	16.275	33.763785	-117.732531	.155	ML	3	SOLAR S OF CULVER N	6675			
+1216178	241	N	12	59		31.13	16.585	33.767528	-117.73464	.205	ML	2	SOLAR N OF CULVER N	6676			
+1216179	241	S	12	59		31.13	16.585	33.76779	-117.735146	.205	ML	3	SOLAR N OF CULVER N	6676			
+1216187	241	N	12	59		31.54	16.995	33.771335	-117.740279	.22	ML	3	SOLAR S OF EOC OC	6677			
+1216188	241	S	12	59		31.54	16.995	33.771541	-117.74094	.22	ML	3	SOLAR S OF EOC OC	6677			
+1216194	241	N	12	59		32.39	17.845	33.781469	-117.747519	.21	ML	2	SOLAR CHAPMAN 2	6762			
+1216195	241	S	12	59		32.39	17.845	33.781773	-117.748089	.21	ML	2	SOLAR CHAPMAN 2	6762			
+1216201	241	N	12	59		32.81	18.265	33.786792	-117.743958	.13	ML	2	SOLAR CHAPMAN 3	6679			
+1216202	241	S	12	59		32.81	18.265	33.787108	-117.744465	.13	ML	2	SOLAR CHAPMAN 3	6679			
+1216210	241	N	12	59		33.45	18.905	33.792513	-117.734929	.165	ML	3	SOLAR N OF CHAPMAN	6680			
+1216211	241	S	12	59		33.45	18.905	33.792829	-117.735293	.165	ML	3	SOLAR N OF CHAPMAN	6680			
+1216219	241	N	12	59		33.78	19.235	33.795518	-117.730244	.175	ML	3	SOLAR S OF SANT CK	6681			
+1216220	241	S	12	59		33.78	19.235	33.795858	-117.730574	.175	ML	3	SOLAR S OF SANT CK	6681			
+1216229	241	N	12	59		34.82	20.275	33.809812	-117.722088	.18	ML	4	SOLAR S OF OAK	6684			
+1216230	241	S	12	59		34.82	20.275	33.810123	-117.722474	.18	ML	3	SOLAR S OF OAK	6684			
+1216408	5	S	12	59	8786	43.3	115.488	33.865235	-117.996273	.295	HV	1	BEACH 1	2559			
+1216409	5	N	12	59	8786	43.3	115.551	33.865349	-117.996199	.295	HV	1	BEACH 1	2559			
+1216417	5	S	12	59	8786	43.3	115.488	33.865235	-117.996273		OR	1	BEACH 1	2559			
+1216418	5	S	12	59	8786	43.3	115.488	33.865235	-117.996273		FR	1	BEACH 1	2559			
+1216485	5	N	12	59	8786	43.01	115.261	33.863248	-117.991902	.3	HV	1	STANTON	257			
+1216486	5	S	12	59	8786	43.01	115.198	33.862901	-117.992155	.3	HV	1	STANTON	257			
+1216489	5	N	12	59	8786	43.01	115.261	33.863248	-117.991902		FR	2	STANTON	257			
+1216505	5	N	12	59	8786	42.7	114.951	33.860615	-117.987649	.245	ML	6	N OF ORANGETHORPE	5005			
+1216506	5	S	12	59	8786	42.7	114.888	33.860447	-117.987777	.245	ML	4	 N OF ORANGETHORPE	5005			
+1216507	5	N	12	59	8786	42.7	114.951	33.860615	-117.987649	.245	HV	2	N OF ORANGETHORPE	5005			
+1216508	5	S	12	59	8786	42.7	114.888	33.860447	-117.987777	.245	HV	1	N OF ORANGETHORPE	5005			
+1216512	5	S	12	59	8786	43	115.188	33.86282	-117.992016		FF	2	SB 5 to EB 91	5005			
+1216517	5	N	12	59	28000	42.52	114.771	33.859271	-117.98503	.4	HV	1	ORANGETHORPE 2	266			
+1216518	5	S	12	59	28000	42.52	114.708	33.859063	-117.985205	.4	HV	1	ORANGETHORPE 2	266			
+1216522	5	N	12	59	28000	42.52	114.771	33.859271	-117.98503		FF	1	ORANGETHORPE 2	266			
+1216523	5	S	12	59	28000	42.52	114.708	33.859063	-117.985205		FF	1	ORANGETHORPE 2	266			
+1216530	5	S	12	59	8786	43.9	116.088	33.869887	-118.005145	.3	ML	5	Western	2242			
+1216532	5	S	12	59	8786	43.9	116.088	33.869887	-118.005145	.3	HV	1	Western	2242			
+1216538	5	N	12	59	8786	43.9	116.151	33.870031	-118.005021	.375	ML	5	Western	2242			
+1216545	5	N	12	59	8786	43.9	116.151	33.870031	-118.005021	.699	HV	1	Western	2242			
+1216566	5	S	12	59	8786	44.2	116.388	33.872567	-118.009266	.362	HV	1	ARTESIA 1	256			
+1216573	5	S	12	59	8786	44.2	116.388	33.872567	-118.009266		FR	1	ARTESIA 1	256			
+1216579	5	S	12	59	8786	44.2	116.388	33.872567	-118.009266		OR	1	ARTESIA 1	256			
+1216582	5	N	12	59	8786	43.6	115.851	33.867724	-118.00058	.3	HV	1	BEACH 2	1803			
+1216589	5	S	12	59	8786	43.6	115.788	33.867596	-118.000667	.3	ML	4	BEACH 2	1803			
+1216591	5	S	12	59	8786	43.6	115.788	33.867596	-118.000667	.3	HV	1	BEACH 2	1803			
+1217364	73	S	12	59	16532	26.3	16.253	33.669908	-117.88342		FF	1	73NB TO 55SB	7362			
+1217563	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	3	SOUTH COAST DR OFF	5557			
+1217568	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773	.5	HV	1	N OF 73	5557			
+1217573	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FF	3	73 NB TO 405 NB	5557			
+1217579	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	1	73 NB FAIRVIEW OFF	5557			
+1217580	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	1	73 NB OFF TO HARBOR	5557			
+1217581	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	2	405 NB FAIRVIEW OFF	5557			
+1217585	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	2	FAIRVIEW- HARBOR OFF	5557			
+1217602	405	S	12	59		8.4	8.17	33.686517	-117.866474	.25	HV	1	RED HILL	2605			
+1217622	405	N	12	59		8.4	8.17	33.686795	-117.866348		FF	1	405 NB TO 55 SB	2605			
+1217626	405	S	12	59		8.4	8.17	33.686517	-117.866474		FF	2	RED HILL	2605			
+1217628	405	S	12	59		8.4	8.17	33.686517	-117.866474		FR	1	RED HILL	2605			
+1217887	5	S	12	59	80854	29.02	101.208	33.732587	-117.814369		FR	1	RED HILL	661			
+1217890	73	N	12	59		18.59	8.59	33.602777	-117.786992	5	HV	2	CATALINA 1	7339			
+1217892	73	S	12	59	39220	12.9	2.9	33.568221	-117.699705		FR	1	MOULTON	7317			
+1217896	73	N	12	59	36770	19.8	9.8	33.609334	-117.806039		OR	2	CATALINA 3	7341			
+1217917	73	N	12	59		13.38	3.38	33.573435	-117.705711		FR	2	LA PAZ  1	7319			
+1217923	5	N	12	59	39220	17.43	89.688	33.604242	-117.68984		FR	1	ALICIA 1	1445			
+1217927	73	N	12	59	36770	22.8	12.8	33.632697	-117.847113		OR	1	BONITA 2	7351			
+1217943	73	S	12	59		15.9	5.9	33.588528	-117.744385		FR	2	EL TORO 1	7328			
+1218123	91	W	12	59	40256	R1.69	16.429	33.856065	-118.014055	.335	HV	1	KNOTT 1	314			
+1218170	57	S	12	59	53980	16.11	5.461	33.857092	-117.876106	.38	ML	6	LA JOLLA	2185			
+1218173	57	S	12	59	53980	16.11	5.461	33.857092	-117.876106	.38	HV	1	LA JOLLA	2185			
+1218175	57	S	12	59	53980	16.11	5.461	33.857092	-117.876106		FF	1	LA JOLLA	2185			
+1218177	57	N	12	59	57526	16.11	5.376	33.857169	-117.875678		FF	1	LA JOLLA	2185			
+1218188	5	S	12	59	69000	33.2	105.388	33.768742	-117.868373		FF	2	MAIN 2	571			
+1218244	5	S	12	59	80854	28.35	100.538	33.726403	-117.805381		FR	2	TUSTIN RANCH	1822			
+1218246	91	W	12	59	8786	R2.4	17.139	33.856174	-118.001703	.305	HV	1	BEACH 1	3312			
+1218263	5	S	12	59	36770	R26.66	98.855	33.710634	-117.783134		FR	1	CULVER 2	1511			
+1218294	91	E	12	59	2000	R14.4	32.773	33.870197	-117.745295	.88	HV	2	WEIR CNYN1	1105			
+1218302	91	E	12	59	2000	R11.7	30.073	33.855071	-117.787923	.338	HV	2	IMPERIAL2	1103			
+1218307	91	E	12	59	2000	R10.27	28.643	33.852542	-117.811988	.37	HV	2	LAKEVIEW2	1101			
+1218312	91	E	12	59	2000	R10.08	28.453	33.850669	-117.814377	1.12	HV	2	LAKEVIEW1	1100			
+1218315	91	W	12	59	2000	R11.3	29.713	33.854393	-117.794734	.33	HV	2	IMPERIAL1	1117			
+1218326	91	W	12	59	2000	R14.2	32.613	33.869973	-117.74891	.575	HV	2	WEIR CNYN1	1115			
+1218332	55	S	12	59	69000	R7.62	7.62	33.705879	-117.854598	.545	ML	4	DYER 1	948			
+1218339	91	W	12	59	2000	R14.5	32.913	33.870876	-117.743806	.455	HV	2	WEIR CNYN2	1114			
+1218346	91	E	12	59	2000	R11.5	29.873	33.854193	-117.791214	.43	HV	2	IMPERIAL1	1102			
+1218405	91	W	12	59	8786	R2.6	17.339	33.856177	-117.998227	.3	HV	1	BEACH 2	3311			
+1218489	5	N	12	59	39220	18.61	90.868	33.613883	-117.706467		FR	1	EL TORO 1	554			
+1218492	5	N	12	59	36770	20.94	93.198	33.640323	-117.731437	.33	HV	1	BAKE 2	566			
+1218503	405	N	12	59	16532	10.1	9.87	33.687683	-117.895773		FR	1	N OF 73	5557			
+1218526	91	W	12	59	2000	R11.6	30.013	33.854766	-117.789563	.337	HV	2	IMPERIAL2	1116			
+1218570	74	W	12	59	68028	.241	.241	33.503721	-117.654477	.506	ML	1	Rancho Viejo	7403			
+1218576	74	E	12	59	68028	1.277	1.277	33.512477	-117.640482	.253	ML	1	Via Cordova	7405			
+1218612	142	W	12	59	8100	.975	.222	33.912612	-117.850473	.44	ML	1	Nasa ST	4208			
+1218742	73	N	12	59		16.98	6.98	33.593909	-117.76171		FR	1	RTE 133 - 3	7334			
+1218743	73	N	12	59		16.98	6.98	33.593909	-117.76171		FR	1	RTE 133 - 3	7334			
+1218805	73	N	12	59		13.9	3.9	33.576682	-117.713695		FR	2	ALICIA	7321			
+1218809	73	N	12	59	39220	13.2	3.2	33.571708	-117.703268		OR	1	PACIFIC PARK	7318			
+1218810	73	S	12	59	39220	13.2	3.2	33.571494	-117.703734		OR	2	PACIFIC PARK	7318			
+1218811	73	S	12	59	39220	13.2	3.2	33.571494	-117.703734		FR	2	LA PAZ OFF	7318			
+1218812	73	S	12	59	39220	13.2	3.2	33.571494	-117.703734		FR	3	MOULTON OFF	7318			
+1218823	73	N	12	59	39178	16.6	6.6	33.59165	-117.755743		OR	1	EL TORO 4	7331			
+1218824	73	N	12	59	39178	16.6	6.6	33.59165	-117.755743		FR	1	EL TORO 4	7331			
+1218825	73	S	12	59	39178	16.6	6.6	33.591203	-117.756043		FR	2	EL TORO 4	7331			
+1218847	74	E	12	59	68028	1.01	1.01	33.51067	-117.644505		CH	2	CALLE ENTRADERO	7416			
+1218848	74	W	12	59	68028	1.01	1.01	33.51067	-117.644505		CH	2	CALLE ENTRADERO	7416			
+1218857	142	E	12	59		4.81	4.21	33.929088	-117.797865		CH	1	CALL BOX 481	4216			
+1218858	142	W	12	59		4.81	4.21	33.929089	-117.797865		CH	1	CALL BOX 481	4216			
+1218862	142	E	12	59		2.84	2.24	33.921	-117.827996		CH	1	CALL BOX 484	4217			
+1218863	142	W	12	59		2.84	2.24	33.921	-117.827996		CH	1	CALL BOX 484	4217			
+1218886	73	S	12	59		16.2	6.2	33.590166	-117.749258		FR	2	EL TORO 2	7329			
+1218892	73	S	12	59	36770	23.5	13.5	33.638307	-117.857266		FR	1	BISON 1	7353			
+1218896	73	S	12	59	36770	23.7	13.7	33.640714	-117.859193		FR	1	MACARTHUR 1	7354			
+1218906	73	N	12	59		14.4	4.4	33.580619	-117.720958		OR	1	ALISO 3	7323			
+1218909	73	N	12	59		14.4	4.4	33.580619	-117.720958		FR	2	ALISO 3	7323			
+1218913	73	N	12	59		14.4	4.4	33.580619	-117.720958		FR	2	ALISO 3- TOLL LOOPS	7323			
+1218935	405	N	12	59	16532	10.9	10.67	33.688017	-117.909664		FR	1	FAIRVIEW	1350			
+1218938	405	N	12	59	16532	10.9	10.67	33.688017	-117.909664		FR	2	FAIRVIEW	1350			
+1218948	241	N	12	59		22.81	8.265	33.674212	-117.666212		OR	1	BAKE	6056			
+1218952	91	E	12	59	2000	R12.762	31.135	33.862813	-117.771912	.586	HV	2	MIDPOINT	5001			
+1218953	91	W	12	59	2000	R12.762	31.175	33.863077	-117.772007	.586	HV	2	MIDPOINT	5001			
+1218967	405	N	12	59	16532	10.48	10.25	33.687846	-117.902375		FR	2	N OF 73	2601			
+1218989	241	N	12	59		19.3	4.755	33.651938	-117.612216		FR	1	MELINDA	6052			
+1218990	241	S	12	59		17.8	3.255	33.633478	-117.599491	2.55	ML	2	ANTONIO 2	6550			
+1218995	241	N	12	59		17.8	3.255	33.63353	-117.599074		FR	2	ANTONIO 2	6550			
+1219000	133	N	12	59	36770	9.77	9.761	33.672836	-117.753243		FF	1	N OF 5	6102			
+1219001	133	S	12	59	36770	9.77	9.761	33.673029	-117.753623		FF	2	N OF 5	6102			
+1219007	133	N	12	59		10.5	10.491	33.680812	-117.748819		FF	1	N OF MARINE	6104			
+1219008	133	S	12	59		10.5	10.491	33.68106	-117.74924		FF	2	N OF MARINE	6104			
+1219025	91	E	12	59	2000	5.35	23.723	33.853992	-117.887676	.35	HV	1	STATE COLLEGE	1093			
+1219068	91	E	12	59	2000	R10.1	28.473	33.850874	-117.814133	.095	HV	2	LAKEVIEW2	1118			
+1219078	133	N	12	59	39178	4.5	4.509	33.598397	-117.761133	.225	ML	1	AT 73	7409			
+1219081	133	S	12	59	39178	4.8	4.809	33.60263	-117.760843	.215	ML	1	AT LAKE FOREST	7410			
+1219087	74	E	12	59		8	7.996	33.539611	-117.54873	.35	ML	1	NICHOLS INSTITUTE	7412			
+1219095	74	W	12	59		8	7.996	33.539611	-117.548729	.35	ML	1	NICHOLS INSTITUTE	7412			
+1219097	133	S	12	59	39178	5	5.009	33.605393	-117.759925	.225	ML	1	AT 73 (BLUETOOTH)	7409			
+1219099	133	N	12	59		6	5.991	33.6197	-117.75607	.28	ML	1	AT LAKE FOREST	7410			
+1219104	142	E	12	59		2.8	2.2	33.921188	-117.828619	.7	ML	1	CALL BOX 484	4207			
+1219105	142	W	12	59		2.8	2.2	33.921188	-117.828619	.495	ML	1	CALL BOX 484	4207			
+1219107	142	E	12	59	8100	.975	.222	33.912612	-117.850473	.44	ML	1	Nasa ST	4208			
+1219115	74	E	12	59	68028	.241	.241	33.503721	-117.654478	.506	ML	1	Rancho Viejo	7403			
+1219117	74	W	12	59	68028	1.277	1.277	33.512478	-117.640482	1.055	ML	1	Via Cordova	7405			
+1219212	74	E	12	59	68028	1.277	1.277	33.512477	-117.640482	.027	ML	1	Via Cordova BT	7411			
+1219213	74	W	12	59	68028	1.277	1.277	33.512478	-117.640482	.253	ML	1	Via Cordova BT	7411			
+1219252	142	E	12	59	8100	.753	0	33.90979	-117.85227	.111	ML	1	IMPERIAL HWY & VALEN	4201			
+1219253	142	W	12	59	8100	.753	0	33.90979	-117.85227	.111	ML	1	IMPERIAL HWY & VALEN	4201			
+1219257	142	E	12	59	8100	1.41	.657	33.918427	-117.847872	.396	ML	1	BRIRCH ST & VALENCIA	4202			
+1219258	142	W	12	59	8100	1.41	.657	33.918427	-117.847872	.392	ML	1	BRIRCH ST & VALENCIA	4202			
+1219262	142	E	12	59		1.768	1.015	33.923881	-117.847455	.426	ML	1	CRAB CNYN & VELLAENC	4203			
+1219264	142	W	12	59		1.768	1.015	33.923881	-117.847455	.251	ML	1	CRAB CNYN & VELLAENC	4203			
+1219268	142	E	12	59		2.2	1.6	33.92256	-117.838254	.345	ML	1	CARB CNYN @ SANTA FE	4204			
+1219269	142	W	12	59		2.2	1.6	33.92256	-117.838254	.25	ML	1	CARB CNYN @ SANTA FE	4204			
+1219273	142	E	12	59		4.84	4.24	33.929441	-117.797555	.335	ML	1	CALL BOX 481	4205			
+1219274	142	W	12	59		4.84	4.24	33.929442	-117.797554	.645	ML	1	CALL BOX 481	4205			
+1219278	142	E	12	59		3.8	3.2	33.922997	-117.813142	.105	ML	1	CARBO CNYN& REBEY RD	4206			
+1219279	142	W	12	59		3.8	3.2	33.922997	-117.813141	.105	ML	1	CARBO CNYN& REBEY RD	4206			
+1219318	241	N	12	59		26.76	12.215	33.709384	-117.718562		FR	2	133-2	6063			
+1219333	55	N	12	59		6.1	6.1	33.688567	-117.870964		FF	1	AIRPORT AT 55 NB	1564			
+1219372	5	N	12	59	68028	6.8	79.058	33.467227	-117.6701		FR	2	5NB PCH 3 OFF RAMPS				
+1219461	57	S	12	59	53980	17	6.351	33.869773	-117.879875	.36	ML	4	PLACENTIA	2186			
+1219462	57	N	12	59	57526	17	6.266	33.869812	-117.879677	.625	ML	6	PLACENTIA	2186			
+1219464	57	S	12	59	53980	17	6.351	33.869773	-117.879875	.36	HV	1	Placencia	2186			
+1219466	57	N	12	59	57526	17	6.266	33.869812	-117.879677	.6	HV	1	Placencia	2186			
+1219516	405	S	12	59	70686	23.12	22.89	33.77433	-118.083482	.048	ML	5	S OF 7TH ST	2241			
+1219519	405	N	12	59	70686	23.12	22.89	33.774556	-118.083341	.066	HV	2	S OF 7TH ST	2241			
+1219524	405	N	12	59	70686	23.12	22.89	33.774556	-118.083341		FF	2	S OF 7TH ST	2241			
+1219527	405	S	12	59	70686	23.12	22.89	33.77433	-118.083482	.048	HV	2	S OF 7TH ST	2241			
+1219531	405	S	12	59	70686	23.12	22.89	33.77433	-118.083482		FF	2	S OF 7TH ST	2241			
+1219539	405	S	12	59	70686	23.19	22.96	33.774466	-118.084694		FF	2	N OF 7TH ST	5022			
+1219540	405	N	12	59	70686	23.19	22.96	33.774676	-118.084559		FF	1	N OF 7TH ST	5022			
+1219541	405	N	12	59	70686	23.19	22.96	33.774676	-118.084559	.243	HV	1	N OF 7TH ST	5022			
+1219544	405	N	12	59	70686	23.12	22.89	33.774556	-118.083341		OR	1	S OF 7TH ST	2241			
+1219551	605	N	12	59	70686	R1.1	1.509	33.799174	-118.084562	1.589	ML	5	N OF 405	2541			
+1219560	605	S	12	59	70686	R1.1	1.509	33.799259	-118.084891	1.589	ML	5	N OF 405	2541			
+1219563	605	S	12	59	70686	R1.1	1.509	33.799259	-118.084891	2.1	HV	1	N OF 405	2541			
+1219564	605	N	12	59	70686	R1.1	1.509	33.799174	-118.084562	1.589	HV	1	N OF 405	2541			
+1219581	405	N	12	59	70686	23	22.77	33.774554	-118.08123	.116	ML	6	S OF OLD RANCH PKWY	268			
+1219584	405	N	12	59	70686	23	22.77	33.774554	-118.08123	.116	HV	2	S OF OLD RANCH PKWY	268			
+1219586	405	N	12	59	70686	23	22.77	33.774554	-118.08123		OR	1	S OF OLD RANCH PKWY	268			
+1219613	405	S	12	59	70686	23.7	23.47	33.779548	-118.090242		FF	1	E22-N405	2452			
+1219617	405	S	12	59	70686	23.7	23.47	33.779548	-118.090242		FF	2	E22-N405	2452			
+1219626	405	S	12	59	70686	23.7	23.47	33.779548	-118.090242		FR	1	E22-N405	2452			
+1219659	22	W	12	59		R.89	2.347	33.774686	-118.038174	1.437	HV	1	VALLEY V2	1504			
+1219664	405	S	12	59	84550	20.69	20.46	33.77403	-118.041297		FR	1	BOLSA CHICA	1387			
+1219666	22	E	12	59	29000	R1.08	2.537	33.774261	-118.034947	1.202	HV	1	VALLEY V2	882			
+1219729	57	N	12	59	8100	21.1	10.366	33.928813	-117.879984		FR	1	LAMBERT	973			
+1220011	5	N	12	59		R23.69	95.948	33.674367	-117.75591	.275	ML	6	SAND CANYON 1	665			
+1220013	5	N	12	59		R23.69	95.948	33.674367	-117.75591	.275	HV	1	SAND CANYON 1	665			
+1220030	5	N	12	59	68028	9.67	81.928	33.503442	-117.658516	.27	ML	4	ORTEGA 1	690			
+1220039	5	N	12	59	68028	9.67	81.928	33.503442	-117.658516		OR	1	ORTEGA 1	690			
+1220042	5	N	12	59	68028	9.67	81.928	33.503442	-117.658516	.27	HV	2	ORTEGA 1	690			
+1220086	5	S	12	59	68028	9.4	81.595	33.499521	-117.658583	.475	HV	1	ORTEGA  1	683			
+1220181	405	N	12	59		8.4	8.17	33.686795	-117.866348		OR	1	RED HILL	2605			
+1220427	5	S	12	59	69000	34.4	106.588	33.782529	-117.881218		FF	1	N OF 57	2269			
+1220455	605	N	12	59	70686	R1.26	1.669	33.80097	-118.082822	.511	HV	1	KATELLA 1	449			
+1220503	91	E	12	59	28000	1.12	19.493	33.853799	-117.961156		FR	2	BROOKHURST	1131			
+1220507	91	E	12	59	2000	2.11	20.483	33.854017	-117.943921		FR	1	EUCLID	1130			
+1220510	91	E	12	59	2000	3.13	21.503	33.853691	-117.926206		FR	1	HARBOR 1	1129			
+1220513	91	E	12	59	2000	5.14	23.513	33.854108	-117.891311		FR	1	STATE COLLEGE	1126			
+1220517	91	E	12	59	28000	3.91	22.283	33.853681	-117.912688		FR	1	LEMON	1091			
+1220530	91	E	12	59	2000	4.18	22.553	33.853755	-117.907999		FR	1	EAST	1127			
+1220561	142	E	12	59		2.11	1.51	33.922967	-117.839661	.292	ML	2	LOCATION 44	2556			
+1220562	142	W	12	59		2.11	1.51	33.922967	-117.839661	.292	ML	2	LOCATION 44	2556			
+1220578	142	E	12	59		3.6	3	33.922015	-117.816185	.5	ML	1	LOCATION 46	2558			
+1220579	142	W	12	59		3.6	3	33.922015	-117.816184	.5	ML	1	LOCATION 46	2558			
+1220588	142	E	12	59		3.81	3.21	33.92304	-117.812985	.2	ML	1	LOCATION 47	2560			
+1220589	142	W	12	59		3.81	3.21	33.92304	-117.812984	.2	ML	1	LOCATION 47	2560			
+1220593	142	E	12	59		4.2	3.6	33.924905	-117.806951	.505	ML	1	LOCATION 48	2561			
+1220594	142	W	12	59		4.2	3.6	33.924905	-117.80695	.515	ML	1	LOCATION 48	2561			
+1220598	142	E	12	59		4.82	4.22	33.929206	-117.797762	.01	ML	1	LOCATION 49	2562			
+1220599	142	E	12	59		4.82	4.22	33.929206	-117.797762	.31	ML	1	LOCATION 49	2562			
+1220603	142	E	12	59		5.5	4.9	33.937185	-117.791945	.255	ML	1	LOCATION 50	2563			
+1220604	142	W	12	59		5.5	4.9	33.937185	-117.791945	.905	ML	1	LOCATION 50	2563			
+1220608	142	W	12	59		5.49	4.89	33.937043	-117.791973	.33	ML	1	LOCATION 51	2564			
+1220609	142	E	12	59		5.49	4.89	33.937043	-117.791973	.33	ML	1	LOCATION 51	2564			
+1220613	142	E	12	59		6	5.4	33.942293	-117.78641	.4	ML	1	LOCATION 52	2565			
+1220614	142	E	12	59		6	5.4	33.942293	-117.78641	.25	ML	1	LOCATION 52	2565			
+1220624	74	E	12	59	68028	1.33	1.33	33.512701	-117.639615	.113	ML	1	LOCATION 14	2529			
+1220628	74	E	12	59		3.39	3.386	33.522498	-117.60673	1.236	ML	1	LOCATION 15	2530			
+1220629	74	W	12	59		3.39	3.386	33.522498	-117.606729	1.349	ML	1	LOCATION 15	2530			
+1220635	74	E	12	59		3.98	3.976	33.518349	-117.598125	.7	ML	1	LOCATION 16	2531			
+1220636	74	W	12	59		3.98	3.976	33.518349	-117.598125	.7	ML	1	LOCATION 16	2531			
+1220640	74	W	12	59		4.79	4.786	33.514576	-117.585038	.985	ML	1	LOCATION 17	2532			
+1220641	74	E	12	59		4.79	4.786	33.514576	-117.585038	.985	ML	1	LOCATION 17	2532			
+1220645	74	E	12	59		5.95	5.946	33.515135	-117.565581	.78	ML	1	LOCATION 18	2533			
+1220649	74	E	12	59		6.35	6.346	33.519299	-117.560917	.515	ML	1	LOCATION 19	2534			
+1220650	74	W	12	59		6.35	6.346	33.519299	-117.560917	.515	ML	1	LOCATION 19	2534			
+1220654	74	W	12	59		6.98	6.976	33.525739	-117.55384	.49	ML	1	LOCATION 20	2535			
+1220655	74	E	12	59		6.98	6.976	33.525739	-117.55384	.49	ML	1	LOCATION 20	2535			
+1220659	74	E	12	59		7.33	7.326	33.530443	-117.551809	.51	ML	1	LOCATION 21	2536			
+1220660	74	W	12	59		7.33	7.326	33.530443	-117.551809	.51	ML	1	LOCATION 21	2536			
+1220664	74	E	12	59		8.03	8.026	33.540039	-117.548668	.215	ML	1	LOCATION 22	2537			
+1220665	74	W	12	59		8.03	8.026	33.540039	-117.548667	.215	ML	1	LOCATION 22	2537			
+1220669	74	W	12	59		8.43	8.426	33.545676	-117.549113	.835	ML	1	LOCATION 23	2538			
+1220670	74	E	12	59		8.43	8.426	33.545676	-117.549113	.835	ML	1	LOCATION 23	2538			
+1220674	74	E	12	59		9.7	9.696	33.56355	-117.546105	.79	ML	1	LOCATION 24	2539			
+1220675	74	W	12	59		9.7	9.696	33.56355	-117.546105	.79	ML	1	LOCATION 24	2539			
+1220679	74	E	12	59		10.01	10.006	33.567766	-117.544319	2.655	ML	1	LOCATION 25	2540			
+1220680	74	W	12	59		10.01	10.006	33.567766	-117.544319	2.655	ML	1	LOCATION 25	2540			
+1220745	133	N	12	59	39178	4.34	4.349	33.596159	-117.760506	2.58	ML	2	LOCATION 26	2512			
+1220750	133	N	12	59	39178	4.79	4.799	33.602492	-117.760884	.4	ML	2	LOCATION 27	2513			
+1220755	133	N	12	59	39178	5.3	5.309	33.609693	-117.759225	.501	ML	2	LOCATION 28	2514			
+1220760	133	N	12	59		5.81	5.801	33.616805	-117.756717	.341	ML	2	LOCATION 29	2515			
+1220765	133	N	12	59		6.37	6.361	33.625088	-117.757397	.405	ML	2	LOCATION 30	2516			
+1220770	133	N	12	59	36770	6.81	6.801	33.630223	-117.761167	.49	ML	2	LOCATION 31	2517			
+1220775	133	N	12	59	36770	7.35	7.341	33.637439	-117.760626	.455	ML	2	LOCATION 32	2518			
+1220780	133	N	12	59	36770	7.76	7.751	33.642699	-117.761973	.64	ML	3	LOCATION 33	2519			
+1220786	133	N	12	59	36770	7.72	7.711	33.64216	-117.761812	.205	ML	3	LOCATION 34	2520			
+1220790	133	S	12	59	36770	6.8	6.791	33.630107	-117.761094	1.31	ML	2	LOCATION 35	2521			
+1220795	133	S	12	59		6.38	6.371	33.625214	-117.75749	.495	ML	2	LOCATION 36	2522			
+1220800	133	S	12	59		5.81	5.801	33.616804	-117.756718	.551	ML	2	LOCATION 37	2523			
+1220805	133	S	12	59	39178	5.26	5.269	33.609099	-117.759202	.396	ML	2	LOCATION 38	2524			
+1220811	133	S	12	59	39178	4.81	4.819	33.602769	-117.7608	.1	ML	2	LOCATION 39	2525			
+1220816	133	S	12	59	39178	4.38	4.389	33.596721	-117.760662	.404	ML	2	LOCATION 40	2526			
+1220832	91	W	12	59	2000	R11.5	29.913	33.854451	-117.791255	.105	ML	5	IMPERIAL1	1102			
+1220833	91	W	12	59	2000	R11.5	29.913	33.854451	-117.791255	.15	HV	2	IMPERIAL1	1102			
+1220847	405	N	12	59	36770	.93	.7	33.64809	-117.746598		FF	2	IRVINE C1	1331			
+1220890	405	N	12	59	36770	.93	.7	33.64809	-117.746598		FR	2	IRVINE C1	1331			
+1220949	73	S	12	59		13.38	3.38	33.573158	-117.706028		CD	2	LA PAZ  1	7319			
+1220966	73	N	12	59		13.38	3.38	33.573435	-117.705711		CD	1	LA PAZ  1	7319			
+1220968	241	S	12	59		25.72	11.175	33.700961	-117.704109		OR	1	TOMATO 2	6059			
+1221011	405	S	12	59	36770	1.57	1.34	33.650789	-117.757205		FF	2	N OF 133	2474			
+1221049	5	S	12	59	65084	5.59	77.785	33.457014	-117.653153	.675	HV	1	ESTRELLA	685			
+1221051	5	N	12	59	17946	5.89	78.148	33.459637	-117.657305	.59	HV	1	ESTRELLA2	535			
+1221057	5	N	12	59	65084	5.73	77.988	33.458342	-117.655008	.32	HV	1	ESTRELLA1	534			
+1221059	5	N	12	59	65084	5.73	77.988	33.458342	-117.655008		FR	1	ESTRELLA1	534			
+1221063	5	N	12	59	65084	4.02	76.278	33.44466	-117.630415	.27	HV	1	HERMOSA 1	2036			
+1221067	5	N	12	59	65084	4.1	76.358	33.445434	-117.631445	.34	HV	1	HERMOSA 2	5588			
+1221074	5	S	12	59	65084	4.1	76.295	33.445303	-117.631557	.57	HV	1	HERMOSA 2	5509			
+1221092	91	W	12	59	2000	R18.1	36.513	33.871434	-117.685149	.217	ML	5	COAL	1109			
+1221099	91	W	12	59	2000	R18.1	36.513	33.871434	-117.685149	1.037	HV	2	COAL	1109			
+1221123	1	N	12	59	51182	20.03	20.051	33.621716	-117.933242	2.76	ML	1	1 NB S OF 55	2545			
+1221127	1	S	12	59	51182	19.51	19.531	33.620357	-117.924432	.6	ML	1	1 SB RIVERSIDE AVE	2546			
+1221131	1	N	12	59	51182	18.83	18.851	33.616119	-117.913843	.725	ML	1	1 NB BALBOA BAY	2547			
+1221132	1	S	12	59	51182	18.83	18.851	33.61612	-117.913849	.725	ML	1	1 NB BALBOA BAY	2547			
+1221136	1	N	12	59	51182	18.07	18.081	33.61624	-117.900661	.61	ML	1	1 NB BAYSIDE DRIVE	2548			
+1221137	1	S	12	59	51182	18.07	18.081	33.616208	-117.900679	.61	ML	1	1 NB BAYSIDE DRIVE	2548			
+1221143	1	N	12	59	51182	17.01	17.021	33.611026	-117.883525	.595	ML	1	1 NB IRVINE TERRACE	2550			
+1221144	1	S	12	59	51182	17.01	17.021	33.610881	-117.883631	.595	ML	1	1 NB IRVINE TERRACE	2550			
+1221148	1	N	12	59	51182	16.43	16.441	33.605811	-117.875914	1.825	ML	1	1 NB AVOCADO AVE	2551			
+1221149	1	S	12	59	51182	16.43	16.441	33.605675	-117.876053	1.825	ML	1	1 NB AVOCADO AVE	2551			
+1221162	1	S	12	59		13.36	13.371	33.575503	-117.839807	1.825	ML	1	1 SB LOS TRANCOS	2552			
+1221163	1	N	12	59		13.36	13.371	33.575502	-117.839807	1.825	ML	1	1 SB LOS TRANCOS	2552			
+1221169	1	S	12	59		12.78	12.791	33.568992	-117.833412	.485	ML	1	1 SB CRYSTAL HEIGHTS	2553			
+1221170	1	N	12	59		12.78	12.791	33.568992	-117.833412	.485	ML	1	1 SB CRYSTAL HEIGHTS	2553			
+1221175	1	S	12	59		12.39	12.401	33.565462	-117.828018	2.695	ML	1	1 SB REEF POINT DR	2554			
+1221176	1	N	12	59		12.39	12.401	33.565462	-117.828018	2.695	ML	1	1 SB REEF POINT DR	2554			
+1221193	1	N	12	59	51182	17.62	17.631	33.613432	-117.893777	.53	ML	1	1 NB PROMONTORY PT	2549			
+1221197	5	N	12	59	65084	5.25	77.508	33.45478	-117.647864	.515	HV	1	N OF VAQUERO	2034			
+1221198	5	S	12	59	65084	5.25	77.445	33.454615	-117.648005	.445	HV	1	N OF VAQUERO	2034			
+1221200	91	E	12	59	2000	4.35	22.723	33.853767	-117.905042		FR	1	EAST	1092			
+1221212	57	N	12	59	57526	16.11	5.376	33.857169	-117.875678	.4	ML	6	LA JOLLA	2185			
+1221232	5	N	12	59	65084	4.7	76.958	33.450411	-117.639897	.65	ML	4	S OF VAQUERO	2035			
+1221233	5	S	12	59	65084	4.7	76.895	33.450269	-117.640023	.65	ML	4	S OF VAQUERO	2035			
+1221234	5	N	12	59	65084	4.7	76.958	33.450411	-117.639897	.575	HV	1	S OF VAQUERO	2035			
+1221235	5	S	12	59	65084	4.7	76.895	33.450269	-117.640023	.575	HV	1	S OF VAQUERO	2035			
+1221237	57	N	12	59	57526	16.11	5.376	33.857169	-117.875678	.4	HV	1	LA JOLLA	2185			
+1221248	142	W	12	59		1.76	1.007	33.923865	-117.847567	.179	ML	2	LOCATION 43	2555			
+1221254	142	W	12	59		2.61	2.01	33.922131	-117.831553	.095	ML	1	LOCATION 45	2557			
+1221255	142	W	12	59		2.61	2.01	33.922131	-117.831553	.205	ML	1	LOCATION 45	2557			
+1221259	74	E	12	59	68028	.77	.77	33.508745	-117.647923	.518	ML	2	74 EB SUNDANCE DRIVE	2528			
+1221262	74	W	12	59	68028	.77	.77	33.508745	-117.647923	.518	ML	2	74 EB SUNDANCE DRIVE	2528			
+1221266	74	E	12	59	68028	1.503	1.503	33.513581	-117.63683	1.028	ML	1	74 WB STRAWBERRY LN	2529			
+1221271	133	S	12	59	39178	4	4	33.591062	-117.759529	2.694	ML	2	N of 73	2527			
+1221273	74	W	12	59		5.95	5.946	33.515135	-117.565581	.78	ML	1	74 EB GIBBY ROAD	2533			
+1221275	1	N	12	59	51182	19.51	19.531	33.620457	-117.924387	.6	ML	1	1 SB RIVERSIDE AVE	2546			
+1221277	1	S	12	59	51182	17.62	17.631	33.613228	-117.893843	.53	ML	1	1 NB PROMONTORY PT	2549			
+1221282	1	S	12	59	51182	20.03	20.051	33.621545	-117.933258	2.76	ML	1	1 NB S OF 55	2545			
+1221304	405	S	12	59	84550	18.689	18.459	33.754062	-118.016295	.534	ML	5	TMS 5017 SB	13472			
+1221307	405	S	12	59	84550	18.689	18.459	33.754062	-118.016295	.534	HV	1	TMS 5017 SB	13472			
+1221313	405	N	12	59	84550	18.696	18.466	33.754349	-118.016167	.66	ML	4	TMC 5017 NB	12633			
+1221315	405	N	12	59	84550	18.696	18.466	33.754349	-118.016167	.66	HV	1	TMC 5017 NB	12633			
+1221321	405	S	12	59	84550	19.641	19.411	33.763839	-118.02796	.643	ML	4	TMS 5018 SB	13463			
+1221323	405	S	12	59	84550	19.641	19.411	33.763839	-118.02796	.643	HV	1	TMS 5018 SB	13463			
+1221329	405	N	12	59	84550	19.631	19.401	33.763926	-118.027646	.55	ML	4	TMS 5018 NB	13484			
+1221331	405	N	12	59	84550	19.631	19.401	33.763926	-118.027646	.55	HV	1	TMS 5018 NB	13484			
+1221337	405	S	12	59	84550	20.336	20.106	33.770948	-118.036509	.524	ML	4	TMS 2240 SB	13505			
+1221339	405	S	12	59	84550	20.336	20.106	33.770948	-118.036509	.524	HV	1	TMS 2240 SB	13505			
+1221346	405	N	12	59	84550	20.341	20.111	33.771206	-118.036355	.704	ML	4	TMS 2240 NB	13461			
+1221347	405	N	12	59	84550	20.341	20.111	33.771206	-118.036355	.704	HV	1	TMS 2240 NB	13461			
+1221356	405	S	12	59	84550	21.032	20.802	33.774412	-118.047045	.415	ML	6	TMS 2417 SB	12625			
+1221359	405	S	12	59	84550	21.032	20.802	33.774412	-118.047045	.415	HV	2	TMS 2417 SB	12625			
+1221367	405	N	12	59	70686	21.039	20.809	33.774701	-118.046955	.606	ML	6	TMS 2417 NB	13459			
+1221370	405	N	12	59	70686	21.039	20.809	33.774701	-118.046955	.606	HV	2	TMS 2417 NB	13459			
+1221378	405	S	12	59	70686	21.519	21.289	33.774204	-118.055374	.416	ML	6	TMS 5020 SB	12622			
+1221380	405	S	12	59	70686	21.519	21.289	33.774204	-118.055374	.416	HV	2	TMS 5020 SB	12622			
+1221388	405	N	12	59	70686	21.552	21.322	33.774476	-118.055894	.436	ML	6	TMS 5020 NB				
+1221391	405	N	12	59	70686	21.552	21.322	33.774476	-118.055894	.436	HV	2	TMS 5020 NB				
+1221399	405	S	12	59	70686	21.864	21.634	33.77419	-118.061407	.51	ML	6	TMS 5021 SB	12623			
+1221402	405	S	12	59	70686	21.864	21.634	33.77419	-118.061407	.51	HV	2	TMS 5021 SB	12623			
+1221410	405	N	12	59	70686	21.912	21.682	33.774467	-118.062183	.499	ML	6	TMS 5021 NB	13491			
+1221413	405	N	12	59	70686	21.912	21.682	33.774467	-118.062183	.499	HV	2	TMS 5021 NB	13491			
+1221434	405	N	12	59	16532	11.247	11.017	33.688281	-117.915651	.249	ML	6	TEMP 1 NB	12639			
+1221442	405	S	12	59	16532	11.53	11.3	33.689396	-117.92042	.33	ML	6	TEMP 1 SB	13473			
+1221449	405	S	12	59	25380	12.63	12.4	33.696514	-117.937506	.311	ML	5	TEMP 2 SB	13495			
+1221451	405	N	12	59	25380	12.712	12.482	33.697258	-117.938594	.345	ML	5	TEMP 2 NB	12660			
+1221463	405	S	12	59	25380	13.123	12.893	33.699731	-117.94515	.335	ML	5	LOCATION 5013 SB	13485			
+1221470	405	N	12	59	25380	13.122	12.892	33.699916	-117.94495	.445	ML	5	LOCATION 5013 NB	13470			
+1221476	405	S	12	59	25380	14.539	14.309	33.712977	-117.963712	.454	ML	4	TMS 5014 SB	13494			
+1221482	405	N	12	59	25380	14.571	14.341	33.71347	-117.963904	.424	ML	4	TMS 5014 NB	13464			
+1221489	405	S	12	59	25380	15.722	15.492	33.724961	-117.978434	.55	ML	5	TMS 5015 SB	13483			
+1221496	405	N	12	59	25380	15.66	15.43	33.724553	-117.977379	.318	ML	5	TMS 5015 NB	12642			
+1221502	405	S	12	59	36000	16.978	16.748	33.736657	-117.995139	.53	ML	5	TMS 5016 SB	12595			
+1221508	405	N	12	59	36000	16.025	15.795	33.727931	-117.982268	.43	ML	4	TMS 5016 NB	13423			
+1221516	405	N	12	59	70686	22.887	22.657	33.774547	-118.079243	.224	ML	6	TMS 268	12661			
+1221523	405	S	12	59	70686	23.093	22.863	33.77433	-118.083008	.29	ML	6	TMS 2241 SB	13482			
+1221530	405	N	12	59	70686	23.133	22.903	33.774562	-118.083569	.249	ML	5	TMS 2241 NB	13480			
+1221536	405	S	12	59	70686	23.646	23.416	33.778783	-118.090036	.15	ML	4	TMS 2218 SB	13462			
+1221543	405	N	12	59	70686	23.641	23.411	33.778827	-118.089745	.149	ML	5	TMS 2218 NB	13493			
+1221550	405	S	12	59	70686	23.262	23.032	33.774743	-118.085896	.215	ML	5	TMS 5022 SB	13425			
+1221556	405	S	12	59	70686	23.919	23.689	33.782664	-118.091096	.137	ML	4	TMS 2542 SB	13481			
+1221562	405	N	12	59	70686	23.929	23.699	33.782868	-118.090872	.099	ML	4	TMS 2542 NB	13506			
+1221567	5	S	12	59	17946	6.6	78.795	33.465471	-117.667379	1.78	HV	1	RTE 1 SB	684			
+1221571	5	N	12	59	65084	3.56	75.818	33.440202	-117.624486		FR	2	PICO 2	533			
+1221572	5	N	12	59	65084	3.56	75.818	33.440202	-117.624486	.395	HV	1	PICO 2	533			
+1221573	5	S	12	59	65084	3.56	75.755	33.440044	-117.624646	.435	HV	1	PICO 2	533			
+1221577	5	S	12	59	65084	3.23	75.425	33.437336	-117.619943	2.665	HV	1	PICO 1	686			
+1221594	405	N	12	59	25380	15	14.77	33.717879	-117.969162	.175	ML	6	405 TEST				
+1221601	405	S	12	59	25380	15	14.77	33.717709	-117.969386	.22	ML	6	405 TEST				
+1221606	405	N	12	59	25380	15	14.77	33.717879	-117.969162	.175	HV	2	405 TEST				
+1221616	405	N	12	59	25380	15	14.77	33.717879	-117.969162		OR	1	405 TEST				
+1221624	405	S	12	59	25380	15	14.77	33.717709	-117.969386	.22	HV	2	405 TEST				
+1221627	405	N	12	59	25380	15	14.77	33.717879	-117.969162		FR	2	405 TEST				
+1221652	5	N	12	59	65084	3.23	75.488	33.43749	-117.619773		FR	1	PICO 1	686			
+1221653	5	N	12	59	65084	3.23	75.488	33.43749	-117.619773	2.665	HV	1	PICO 1	686			
+1221656	5	S	12	59	36770	23.3	95.495	33.668794	-117.754476	.2	ML	1	TEST MVDS				
+1221659	405	N	12	59	16532	11.247	11.017	33.688281	-117.915651	.249	HV	1	TEMP 1 NB	12639			
+1221661	405	S	12	59	16532	11.53	11.3	33.689396	-117.92042	.33	HV	1	TEMP 1 SB	13473			
+1221664	405	S	12	59	25380	12.63	12.4	33.696514	-117.937506	.311	HV	1	TEMP 2 SB	13495			
+1221666	405	N	12	59	25380	12.712	12.482	33.697258	-117.938594	.345	HV	1	TEMP 2 NB	12660			
+1221669	405	S	12	59	25380	13.123	12.893	33.699731	-117.94515	.335	HV	1	TMS 5013 SB	13485			
+1221671	405	N	12	59	25380	13.122	12.892	33.699916	-117.94495	.445	HV	1	TMS 5013 NB	13470			
+1221673	405	S	12	59	25380	14.539	14.309	33.712977	-117.963712	.454	HV	1	TMS 5014 SB	13494			
+1221675	405	N	12	59	25380	14.571	14.341	33.71347	-117.963904	.424	HV	1	TMS 5014 NB	13464			
+1221677	405	S	12	59	25380	15.722	15.492	33.724961	-117.978434	.55	HV	1	TMS 5015 SB	13483			
+1221679	405	N	12	59	25380	15.66	15.43	33.724553	-117.977379	.318	HV	1	TMS 5015 NB	12642			
+1221682	405	S	12	59	36000	16.978	16.748	33.736657	-117.995139	.53	HV	1	TMS 5016 SB	12595			
+1221684	405	N	12	59	36000	16.025	15.795	33.727931	-117.982268	.43	HV	1	TMS 5016 NB	13423			
+1221687	405	N	12	59	70686	22.887	22.657	33.774547	-118.079243	.224	HV	2	TMS 268	12661			
+1221694	405	S	12	59	70686	23.093	22.863	33.77433	-118.083008	.29	HV	2	TMS 2241 SB	13482			
+1221697	405	N	12	59	70686	23.133	22.903	33.774562	-118.083569	.034	HV	2	TMS 2241 NB	13480			
+1221701	405	S	12	59	70686	23.646	23.416	33.778783	-118.090036	.15	HV	1	TMS 2218 SB	13462			
+1221706	405	N	12	59	70686	23.641	23.411	33.778827	-118.089745	.149	HV	1	TMS 2218 NB	13493			
+1221709	405	S	12	59	70686	23.262	23.032	33.774743	-118.085896	.215	HV	2	TMS 5022 SB	13425			
+1221711	405	S	12	59	70686	23.919	23.689	33.782664	-118.091096	.137	HV	1	TMS 2542 SB	13481			
+1221713	405	N	12	59	70686	23.929	23.699	33.782868	-118.090872	.099	HV	1	TMS 2542 NB	13506			
Index: trunk/webapps/cptms/data_layers/vds_intersect.py
===================================================================
--- trunk/webapps/cptms/data_layers/vds_intersect.py	(revision 352)
+++ trunk/webapps/cptms/data_layers/vds_intersect.py	(revision 352)
@@ -0,0 +1,36 @@
+import json, sys
+# Read 2 filenames from command line
+# Output to stdout features in file2 not in file1
+
+if len(sys.argv) == 1:
+    print "Must provide 2 command line arguments"
+    print 'Number of arguments:', len(sys.argv)-1
+    exit
+    
+with open(sys.argv[1], "r") as read_file:
+    j = json.load(read_file)
+
+features1 = j["features"]
+
+# Create a set of ID's from first file of features
+alpha = set()
+for f in features1:
+    alpha.add(f["id"]);
+
+with open(sys.argv[2], "r") as read_file:
+    j = json.load(read_file)
+
+features2 = j["features"]
+
+# Lookup each feature ID from file2 in set     
+bravo = []
+for f in features2:
+    target = f["id"]
+    if target not in alpha:
+        bravo.append(target);
+
+# bravo contains items in dat2 not in dat1
+for b in bravo:
+    print b
+    
+# Note features dicts are saved for future use
Index: trunk/webapps/cptms/data_layers/convertCSVtoJSON.bash
===================================================================
--- trunk/webapps/cptms/data_layers/convertCSVtoJSON.bash	(revision 318)
+++ trunk/webapps/cptms/data_layers/convertCSVtoJSON.bash	(revision 318)
@@ -0,0 +1,16 @@
+#!/bin/bash
+# Convert csv to json using awk pgm
+# Get input filename from command line
+if [ "$#" -ne 1 ] 
+then
+  echo "argument required: provide input csv filename of prepped postmile file"
+  exit 1
+fi 
+
+echo "{"
+echo " \"type\": \"FeatureCollection\","
+echo " \"features\": ["
+awk -F',' -f csvToJson.awk $1
+echo " ]"
+echo "}"
+# NB: You need to manually remove the comma after the last feature.
Index: trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted.csv
===================================================================
--- trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted.csv	(revision 317)
+++ trunk/webapps/cptms/data_layers/d12_vds_uniq_sorted.csv	(revision 317)
@@ -0,0 +1,1227 @@
+1,N,12.39,33.565462,-117.828018,1 SB REEF POINT DR
+1,S,12.39,33.565462,-117.828018,1 SB REEF POINT DR
+1,N,12.78,33.568992,-117.833412,1 SB CRYSTAL HEIGHTS
+1,S,12.78,33.568992,-117.833412,1 SB CRYSTAL HEIGHTS
+1,N,13.36,33.575502,-117.839807,1 SB LOS TRANCOS
+1,S,13.36,33.575503,-117.839807,1 SB LOS TRANCOS
+1,N,16.43,33.605811,-117.875914,1 NB AVOCADO AVE
+1,S,16.43,33.605675,-117.876053,1 NB AVOCADO AVE
+1,N,17.01,33.611026,-117.883525,1 NB IRVINE TERRACE
+1,S,17.01,33.610881,-117.883631,1 NB IRVINE TERRACE
+1,N,17.62,33.613432,-117.893777,1 NB PROMONTORY PT
+1,S,17.62,33.613228,-117.893843,1 NB PROMONTORY PT
+1,N,18.07,33.61624,-117.900661,1 NB BAYSIDE DRIVE
+1,S,18.07,33.616208,-117.900679,1 NB BAYSIDE DRIVE
+1,N,18.83,33.616119,-117.913843,1 NB BALBOA BAY
+1,S,18.83,33.61612,-117.913849,1 NB BALBOA BAY
+1,N,19.51,33.620457,-117.924387,1 SB RIVERSIDE AVE
+1,S,19.51,33.620357,-117.924432,1 SB RIVERSIDE AVE
+1,N,20.03,33.621716,-117.933242,1 NB S OF 55
+1,S,20.03,33.621545,-117.933258,1 NB S OF 55
+5,S,0.64,33.404943,-117.598167,S LUIS REY
+5,N,0.65,33.40516,-117.597992,S. LUIS REY
+5,S,0.9,33.408425,-117.599923,CALAFIA
+5,N,1.24,33.413051,-117.601964,MAGDALENA
+5,N,1.26,33.413319,-117.6021,MAGDALENA
+5,S,1.26,33.41325,-117.602338,MAGDALENA
+5,S,1.49,33.416348,-117.603827,EL CAMINO REAL
+5,N,1.83,33.420685,-117.606498,EL CAMINO REAL
+5,N,1.84,33.420802,-117.6066,EL CAMINO REAL
+5,S,2.14,33.424652,-117.609039,PRESIDIO
+5,N,2.45,33.428587,-117.6116,PRESIDIO
+5,N,2.47,33.428811,-117.611817,PRESIDIO
+5,N,2.8,33.432425,-117.615519,PALIZADA
+5,S,2.8,33.432273,-117.615724,PALIZADA
+5,N,3.23,33.43749,-117.619773,PICO 1
+5,S,3.23,33.437336,-117.619943,PICO 1
+5,N,3.56,33.440202,-117.624486,PICO 2
+5,S,3.56,33.440044,-117.624646,PICO 2
+5,N,4.02,33.44466,-117.630415,HERMOSA 1
+5,N,4.1,33.445434,-117.631445,HERMOSA 2
+5,S,4.1,33.445303,-117.631557,HERMOSA 2
+5,N,4.7,33.450411,-117.639897,S OF VAQUERO
+5,S,4.7,33.450269,-117.640023,S OF VAQUERO
+5,N,5.25,33.45478,-117.647864,N OF VAQUERO
+5,S,5.25,33.454615,-117.648005,N OF VAQUERO
+5,N,5.4,33.455773,-117.650183,N OF VAQUERO
+5,S,5.4,33.455612,-117.650318,N OF VAQUERO
+5,S,5.59,33.457014,-117.653153,ESTRELLA
+5,N,5.73,33.458342,-117.655008,ESTRELLA1
+5,N,5.89,33.459637,-117.657305,ESTRELLA2
+5,N,6.47,33.464404,-117.665509,SACRAMENTO
+5,S,6.47,33.464281,-117.665631,SACRAMENTO
+5,S,6.6,33.465471,-117.667379,RTE 1 SB
+5,N,6.8,33.467227,-117.6701,5NB PCH 3 OFF RAMPS
+5,N,6.91,33.468032,-117.671714,LAS RAMBLAS
+5,N,7.46,33.475073,-117.674271,CAPISTRANO
+5,S,7.46,33.475102,-117.674584,CAPISTRANO
+5,N,7.99,33.481685,-117.669596,AEROPUERTO
+5,S,7.99,33.481738,-117.669881,AEROPUERTO
+5,S,8.6,33.489176,-117.663917,S JUAN CREEK
+5,N,8.64,33.489561,-117.663255,S JUAN CREEK
+5,N,9.15,33.495938,-117.659127,PLAZA
+5,S,9.15,33.496001,-117.659442,PLAZA
+5,N,9.4,33.499516,-117.658278,ORTEGA  1
+5,S,9.4,33.499521,-117.658583,ORTEGA 1
+5,N,9.67,33.503442,-117.658516,ORTEGA 1
+5,N,9.69,33.503727,-117.658585,ORTEGA  2
+5,S,9.69,33.503672,-117.65892,ORTEGA  2
+5,N,10.1,33.50939,-117.660803,EL HORNO
+5,S,10.1,33.5093,-117.661127,EL HORNO
+5,N,10.4,33.513534,-117.662568,SERRA PARK
+5,S,10.4,33.513441,-117.662905,SERRA PARK
+5,N,10.7,33.517677,-117.664335,JUNIPERO SERRA
+5,S,10.7,33.517588,-117.664664,JUNIPERO SERRA
+5,N,11.05,33.52247,-117.666382,JUNIPERO SERRA
+5,S,11.05,33.522341,-117.6667,JUNIPERO SERRA
+5,N,11.06,33.522606,-117.666438,JUNIPERO SERRA
+5,N,11.37,33.526621,-117.66866,TRABUCO
+5,S,11.37,33.526418,-117.668912,TRABUCO
+5,N,11.91,33.53247,-117.674488,WILDWOOD
+5,S,11.91,33.53231,-117.674919,WILDWOOD
+5,N,12.26,33.537513,-117.674416,S OF 73
+5,S,12.4,33.539447,-117.674695,S of 73
+5,N,12.8,33.545242,-117.673098,AVERY 1
+5,S,12.8,33.545217,-117.673404,AVERY 1
+5,N,13.05,33.548817,-117.672686,AVERY PARK
+5,S,13.05,33.548822,-117.672993,AVERY PARK
+5,N,13.06,33.54896,-117.672682,AVERY PARK
+5,N,13.57,33.556241,-117.672812,CROWN VA1
+5,S,13.6,33.556667,-117.673131,CROWN VA1
+5,N,13.7,33.558096,-117.672848,CROWN VA1
+5,N,13.71,33.558239,-117.672849,CROWN VA1
+5,N,13.87,33.560549,-117.672791,CROWN VA2
+5,S,13.87,33.560545,-117.673112,CROWN VA2
+5,N,13.88,33.560694,-117.672778,CROWN VA2
+5,N,14.46,33.569099,-117.671844,FAIRCOURT
+5,S,14.46,33.569098,-117.67216,Faircourt
+5,S,15.03,33.577397,-117.671983,OSO PARK1
+5,N,15.13,33.578849,-117.67162,OSO PARK 1
+5,N,15.14,33.578995,-117.671617,OSO PARK1
+5,S,15.3,33.581316,-117.671925,OSO PARK2
+5,N,15.35,33.582052,-117.67157,OSO PARK2
+5,N,15.36,33.582197,-117.671571,OSO PARK2
+5,N,15.8,33.588603,-117.671484,CERVANTES
+5,S,15.8,33.588522,-117.671829,CERVANTES
+5,S,16.3,33.595354,-117.673779,LA PAZ 1
+5,N,16.37,33.596326,-117.674275,LA PAZ 1
+5,S,16.5,33.597607,-117.67615,LA PAZ 2
+5,N,16.51,33.597861,-117.676059,LA PAZ 1
+5,N,16.52,33.597965,-117.676194,LA PAZ 1
+5,N,16.69,33.599252,-117.678685,LA PAZ 2
+5,N,16.7,33.599314,-117.678839,LA PAZ 2
+5,S,17.26,33.602645,-117.687691,ALICIA 1
+5,N,17.43,33.604242,-117.68984,ALICIA 1
+5,N,17.44,33.604332,-117.689974,ALICIA 1
+5,S,17.49,33.604617,-117.69087,ALICIA 2
+5,N,17.63,33.606025,-117.692734,ALICIA 2
+5,N,17.64,33.606111,-117.692884,ALICIA 2
+5,N,18.17,33.60972,-117.70083,ANKERTON
+5,S,18.17,33.609505,-117.700998,ANKERTON
+5,S,18.5,33.612561,-117.705361,EL TORO 1
+5,N,18.61,33.613883,-117.706467,EL TORO 1
+5,N,18.62,33.613985,-117.706587,EL TORO 1
+5,S,18.7,33.614654,-117.707825,EL TORO 2
+5,N,18.82,33.616112,-117.70901,EL TORO 2
+5,N,18.83,33.616217,-117.709128,EL TORO 2
+5,N,19.33,33.621929,-117.714379,RED ROBIN
+5,S,19.33,33.621819,-117.714838,RED ROBIN
+5,S,19.8,33.627286,-117.719875,LAKE FOR1
+5,S,19.9,33.628454,-117.720919,LAKE FOR2
+5,N,20,33.629553,-117.721491,LAKE FOR2
+5,N,20.23,33.631998,-117.724216,OLDFIELD
+5,S,20.23,33.631888,-117.724695,OLDFIELD
+5,N,20.24,33.632102,-117.724337,OLDFIELD
+5,S,20.24,33.631989,-117.724813,OLDFIELD
+5,N,20.59,33.636144,-117.72806,BAKE 1
+5,S,20.59,33.635959,-117.728446,BAKE 1
+5,N,20.94,33.640323,-117.731437,BAKE 2
+5,S,20.95,33.640308,-117.731896,BAKE 2
+5,N,21.25,33.644068,-117.734444,At 405
+5,S,21.25,33.643978,-117.734722,At 405
+5,S,21.92,33.652076,-117.741205,ALTON 1
+5,N,22.1,33.654371,-117.742629,ALTON 2
+5,S,22.1,33.654255,-117.74294,ALTON 1
+5,S,22.14,33.654741,-117.743323,ALTON 2
+5,N,22.2,33.655581,-117.743597,ALTON 3
+5,N,22.75,33.662274,-117.748817,BARRANCA
+5,S,22.75,33.662021,-117.749253,BARRANCA
+5,N,23.05,33.66578,-117.751722,S OF 133
+5,S,23.05,33.665581,-117.75203,S OF 133
+5,S,23.1,33.66617,-117.7525,N OF 133
+5,N,23.2,33.667646,-117.753237,N OF 133
+5,S,23.2,33.667502,-117.753539,5S TO 133S/BARA
+5,S,23.3,33.668794,-117.754476,TEST MVDS
+5,N,23.5,33.671657,-117.755266,S OF SAND CNYN
+5,S,23.5,33.6716,-117.755616,S OF SAND CNYN
+5,N,23.69,33.674367,-117.75591,SAND CANYON 1
+5,S,23.69,33.674297,-117.756223,SAND CANYON 1
+5,N,24.05,33.67881,-117.759083,SAND CANYON 2
+5,S,24.05,33.67863,-117.759362,SAND CANYON 2
+5,N,24.5,33.68378,-117.76413,N OF SAND CNYN
+5,S,24.5,33.683599,-117.764425,N OF SAND CNYN
+5,S,24.84,33.687939,-117.767277,JEFFREY 1
+5,N,25.08,33.691182,-117.768954,JEFFREY 1
+5,N,25.15,33.692068,-117.769532,JEFFREY 2
+5,N,25.8,33.700287,-117.774934,YALE
+5,S,25.8,33.700148,-117.775267,YALE
+5,S,26.35,33.70706,-117.779935,CULVER 1
+5,N,26.56,33.709761,-117.781713,CULVER 1
+5,S,26.66,33.710634,-117.783134,CULVER 2
+5,N,26.81,33.712411,-117.784619,CULVER 2
+5,S,26.81,33.712186,-117.784926,CULVER 2
+5,S,27.43,33.717966,-117.793071,JAMBOREE 1
+5,N,27.55,33.719297,-117.794408,JAMBOREE 1
+5,N,27.56,33.719391,-117.794541,JAMBOREE 2
+5,N,27.7,33.720695,-117.796397,JAMBOREE 2
+5,S,27.7,33.72047,-117.796638,JAMBOREE 2
+5,N,28.1,33.724394,-117.801722,TUSTIN RANCH
+5,S,28.1,33.724136,-117.801999,TUSTIN RANCH
+5,S,28.35,33.726403,-117.805381,TUSTIN RANCH
+5,N,28.98,33.732444,-117.813606,RED HILL
+5,S,29.02,33.732587,-117.814369,RED HILL
+5,N,29.24,33.73489,-117.817068,RED HILL
+5,S,29.7,33.737386,-117.824499,NEWPORT*
+5,N,29.79,33.738115,-117.825811,NEWPORT*
+5,S,29.79,33.737856,-117.825947,NEWPORT
+5,S,29.9,33.738432,-117.827716,B ST
+5,S,29.94,33.738636,-117.828362,NEWPORT
+5,N,30,33.739183,-117.829214,B ST.
+5,N,30.2,33.740283,-117.832416,S OF 55
+5,S,30.2,33.740098,-117.832494,S OF 55*
+5,N,30.4,33.741403,-117.835585,N OF 55
+5,S,30.4,33.741219,-117.835743,N OF 55
+5,N,30.6,33.742605,-117.838695,WILLIAMS
+5,S,30.6,33.742378,-117.839015,WILLIAMS (VIADUCT)
+5,N,30.8,33.744413,-117.841283,1ST
+5,N,30.9,33.745655,-117.842095,1ST
+5,S,30.9,33.745553,-117.842538,1ST
+5,N,31,33.747013,-117.84264,N55 to N5 HOV VIA
+5,S,31,33.746922,-117.843088,S5 to S55 HOV VIA
+5,N,31.23,33.750124,-117.844061,4TH
+5,S,31.23,33.749928,-117.844652,4TH
+5,N,31.4,33.752049,-117.845939,CONCORD
+5,S,31.4,33.751759,-117.846535,CONCORD
+5,N,31.6,33.753753,-117.848788,GRAND 1
+5,S,31.6,33.753388,-117.849326,GRAND 1
+5,N,31.602,33.753768,-117.848819,GRAND 1 HOV OFF
+5,N,31.73,33.754689,-117.850781,GRAND 2
+5,N,31.9,33.755834,-117.85344,GRAND 2
+5,S,31.9,33.755475,-117.853795,GRAND 2
+5,S,32,33.756108,-117.855324,GRAND 2
+5,N,32.25,33.758263,-117.858902,17TH 1
+5,S,32.25,33.757943,-117.859225,17TH 1
+5,N,32.3,33.758644,-117.859664,17TH 1
+5,N,32.5,33.760465,-117.862379,17TH 2
+5,S,32.58,33.761104,-117.863625,17TH 2
+5,N,32.6,33.761599,-117.863369,17TH 3
+5,N,33,33.766579,-117.866456,MAIN 1
+5,S,33,33.766429,-117.866976,MAIN 1
+5,N,33.2,33.76901,-117.86784,MAIN 2
+5,S,33.2,33.768742,-117.868373,MAIN 2
+5,N,33.3,33.770299,-117.868723,BROADWAY
+5,S,33.3,33.770032,-117.869238,BROADWAY
+5,N,33.6,33.773944,-117.871893,SANTIAGO
+5,S,33.6,33.773768,-117.872316,SANTIAGO
+5,N,33.8,33.776455,-117.873886,S OF 22
+5,S,33.8,33.776289,-117.874337,S OF 22
+5,S,34,33.778694,-117.876548,5N&S La Veta
+5,S,34.1,33.779824,-117.87776,LA VETA
+5,N,34.2,33.781151,-117.878226,LA VETA
+5,S,34.2,33.780805,-117.878897,LA VETA
+5,N,34.3,33.782039,-117.879468,N OF 57
+5,S,34.3,33.781682,-117.880014,N OF 57
+5,N,34.4,33.782887,-117.880773,N OF 57*
+5,S,34.4,33.782529,-117.881218,N OF 57*
+5,N,34.6,33.785047,-117.883174,CHAPMAN 1
+5,S,34.6,33.784761,-117.883653,CHAPMAN 1
+5,N,35,33.789689,-117.887536,CHAPMAN 2
+5,N,35.1,33.790771,-117.888724,STATE COLLEGE
+5,S,35.2,33.791651,-117.890222,STATE COLLEGE
+5,N,35.4,33.793754,-117.891888,ORANGEWOOD 1
+5,S,35.4,33.793517,-117.892284,ORANGEWOOD 1
+5,N,35.6,33.795663,-117.893833,GENE AUTRY
+5,S,35.6,33.79536,-117.894336,GENE AUTRY
+5,S,36.31,33.802101,-117.901359,KATELLA
+5,N,36.4,33.803764,-117.902246,ORANGEWOOD 2
+5,S,36.4,33.803614,-117.902924,HOV GENE AUTRY OFF
+5,N,36.48,33.805074,-117.903814,KATELLA
+5,S,36.48,33.804788,-117.904254,ANAHEIM 1
+5,N,36.6,33.806644,-117.905829,ANAHEIM 2
+5,S,36.6,33.806478,-117.906207,ANAHEIM 2
+5,N,37,33.811147,-117.910643,S OF HARBOR
+5,S,37,33.810933,-117.910895,S OF HARBOR
+5,N,37.38,33.815354,-117.915054,HARBOR
+5,S,37.48,33.816263,-117.916397,HARBOR
+5,N,37.7,33.818891,-117.918657,BALL
+5,S,37.7,33.818669,-117.918922,BALL
+5,N,38,33.822186,-117.92205,SOUTH 1
+5,S,38,33.82198,-117.922328,SOUTH 1
+5,N,38.1,33.823323,-117.923123,SOUTH 2
+5,S,38.48,33.827601,-117.927279,PEPPER
+5,N,38.9,33.832016,-117.931513,LINCOLN
+5,S,39,33.832791,-117.933068,LINCOLN
+5,N,39.09,33.833722,-117.934272,LINCOLN
+5,N,39.3,33.834815,-117.938078,EUCLID 1
+5,S,39.3,33.834594,-117.938264,EUCLID 1
+5,N,39.6,33.836731,-117.943038,EUCLID 2
+5,S,39.6,33.8365,-117.943178,EUCLID 2
+5,N,40.04,33.840124,-117.949259,CRESCENT
+5,S,40.04,33.839851,-117.949454,CRESCENT
+5,N,40.5,33.843721,-117.955716,BROOKHURST 1
+5,S,40.5,33.843443,-117.955942,BROOKHURST 1
+5,N,40.7,33.845442,-117.958388,BROOKHURST 2
+5,N,40.98,33.847549,-117.962444,LA PALMA
+5,S,40.98,33.847169,-117.96276,LA PALMA
+5,N,41.34,33.850294,-117.968011,GILBERT
+5,S,41.34,33.85001,-117.968231,GILBERT
+5,N,41.8,33.854226,-117.974766,MAGNOLIA
+5,S,41.8,33.853961,-117.97494,MAGNOLIA
+5,S,41.81,33.854064,-117.975069,MAGNOLIA 91E OFF
+5,N,41.9,33.855211,-117.976025,MAGNOLIA 2
+5,S,41.9,33.854882,-117.976235,MAGNOLIA 2
+5,N,42.52,33.859271,-117.98503,ORANGETHORPE 2
+5,S,42.52,33.859063,-117.985205,ORANGETHORPE 2
+5,N,42.7,33.860615,-117.987649,N OF ORANGETHORPE
+5,S,42.7,33.860447,-117.987777,N OF ORANGETHORPE
+5,S,43,33.86282,-117.992016,SB 5 to EB 91
+5,N,43.01,33.863248,-117.991902,STANTON
+5,S,43.01,33.862901,-117.992155,STANTON
+5,N,43.28,33.865195,-117.995907,BEACH 1
+5,N,43.3,33.865349,-117.996199,BEACH 1
+5,S,43.3,33.865235,-117.996273,BEACH 1
+5,N,43.6,33.867724,-118.00058,BEACH 2
+5,S,43.6,33.867596,-118.000667,BEACH 2
+5,N,43.9,33.870031,-118.005021,Western
+5,S,43.9,33.869887,-118.005145,Western
+5,S,44.2,33.872567,-118.009266,ARTESIA 1
+5,N,44.35,33.874466,-118.011177,ARTESIA
+22,E,0.2,33.774295,-118.093885,COLLEGE PARK
+22,W,0.2,33.774472,-118.093888,COLLEGE PARK
+22,W,0.89,33.774686,-118.038174,VALLEY V1
+22,W,1,33.774521,-118.036302,VALLEY V2
+22,E,1.08,33.774261,-118.034947,VALLEY V2
+22,E,1.41,33.774239,-118.029233,VIA LOS ALISOS
+22,W,1.41,33.774397,-118.029216,VIA LOS ALISOS
+22,E,1.74,33.774214,-118.023517,SPRINGDALE CENSUS
+22,W,1.74,33.774389,-118.02351,SPRINGDALE CENSUS
+22,E,1.75,33.774214,-118.023344,SPRINGDALE
+22,W,1.75,33.77439,-118.023337,SPRINGDALE
+22,E,2.07,33.774209,-118.0178,YUMA
+22,W,2.07,33.774371,-118.017789,YUMA
+22,E,2.49,33.774494,-118.010537,KNOTT 1
+22,W,2.49,33.774652,-118.010501,KNOTT 1
+22,E,2.71,33.774003,-118.006807,GARDEN GROV
+22,W,2.71,33.774166,-118.006721,GARDEN GROV
+22,E,2.88,33.772807,-118.004149,KNOTT 2
+22,W,2.88,33.772939,-118.004084,KNOTT 2
+22,E,3.44,33.771171,-117.994688,BEACH 1
+22,W,3.45,33.771348,-117.994525,BEACH 1
+22,E,3.73,33.770894,-117.989845,BEACH 2
+22,W,3.73,33.771057,-117.989817,BEACH2
+22,E,4.03,33.770587,-117.984626,WILSON
+22,W,4.03,33.770765,-117.984576,WILSON
+22,E,4.34,33.769467,-117.979526,NEWLAND
+22,W,4.34,33.769612,-117.979437,NEWLAND
+22,E,4.6,33.767032,-117.976135,MAGNOLIA1
+22,W,4.6,33.767155,-117.976011,MAGNOLIA1
+22,E,4.99,33.765717,-117.969658,MAGNOLIA2
+22,W,4.99,33.765877,-117.96964,MAGNOLIA2
+22,E,5.57,33.765798,-117.959406,BROOKHUR1
+22,W,5.57,33.765954,-117.959407,BROOKHUR1
+22,E,5.63,33.765808,-117.958333,BROOKHUR1
+22,E,5.77,33.765809,-117.955835,BROOKHUR2
+22,W,5.77,33.765971,-117.955835,BROOKHUR2
+22,E,6.05,33.765858,-117.951027,HOPE
+22,W,6.05,33.766001,-117.951027,HOPE
+22,E,6.34,33.76591,-117.946095,WARD
+22,W,6.34,33.76605,-117.946098,WARD
+22,E,6.61,33.765949,-117.941486,TAFT
+22,W,6.61,33.766079,-117.94149,TAFT
+22,E,6.94,33.765995,-117.935763,EUCLID
+22,W,6.94,33.766144,-117.935768,EUCLID
+22,E,7.29,33.766038,-117.929691,NEWHOPE
+22,W,7.29,33.766181,-117.929696,NEWHOPE
+22,E,7.3,33.766037,-117.929518,NEWHOPE CENSUS
+22,W,7.3,33.766182,-117.929523,NEWHOPE CENSUS
+22,E,7.72,33.76705,-117.922361,HARBOR 1
+22,W,7.72,33.767174,-117.922445,HARBOR 1
+22,W,7.93,33.768341,-117.919037,HARBOR 2
+22,E,8.02,33.768707,-117.917517,HARBOR 2
+22,E,8.3,33.77033,-117.913078,PEARCE
+22,W,8.3,33.770454,-117.91315,PEARCE
+22,E,8.68,33.773077,-117.907372,GARDEN G1
+22,W,8.68,33.773193,-117.907475,GARDEN G1
+22,E,9.04,33.775838,-117.901985,GARDEN GROVE 2
+22,W,9.04,33.775964,-117.902076,GARDEN G2
+22,E,9.44,33.778512,-117.895881,LEWIS
+22,W,9.44,33.77865,-117.895924,LEWIS
+22,W,9.69,33.779085,-117.889576,CITY DRIVE
+22,E,9.7,33.778925,-117.889394,THE CITY DRIVE
+22,E,9.9,33.778902,-117.88618,HESPERIAN
+22,W,9.9,33.779058,-117.886182,HESPERIAN
+22,E,10.13,33.778903,-117.882341,BRISTOL
+22,W,10.14,33.779081,-117.882183,BRISTOL
+22,E,10.35,33.778938,-117.878722,W OF 5
+22,W,10.35,33.779104,-117.878735,W OF 5
+22,E,10.53,33.778882,-117.875647,W OF 5
+22,W,10.53,33.779039,-117.875662,W OF 5
+22,E,10.71,33.77834,-117.872382,E OF 5
+22,W,10.71,33.778461,-117.872394,E OF 5
+22,W,11.23,33.778348,-117.863135,MAIN
+22,E,11.25,33.778206,-117.862808,MAIN
+22,E,11.68,33.776567,-117.855753,GLASSELL1
+22,W,11.68,33.776676,-117.855696,GLASSELL1
+22,E,12.01,33.77516,-117.850292,GLASSELL2
+22,W,12.01,33.775279,-117.850279,GLASSELL2
+22,E,12.25,33.775624,-117.846173,CONCORD
+22,W,12.25,33.775744,-117.846201,CONCORD
+22,E,12.7,33.776625,-117.838553,TUSTIN
+22,W,12.7,33.776862,-117.838554,TUSTIN
+55,N,2.7,33.650995,-117.909275,VICTORIA1
+55,N,2.77,33.651784,-117.908497,VICTORIA1
+55,S,2.77,33.651901,-117.908673,VICTORIA1
+55,N,3.07,33.655235,-117.905264,VICTORIA2
+55,S,3.07,33.655366,-117.905456,VICTORIA2
+55,N,3.091,33.655481,-117.905044,VICTORIA2
+55,N,3.59,33.661052,-117.899494,FAIR 1
+55,S,3.59,33.661183,-117.899681,FAIR 1
+55,S,3.96,33.66532,-117.895602,FAIR 2
+55,N,3.97,33.665298,-117.895303,FAIR 2
+55,S,3.97,33.665433,-117.895493,FAIR 2
+55,N,4.58,33.671785,-117.888101,BRISTOL
+55,S,4.58,33.671928,-117.888309,BRISTOL
+55,N,4.7,33.672968,-117.886575,BAKER 1
+55,S,4.7,33.673112,-117.88678,BAKER 1
+55,N,5.06,33.676702,-117.882208,BAKER 2
+55,S,5.06,33.676789,-117.882355,BAKER 2
+55,N,5.51,33.681801,-117.877327,PAULARINO 1
+55,S,5.51,33.681935,-117.87755,PAULARINO 1
+55,N,5.8,33.685142,-117.874255,PAULARINO 2
+55,S,5.8,33.685224,-117.874399,N405 to S55
+55,N,5.87,33.685939,-117.873498,PAULARINO 2
+55,S,5.87,33.686016,-117.873635,PAULARINO 2
+55,N,6.1,33.688567,-117.870964,AIRPORT AT 55 NB
+55,N,6.35,33.691451,-117.868181,MAIN
+55,S,6.35,33.691579,-117.868353,MAIN
+55,S,6.88,33.697495,-117.862677,MACARTHU1
+55,N,6.94,33.698026,-117.861831,MACARTHU1
+55,S,7.03,33.699146,-117.861041,MACARTHU2
+55,N,7.1,33.699873,-117.860155,MACARTHU2
+55,N,7.16,33.70056,-117.8595,MACARTHU2
+55,S,7.62,33.705879,-117.854598,DYER 1
+55,N,7.85,33.708364,-117.85183,DYER 1
+55,N,8.12,33.711314,-117.848847,DYER 2
+55,S,8.12,33.711451,-117.849099,DYER 2
+55,N,8.6,33.716619,-117.843611,WARNER
+55,S,8.6,33.71674,-117.843837,WARNER
+55,S,9.19,33.723387,-117.837265,EDINGER 1
+55,N,9.41,33.726049,-117.83503,EDINGER 2
+55,N,9.84,33.732101,-117.833555,MCFADDEN
+55,S,9.84,33.73212,-117.833996,MCFADDEN
+55,N,10,33.734423,-117.833528,MCFADDEN
+55,S,10,33.734422,-117.83402,MCFADDEN
+55,N,10.2,33.737088,-117.833583,N OF 5 OFF
+55,N,10.4,33.739982,-117.83368,S OF 5
+55,S,10.4,33.739982,-117.833908,S OF 5
+55,N,10.5,33.741429,-117.833698,N OF 5
+55,S,10.5,33.741429,-117.833876,N OF 5
+55,S,10.84,33.746251,-117.83311,FOURTH 2
+55,N,11.1,33.749859,-117.831768,FOURTH 2
+55,S,11.62,33.75738,-117.831392,17TH 1
+55,N,11.74,33.759105,-117.830994,17TH 1
+55,N,12,33.762898,-117.830834,17TH 2
+55,N,12.3,33.767287,-117.830905,SANTA CLARA
+55,S,12.3,33.767289,-117.83108,SANTA CLARA
+55,N,12.7,33.773139,-117.830912,FAIRHAVEN
+55,S,12.7,33.773138,-117.831088,FAIRHAVEN
+55,S,13.51,33.784755,-117.831128,CHAPMAN 1
+55,S,13.75,33.788212,-117.831081,CHAPMAN 2
+55,N,13.9,33.790409,-117.830884,CHAPMAN 2
+55,N,14.4,33.797732,-117.831045,Walnut
+55,S,14.4,33.797729,-117.831223,Walnut
+55,N,14.6,33.800652,-117.831355,COLLINS
+55,S,14.6,33.800649,-117.831527,COLLINS
+55,N,15.22,33.809608,-117.831849,KATELLA 1
+55,S,15.22,33.809605,-117.832031,KATELLA 1
+55,N,15.4,33.812203,-117.831905,KATELLA  2
+55,N,15.8,33.817981,-117.831919,TAFT
+55,S,15.8,33.817979,-117.832098,TAFT
+55,N,16.2,33.823807,-117.83192,MEATS
+55,S,16.2,33.823807,-117.832097,MEATS
+55,S,16.71,33.830875,-117.834539,LINCOLN 1
+55,N,17.12,33.837111,-117.834992,LINCOLN 2
+55,S,17.12,33.837162,-117.835146,LINCOLN 2
+57,N,10.8,33.779069,-117.873418,RTE 22 & 5 NB
+57,S,10.8,33.777415,-117.874735,RTE 22 & 5
+57,S,11.08,33.783256,-117.880197,CHAPMAN 1
+57,N,11.1,33.78435,-117.879424,AT CHAPMAN OFF
+57,N,11.2,33.786905,-117.879753,CHAPMAN 1
+57,S,11.2,33.786694,-117.880073,AT CHAPMAN OFF
+57,N,11.22,33.787426,-117.879769,CHAPMAN 1
+57,N,11.3,33.788781,-117.879807,CHAPMAN 2
+57,N,11.39,33.790105,-117.879799,CHAPMAN 2
+57,S,11.55,33.792388,-117.879621,ORANGEWOOD
+57,N,11.68,33.794121,-117.878448,ORANGEWO1
+57,N,11.78,33.795482,-117.877848,ORANGEWO2
+57,S,12.4,33.804096,-117.88008,KATELLA 1
+57,N,12.5,33.805531,-117.880058,KATELLA 1
+57,S,12.58,33.806677,-117.880243,KATELLA 2
+57,N,12.7,33.808355,-117.879559,KATELLA 2
+57,N,12.74,33.808904,-117.879353,KATELLA 2
+57,N,12.9,33.811084,-117.878472,DOUGLASS
+57,S,12.9,33.811089,-117.878726,DOUGLASS
+57,S,13.27,33.816163,-117.876814,BALL 1
+57,N,13.3,33.816586,-117.876479,BALL 1
+57,N,13.38,33.81772,-117.876254,BALL 1
+57,S,13.45,33.818721,-117.876349,BALL 2
+57,N,13.5,33.819435,-117.87605,BALL 2
+57,N,13.56,33.820297,-117.875999,BALL 2
+57,N,13.9,33.825188,-117.875981,Wagner
+57,S,13.9,33.825192,-117.876256,Wagner
+57,N,14.4,33.83238,-117.875965,South
+57,S,14.4,33.832386,-117.876232,South
+57,S,14.65,33.835983,-117.876191,LINCOLN 1
+57,N,14.7,33.836695,-117.875951,LINCOLN 1
+57,N,14.73,33.837126,-117.87595,LINCOLN 1
+57,S,14.83,33.838577,-117.876186,LINCOLN 2
+57,N,14.9,33.839593,-117.875935,LINCOLN 2
+57,N,15.1,33.842505,-117.875902,UNDERHILL
+57,S,15.1,33.842489,-117.876207,UNDERHILL
+57,N,15.4,33.846873,-117.875931,LA PALMA
+57,S,15.4,33.846832,-117.876202,LA PALMA
+57,N,15.7,33.851227,-117.875572,N of 91
+57,S,15.7,33.851167,-117.875855,N of 91
+57,N,16.11,33.857169,-117.875678,LA JOLLA
+57,S,16.11,33.857092,-117.876106,LA JOLLA
+57,S,16.46,33.862118,-117.87757,ORANGETHOR
+57,N,16.5,33.862728,-117.877557,ORANGETHORPE
+57,N,17,33.869812,-117.879677,PLACENTIA
+57,S,17,33.869773,-117.879875,PLACENTIA
+57,S,17.18,33.872312,-117.880462,CHAPMAN 3
+57,S,17.41,33.87562,-117.880503,NUTWOOD
+57,N,17.7,33.879813,-117.880294,NUTWOOD
+57,N,17.75,33.880532,-117.88031,NUTWOOD
+57,S,18.18,33.886705,-117.880716,YORBA LI1
+57,N,18.3,33.888435,-117.880484,YORBA LI1
+57,S,18.37,33.889447,-117.880785,YORBA LI2
+57,N,18.49,33.891206,-117.880559,YORBA LI2
+57,N,18.5,33.891352,-117.880561,YORBA LI2
+57,N,18.85,33.896472,-117.880822,Bastanchury
+57,S,18.85,33.896472,-117.881094,Bastanchury
+57,N,19.1,33.900126,-117.881063,ROLLING  HILLS
+57,S,19.1,33.900128,-117.881325,ROLLING HILLS
+57,S,19.73,33.90899,-117.883224,IMPERIAL1
+57,N,19.8,33.909962,-117.883309,IMPERIAL1
+57,S,19.94,33.91201,-117.883726,IMPERIAL2
+57,N,20,33.912859,-117.883163,IMPERIAL2
+57,N,20.05,33.913565,-117.882887,IMPERIAL2
+57,S,20.7,33.92289,-117.880298,LAMBERT
+57,N,21.1,33.928813,-117.879984,LAMBERT
+57,N,21.16,33.929701,-117.879881,LAMBERT
+57,N,22,33.940872,-117.875138,TONNER
+57,S,22,33.940956,-117.875322,TONNER
+57,S,22.06,33.94149,-117.874675,TONNER
+73,N,10.59,33.545677,-117.674552,CAPISTRANO
+73,S,10.59,33.545627,-117.674915,CAPISTRANO
+73,N,10.9,33.550126,-117.675644,SORRENTO
+73,S,10.9,33.550021,-117.676025,SORRENTO
+73,N,11.22,33.554546,-117.677239,CABOT
+73,S,11.22,33.554335,-117.677553,CABOT
+73,N,11.64,33.557803,-117.683209,GREENFIELD 1
+73,S,11.64,33.557463,-117.683347,GREENFIELD 1
+73,N,11.8,33.55839,-117.68611,GREENFIELD 1
+73,S,11.8,33.558059,-117.686199,GREENFIELD 1
+73,N,12,33.559105,-117.689417,GREENFIELD 2
+73,S,12,33.558786,-117.689492,GREENFIELD 2
+73,N,12.1,33.559873,-117.690855,GREENFIELD 2
+73,S,12.1,33.559525,-117.69095,GREENFIELD 2
+73,N,12.31,33.562029,-117.693351,ROCKRIDGE
+73,S,12.31,33.56161,-117.693516,ROCKRIDGE
+73,N,12.52,33.564588,-117.695254,WESTRIDGE
+73,S,12.52,33.564154,-117.695429,WESTRIDGE
+73,N,12.83,33.567967,-117.698683,MOULTON
+73,S,12.83,33.567532,-117.698836,MOULTON
+73,S,12.9,33.568221,-117.699705,MOULTON
+73,N,13.14,33.571095,-117.702528,PACIFIC PARK
+73,S,13.14,33.570836,-117.702926,PACIFIC PARK
+73,N,13.2,33.571708,-117.703268,PACIFIC PARK
+73,S,13.2,33.571494,-117.703734,PACIFIC PARK
+73,N,13.38,33.573435,-117.705711,LA PAZ  1
+73,S,13.38,33.573158,-117.706028,LA PAZ  1
+73,N,13.6,33.574966,-117.70902,LA PAZ 1
+73,N,13.7,33.575554,-117.710558,ALICIA
+73,S,13.7,33.575244,-117.71075,ALICIA
+73,N,13.9,33.576682,-117.713695,ALICIA
+73,N,13.96,33.577091,-117.714614,ALISO 1
+73,S,13.96,33.576781,-117.714799,ALISO 1
+73,N,14.4,33.580619,-117.720958,ALISO 3
+73,S,14.4,33.580299,-117.721195,ALISO 3
+73,N,14.7,33.583441,-117.724921,ALISO 4
+73,S,14.7,33.583126,-117.725184,ALISO 4
+73,N,14.95,33.585779,-117.72822,LAGUNA HILLS
+73,S,14.95,33.585421,-117.728504,LAGUNA HILLS
+73,N,15.26,33.58748,-117.733096,GLENWOOD 1
+73,S,15.26,33.587118,-117.733325,GLENWOOD 1
+73,N,15.7,33.588223,-117.740639,EL TORO 1
+73,S,15.7,33.587924,-117.740964,EL TORO 1
+73,N,15.9,33.588765,-117.744024,EL TORO 1
+73,S,15.9,33.588528,-117.744385,EL TORO 1
+73,N,15.96,33.589091,-117.744983,EL TORO 2
+73,S,15.96,33.588855,-117.745361,EL TORO 2
+73,S,16.2,33.590166,-117.749258,EL TORO 2
+73,N,16.25,33.590678,-117.749665,EL TORO 3
+73,S,16.25,33.590342,-117.750156,EL TORO 3
+73,N,16.59,33.591624,-117.755573,EL TORO 4
+73,S,16.59,33.59118,-117.755882,EL TORO 4
+73,N,16.6,33.59165,-117.755743,EL TORO 4
+73,S,16.6,33.591203,-117.756043,EL TORO 4
+73,N,16.98,33.593909,-117.76171,RTE 133 3
+73,S,16.98,33.593514,-117.761968,RTE 133 3
+73,N,17.2,33.595997,-117.764653,RTE 133 4
+73,S,17.2,33.595564,-117.764927,RTE 133 4
+73,N,17.62,33.598966,-117.770961,S OF PM 18
+73,S,17.62,33.59849,-117.771217,S OF PM 18
+73,N,17.95,33.599693,-117.776669,AT PM 18
+73,S,17.95,33.599221,-117.776885,AT PM 18
+73,N,18.3,33.601969,-117.782151,WILDLIFE
+73,S,18.3,33.601523,-117.78232,WILDLIFE
+73,N,18.59,33.602777,-117.786992,CATALINA 1
+73,S,18.59,33.602353,-117.787181,CATALINA 1
+73,N,19.5,33.607825,-117.801253,CATALINA 2
+73,S,19.5,33.607237,-117.801595,CATALINA 2
+73,N,19.8,33.609334,-117.806039,CATALINA 3
+73,S,19.8,33.608817,-117.806455,CATALINA 3
+73,N,20.2,33.610446,-117.812765,SAND CANYON 1
+73,S,20.2,33.610123,-117.813251,SAND CANYON 1
+73,N,20.4,33.611986,-117.815658,SAND CANYON 2
+73,S,20.4,33.611697,-117.816184,SAND CANYON 2
+73,N,20.6,33.614224,-117.817786,SAND CANYON 3
+73,S,20.6,33.614005,-117.8183,SAND CANYON 3
+73,N,20.8,33.616831,-117.819255,SAND CANYON 4
+73,S,20.8,33.616669,-117.819745,SAND CANYON 4
+73,N,21.1,33.620522,-117.822056,SAND CANYON 5
+73,S,21.1,33.620205,-117.822441,SAND CANYON 5
+73,N,21.5,33.623392,-117.828171,NEWPORT COAST 1
+73,S,21.5,33.623005,-117.828338,NEWPORT COAST 1
+73,N,21.8,33.626366,-117.831907,NEWPORT COAST 2
+73,S,21.8,33.625981,-117.832171,NEWPORT COAST 2
+73,N,22.2,33.629759,-117.837358,S OF BONITA
+73,S,22.2,33.629475,-117.837662,S OF BONITA
+73,N,22.5,33.631208,-117.842241,BONITA 1
+73,S,22.5,33.630935,-117.842609,BONITA 1
+73,N,22.8,33.632697,-117.847113,BONITA 2
+73,S,22.8,33.632444,-117.847497,BONITA 2
+73,N,23.2,33.635664,-117.852976,N OF BONITA
+73,S,23.2,33.635399,-117.853396,N OF BONITA
+73,N,23.5,33.638513,-117.856881,BISON 1
+73,S,23.5,33.638307,-117.857266,BISON 1
+73,S,23.7,33.640714,-117.859193,MACARTHUR 1
+73,N,23.73,33.64132,-117.858984,BISON 2
+73,N,23.9,33.643656,-117.859875,BISON 2
+73,S,23.9,33.643454,-117.86032,BISON 2
+73,N,24.1,33.646501,-117.860508,MACARTHUR 2
+73,S,24.1,33.646308,-117.860978,MACARTHUR 2
+73,N,24.4,33.650823,-117.8614,UNIVERSITY SOUT
+73,S,24.4,33.650695,-117.861933,UNIVERSITY SOUT
+73,N,24.68,33.654387,-117.863578,MACARTHUR BLVD
+73,N,24.72,33.654806,-117.864027,JAMBOREE 1
+73,S,24.72,33.65462,-117.864335,JAMBOREE 1
+73,N,24.78,33.655401,-117.86475,JAMBOREE 2
+73,S,24.78,33.655174,-117.865011,JAMBOREE 2
+73,N,25.25,33.659804,-117.870921,ORCHID
+73,N,25.25,33.659804,-117.870921,ORCHID
+73,S,25.25,33.659515,-117.871215,ORCHID
+73,N,25.7,33.663519,-117.87634,CAMPUS
+73,S,25.7,33.66324,-117.876633,CAMPUS
+73,N,26.3,33.67012,-117.883175,S OF 55
+73,S,26.3,33.669908,-117.88342,S OF 55
+73,N,26.7,33.674893,-117.887299,N OF 55
+73,S,26.7,33.67464,-117.887584,N OF 55
+73,S,26.72,33.674875,-117.887796,S73 TO S55
+73,N,26.791,33.675963,-117.888212,N55 TO N73 On
+73,N,27.2,33.680652,-117.892318,BEAR 1
+73,S,27.2,33.68058,-117.892743,BEAR 1
+73,N,27.4,33.683052,-117.894515,BEAR 2
+73,S,27.4,33.682854,-117.894753,BEAR 2
+73,N,27.72,33.686594,-117.897754,FAIRVIEW
+73,S,27.72,33.686456,-117.898045,FAIRVIEW
+74,E,0.241,33.503721,-117.654478,Rancho Viejo
+74,W,0.241,33.503721,-117.654477,Rancho Viejo
+74,E,0.77,33.508745,-117.647923,74 EB SUNDANCE DRIVE
+74,W,0.77,33.508745,-117.647923,74 EB SUNDANCE DRIVE
+74,E,1.01,33.51067,-117.644505,CALLE ENTRADERO
+74,W,1.01,33.51067,-117.644505,CALLE ENTRADERO
+74,E,1.277,33.512477,-117.640482,Via Cordova
+74,W,1.277,33.512478,-117.640482,Via Cordova
+74,E,1.33,33.512701,-117.639615,LOCATION 14
+74,E,1.503,33.513581,-117.63683,74 WB STRAWBERRY LN
+74,E,3.39,33.522498,-117.60673,LOCATION 15
+74,W,3.39,33.522498,-117.606729,LOCATION 15
+74,E,3.98,33.518349,-117.598125,LOCATION 16
+74,W,3.98,33.518349,-117.598125,LOCATION 16
+74,E,4.79,33.514576,-117.585038,LOCATION 17
+74,W,4.79,33.514576,-117.585038,LOCATION 17
+74,E,5.95,33.515135,-117.565581,LOCATION 18
+74,W,5.95,33.515135,-117.565581,74 EB GIBBY ROAD
+74,E,6.35,33.519299,-117.560917,LOCATION 19
+74,W,6.35,33.519299,-117.560917,LOCATION 19
+74,E,6.98,33.525739,-117.55384,LOCATION 20
+74,W,6.98,33.525739,-117.55384,LOCATION 20
+74,E,7.33,33.530443,-117.551809,LOCATION 21
+74,W,7.33,33.530443,-117.551809,LOCATION 21
+74,E,8,33.539611,-117.54873,NICHOLS INSTITUTE
+74,W,8,33.539611,-117.548729,NICHOLS INSTITUTE
+74,E,8.03,33.540039,-117.548668,LOCATION 22
+74,W,8.03,33.540039,-117.548667,LOCATION 22
+74,E,8.43,33.545676,-117.549113,LOCATION 23
+74,W,8.43,33.545676,-117.549113,LOCATION 23
+74,E,9.7,33.56355,-117.546105,LOCATION 24
+74,W,9.7,33.56355,-117.546105,LOCATION 24
+74,E,10.01,33.567766,-117.544319,LOCATION 25
+74,W,10.01,33.567766,-117.544319,LOCATION 25
+91,W,0.4,33.85962,-118.035622,ORANGETHORPE
+91,E,0.45,33.856043,-117.972438,MAGNOLIA
+91,E,0.45,33.85912,-118.034919,MAGNOLIA
+91,W,0.45,33.856235,-117.972391,MAGNOLIA
+91,W,0.49,33.859047,-118.034214,ORANGETHORPE
+91,E,0.6,33.858147,-118.032578,ORANGETHORPE
+91,E,0.76,33.854376,-117.967371,GILBERT
+91,W,0.76,33.854549,-117.967351,GILBERT
+91,E,1,33.856083,-118.026091,VALLEY VIEW
+91,W,1,33.856241,-118.026045,VALLEY VIEW
+91,E,1.12,33.853799,-117.961156,BROOKHURST
+91,W,1.12,33.853951,-117.961157,BROOKHURST
+91,E,1.32,33.855843,-118.020532,HOLDER
+91,W,1.32,33.856023,-118.020493,HOLDER
+91,E,1.37,33.853902,-117.95679,BROOKHURST
+91,W,1.69,33.856065,-118.014055,KNOTT 1
+91,E,1.81,33.855903,-118.011986,KNOTT 1
+91,E,1.99,33.855926,-118.008847,KNOTT 2
+91,W,1.99,33.856125,-118.008835,KNOTT 2
+91,E,2.11,33.854017,-117.943921,EUCLID
+91,W,2.11,33.854189,-117.943925,EUCLID
+91,E,2.4,33.854029,-117.938876,EUCLID
+91,W,2.4,33.856174,-118.001703,BEACH 1
+91,E,2.58,33.855997,-117.998577,BEACH 1
+91,W,2.6,33.856177,-117.998227,BEACH 2
+91,E,2.76,33.856024,-117.995448,BEACH 2
+91,E,3,33.856035,-117.991253,E OF STANTON
+91,W,3,33.85622,-117.991257,E OF STANTON
+91,E,3.13,33.853691,-117.926206,HARBOR 1
+91,W,3.13,33.853907,-117.926204,HARBOR 1
+91,E,3.4,33.856265,-117.984237,W OF 5
+91,W,3.4,33.856869,-117.984356,W OF 5
+91,W,3.87,33.857654,-117.976502,MAGNOLIA
+91,E,3.91,33.853681,-117.912688,LEMON
+91,W,3.91,33.853895,-117.912686,LEMON
+91,E,4.18,33.853755,-117.907999,EAST
+91,W,4.18,33.853925,-117.907991,EAST
+91,E,4.35,33.853767,-117.905042,EAST
+91,E,4.77,33.853874,-117.897738,ACACIA
+91,W,4.77,33.854035,-117.897729,ACACIA
+91,E,4.8,33.85388,-117.897217,ACACIA
+91,W,4.8,33.854044,-117.897207,ACACIA
+91,E,5.14,33.854108,-117.891311,STATE COLLEGE
+91,W,5.14,33.854309,-117.891303,STATE COLLEGE
+91,E,5.35,33.853992,-117.887676,STATE COLLEGE
+91,E,5.5,33.853485,-117.885166,PLACENTIA
+91,W,5.5,33.85385,-117.885106,PLACENTIA
+91,E,6.05,33.850044,-117.876605,W OF 57
+91,W,6.05,33.850258,-117.87661,W OF 57
+91,W,6.15,33.849561,-117.875092,W OF 57
+91,E,6.3,33.848316,-117.872812,E OF 57
+91,W,6.3,33.848505,-117.872819,E OF 57
+91,W,6.42,33.847706,-117.870973,LA PALMA
+91,E,6.82,33.846226,-117.864299,LA PALMA
+91,W,6.82,33.84645,-117.864265,LA PALMA
+91,E,7.3,33.847636,-117.856212,GLASSELL1
+91,W,7.31,33.847931,-117.855999,KRAEMER 1
+91,W,7.4,33.848299,-117.854502,KRAEMER 2
+91,E,7.48,33.848381,-117.85323,GLASSELL2
+91,E,7.86,33.849953,-117.846936,GROVE
+91,W,7.86,33.850205,-117.846854,GROVE
+91,E,8.36,33.851164,-117.838568,TUSTIN
+91,W,8.36,33.851349,-117.838448,TUSTIN
+91,W,9.9,33.849084,-117.816715,LAKEVIEW1
+91,W,9.95,33.849591,-117.816135,LAKEVIEW1
+91,E,10.08,33.850669,-117.814377,LAKEVIEW1
+91,E,10.1,33.850874,-117.814133,LAKEVIEW2
+91,W,10.1,33.851107,-117.814374,LAKEVIEW 2
+91,W,10.14,33.851525,-117.813891,LAKEVIEW2
+91,E,10.27,33.852542,-117.811988,LAKEVIEW2
+91,E,10.84,33.85429,-117.80262,W OF IMPERIAL
+91,E,10.84,33.85429,-117.80262,W OF IMPERIAL
+91,W,10.84,33.854556,-117.802756,W OF IMPERIAL
+91,W,10.84,33.854556,-117.802756,W OF IMPERIAL
+91,W,11.3,33.854393,-117.794734,IMPERIAL1
+91,W,11.38,33.854368,-117.793339,IMPERIAL1
+91,E,11.49,33.854176,-117.791386,IMPERIAL1
+91,E,11.5,33.854193,-117.791214,IMPERIAL1
+91,W,11.5,33.854451,-117.791255,IMPERIAL1
+91,W,11.59,33.854713,-117.789725,IMPERIAL2
+91,W,11.6,33.854766,-117.789563,IMPERIAL2
+91,E,11.7,33.855071,-117.787923,IMPERIAL2
+91,E,12.175,33.858505,-117.780743,E OF IMPERIAL
+91,W,12.175,33.858773,-117.780816,E OF IMPERIAL
+91,E,12.762,33.862813,-117.771912,MIDPOINT
+91,W,12.762,33.863077,-117.772007,MIDPOINT
+91,E,13.349,33.867107,-117.763071,W OF SCALES
+91,W,13.349,33.867371,-117.763191,W OF SCALES
+91,W,13.349,33.867371,-117.763191,W OF SCALES
+91,W,14.2,33.869973,-117.74891,WEIR CNYN1
+91,W,14.26,33.870169,-117.747893,WEIR CNYN1
+91,E,14.4,33.870197,-117.745295,WEIR CNYN1
+91,E,14.43,33.870278,-117.744781,WEIR CNYN1
+91,W,14.43,33.870661,-117.744997,WEIR CNYN2
+91,W,14.5,33.870876,-117.743806,WEIR CNYN2
+91,E,14.6,33.870709,-117.74185,WEIR CNYN2
+91,E,14.62,33.870757,-117.741504,WEIR CNYN2
+91,E,15.11,33.869894,-117.73308,East OF WEIR
+91,E,15.11,33.869894,-117.73308,East OF WEIR
+91,W,15.11,33.870372,-117.733445,East OF WEIR
+91,W,15.11,33.870372,-117.733445,East OF WEIR
+91,E,15.793,33.866822,-117.722179,West OF GYPSUM
+91,E,15.793,33.866822,-117.722179,West OF GYPSUM
+91,W,15.793,33.867126,-117.722277,West OF GYPSUM
+91,W,16.2,33.866503,-117.715237,GYPSUM 1
+91,W,16.2,33.866503,-117.715237,GYPSUM 1
+91,E,16.4,33.866735,-117.71168,GYPSUM 1
+91,E,16.6,33.868014,-117.708584,GYPSUM 2
+91,E,17.044,33.871104,-117.701858,E OF GYPSUM
+91,E,17.044,33.871104,-117.701858,E OF GYPSUM
+91,W,17.044,33.871439,-117.701993,E OF GYPSUM
+91,W,17.044,33.871439,-117.701993,E OF GYPSUM
+91,W,17.84,33.873131,-117.689053,COAL
+91,E,18,33.871539,-117.68647,W of COAL
+91,W,18,33.872075,-117.686605,W of COAL
+91,W,18,33.872075,-117.686605,W of COAL
+91,W,18.1,33.871434,-117.685149,COAL
+91,E,18.13,33.870739,-117.6845,COAL
+91,E,18.435,33.869165,-117.68015,E OF COAL
+91,W,18.435,33.869436,-117.680194,E OF COAL
+133,S,4,33.591062,-117.759529,N of 73
+133,N,4.34,33.596159,-117.760506,LOCATION 26
+133,S,4.38,33.596721,-117.760662,LOCATION 40
+133,N,4.5,33.598397,-117.761133,AT 73
+133,N,4.79,33.602492,-117.760884,LOCATION 27
+133,S,4.8,33.60263,-117.760843,AT LAKE FOREST
+133,S,4.81,33.602769,-117.7608,LOCATION 39
+133,S,5,33.605393,-117.759925,AT 73 (BLUETOOTH)
+133,S,5.26,33.609099,-117.759202,LOCATION 38
+133,N,5.3,33.609693,-117.759225,LOCATION 28
+133,N,5.81,33.616805,-117.756717,LOCATION 29
+133,S,5.81,33.616804,-117.756718,LOCATION 37
+133,N,6,33.6197,-117.75607,AT LAKE FOREST
+133,N,6.37,33.625088,-117.757397,LOCATION 30
+133,S,6.38,33.625214,-117.75749,LOCATION 36
+133,S,6.8,33.630107,-117.761094,LOCATION 35
+133,N,6.81,33.630223,-117.761167,LOCATION 31
+133,N,7.35,33.637439,-117.760626,LOCATION 32
+133,N,7.72,33.64216,-117.761812,LOCATION 34
+133,N,7.76,33.642699,-117.761973,LOCATION 33
+133,N,8.732,33.657392,-117.757636,BARRANCA 1
+133,N,8.866,33.659542,-117.756294,BARRANCA1
+133,N,9,33.661697,-117.754967,BARRANCA1
+133,S,9,33.66184,-117.7553,BARRANCA2
+133,N,9.1,33.663305,-117.753976,BARRANCA2
+133,N,9.37,33.667495,-117.753044,S OF 5
+133,S,9.37,33.667665,-117.753428,S OF 5
+133,N,9.77,33.672836,-117.753243,N OF 5
+133,S,9.77,33.673029,-117.753623,N OF 5
+133,N,10.05,33.676181,-117.752421,MARINE WAY
+133,S,10.05,33.676396,-117.752844,MARINE WAY
+133,N,10.5,33.680812,-117.748819,N OF MARINE
+133,S,10.5,33.68106,-117.74924,N OF MARINE
+133,N,10.73,33.683166,-117.746935,S OF PM 11
+133,S,10.73,33.683386,-117.747277,S OF PM 11
+133,N,11.08,33.687048,-117.743737,AT PM 11
+133,S,11.08,33.687243,-117.744014,AT PM 11
+133,N,11.35,33.690256,-117.741045,N OF PM 11
+133,S,11.35,33.690454,-117.741328,N OF PM 11
+133,N,11.6,33.69322,-117.738544,IRVINE BLVD 1
+133,N,11.7,33.694404,-117.737541,IRVINE BLVD 1
+133,S,11.7,33.694604,-117.737826,IRVINE BLVD 1
+133,N,12,33.697907,-117.734495,IRVINE BLVD 3 (loop)
+133,N,12.05,33.698464,-117.733959,IRVINE BLVD 3
+133,S,12.05,33.698681,-117.734303,IRVINE BLVD 3
+133,N,12.42,33.70238,-117.72971,S OF PORTOLA
+133,S,12.42,33.702574,-117.730095,S OF PORTOLA
+133,N,12.77,33.706148,-117.726196,133NB to 241NB
+133,N,13.04,33.709447,-117.724497,ORANGE 1
+133,S,13.04,33.710914,-117.72449,ORANGE 1
+133,N,13.42,33.71555,-117.721749,ORANGE 2
+133,S,13.42,33.715749,-117.722121,ORANGE 2
+142,E,0.753,33.90979,-117.85227,IMPERIAL HWY & VALEN
+142,W,0.753,33.90979,-117.85227,IMPERIAL HWY & VALEN
+142,E,0.975,33.912612,-117.850473,Nasa ST
+142,W,0.975,33.912612,-117.850473,Nasa ST
+142,E,1.41,33.918427,-117.847872,BRIRCH ST & VALENCIA
+142,W,1.41,33.918427,-117.847872,BRIRCH ST & VALENCIA
+142,W,1.76,33.923865,-117.847567,LOCATION 43
+142,E,1.768,33.923881,-117.847455,CRAB CNYN & VELLAENC
+142,W,1.768,33.923881,-117.847455,CRAB CNYN & VELLAENC
+142,E,2.11,33.922967,-117.839661,LOCATION 44
+142,W,2.11,33.922967,-117.839661,LOCATION 44
+142,E,2.2,33.92256,-117.838254,CARB CNYN @ SANTA FE
+142,W,2.2,33.92256,-117.838254,CARB CNYN @ SANTA FE
+142,W,2.61,33.922131,-117.831553,LOCATION 45
+142,E,2.8,33.921188,-117.828619,CALL BOX 484
+142,W,2.8,33.921188,-117.828619,CALL BOX 484
+142,E,2.84,33.921,-117.827996,CALL BOX 484
+142,W,2.84,33.921,-117.827996,CALL BOX 484
+142,E,3.6,33.922015,-117.816185,LOCATION 46
+142,W,3.6,33.922015,-117.816184,LOCATION 46
+142,E,3.8,33.922997,-117.813142,CARBO CNYN& REBEY RD
+142,W,3.8,33.922997,-117.813141,CARBO CNYN& REBEY RD
+142,E,3.81,33.92304,-117.812985,LOCATION 47
+142,W,3.81,33.92304,-117.812984,LOCATION 47
+142,E,4.2,33.924905,-117.806951,LOCATION 48
+142,W,4.2,33.924905,-117.80695,LOCATION 48
+142,E,4.81,33.929088,-117.797865,CALL BOX 481
+142,W,4.81,33.929089,-117.797865,CALL BOX 481
+142,E,4.82,33.929206,-117.797762,LOCATION 49
+142,E,4.84,33.929441,-117.797555,CALL BOX 481
+142,W,4.84,33.929442,-117.797554,CALL BOX 481
+142,E,5.49,33.937043,-117.791973,LOCATION 51
+142,W,5.49,33.937043,-117.791973,LOCATION 51
+142,E,5.5,33.937185,-117.791945,LOCATION 50
+142,W,5.5,33.937185,-117.791945,LOCATION 50
+142,E,6,33.942293,-117.78641,LOCATION 52
+241,N,17.8,33.63353,-117.599074,ANTONIO 2
+241,S,17.8,33.633478,-117.599491,ANTONIO 2
+241,N,17.9,33.634945,-117.599584,SOLAR ANTONIO 2
+241,S,17.9,33.634852,-117.600017,SOLAR ANTONIO 2
+241,N,18.08,33.637405,-117.600814,BANDERAS
+241,S,18.3,33.640172,-117.602781,SANTA MARGUERITA
+241,N,18.7,33.645877,-117.605062,SANTA MARGUERITA
+241,S,18.7,33.645513,-117.605479,SANTA MARGUERITA
+241,N,18.8,33.647249,-117.605721,TRABUCO CREEK
+241,S,18.8,33.646855,-117.606132,TRABUCO CREEK
+241,N,19.3,33.651938,-117.612216,MELINDA
+241,S,19.3,33.651498,-117.612415,MELINDA
+241,N,19.76,33.653482,-117.620027,LOS ALISOS 1
+241,S,19.76,33.653076,-117.620208,LOS ALISOS 1
+241,N,19.86,33.654041,-117.621643,SOLAR LOS ALISOS 1
+241,S,19.86,33.653645,-117.621818,SOLAR LOS ALISOS 1
+241,N,20.13,33.655536,-117.62601,LOS ALISOS 2
+241,N,20.54,33.658363,-117.632286,UPPER OSO
+241,S,20.54,33.657968,-117.632465,UPPER OSO
+241,N,21.61,33.666889,-117.647778,PORTOLA S 1
+241,S,21.61,33.666554,-117.647927,PORTOLA S 1
+241,S,21.71,33.667139,-117.649531,SOLAR PORTOLA S1
+241,N,21.93,33.668867,-117.652743,PORTOLA S 2
+241,S,22.02,33.669094,-117.654243,PORTOLA S 2
+241,S,22.12,33.669671,-117.655768,SOLAR PORTOLA S2
+241,N,22.61,33.672946,-117.663113,LAKE FOREST
+241,S,22.61,33.67261,-117.663291,LAKE FOREST
+241,N,22.71,33.673571,-117.664667,SOLAR LAKE FOREST
+241,S,22.71,33.673218,-117.664862,SOLAR LAKE FOREST
+241,N,22.81,33.674212,-117.666212,BAKE
+241,S,22.81,33.673843,-117.666424,BAKE
+241,N,22.91,33.67491,-117.66772,SOLAR BAKE
+241,S,22.91,33.674541,-117.667938,SOLAR BAKE
+241,N,23.2,33.677671,-117.671424,ALTON 1
+241,S,23.2,33.677298,-117.671674,ALTON 1
+241,N,23.3,33.678874,-117.672365,SOLAR ALTON 1
+241,S,23.3,33.678496,-117.672636,SOLAR ALTON 1
+241,N,23.54,33.681906,-117.67436,ALTON 2
+241,S,23.54,33.681564,-117.674584,ALTON 2
+241,N,23.65,33.68325,-117.675368,SOLAR ALTON 2
+241,S,23.65,33.682914,-117.675593,SOLAR ALTON 2
+241,N,24.16,33.688336,-117.681661,N OF ALTON
+241,S,24.16,33.688049,-117.681883,N OF ALTON
+241,N,24.26,33.689253,-117.682992,SOLAR N OF ALTON
+241,S,24.26,33.68898,-117.683211,SOLAR N OF ALTON
+241,N,24.8,33.694263,-117.690124,SOUTH OF PORTOLA
+241,S,24.8,33.694005,-117.690369,SOUTH OF PORTOLA
+241,N,25.15,33.697044,-117.695163,PORTOLA N2
+241,S,25.15,33.696803,-117.695456,PORTOLA N2
+241,N,25.43,33.699076,-117.699355,TOMATO 1
+241,S,25.43,33.698857,-117.699698,TOMATO 1
+241,N,25.53,33.6998,-117.700854,SOLAR TOMATO 1
+241,S,25.53,33.699586,-117.701217,SOLAR TOMATO 1
+241,S,25.72,33.700961,-117.704109,TOMATO 2
+241,S,25.82,33.70167,-117.705642,SOLAR TOMATO 2
+241,N,25.95,33.702783,-117.707184,TOMATO 3
+241,N,26.05,33.703475,-117.708703,SOLAR TOMATO 3
+241,N,26.35,33.70568,-117.713171,TOMATO 4
+241,S,26.35,33.705538,-117.71368,TOMATO 4
+241,N,26.4,33.705999,-117.713947,SOLAR TOMATO 4
+241,S,26.4,33.705842,-117.714477,SOLAR TOMATO 4
+241,N,26.58,33.707439,-117.716523,133-1
+241,S,26.58,33.707275,-117.717092,133-1
+241,N,26.76,33.709384,-117.718562,133-2
+241,S,26.76,33.709292,-117.719081,133-2
+241,N,27.12,33.714309,-117.720349,133-3
+241,S,27.12,33.714276,-117.720884,133-3
+241,N,27.22,33.715752,-117.720286,SOLAR 133-3
+241,S,27.22,33.715736,-117.720827,SOLAR 133-3
+241,N,27.43,33.718783,-117.719917,BEE CANYON
+241,S,27.43,33.718798,-117.72046,BEE CANYON
+241,N,27.53,33.720239,-117.719726,SOLAR BEE CANYON
+241,S,27.53,33.720259,-117.72027,SOLAR BEE CANYON
+241,N,27.74,33.723299,-117.719302,N OF 133
+241,S,27.74,33.723287,-117.719567,N OF 133
+241,N,27.84,33.724757,-117.719107,SOLAR N OF 133
+241,S,27.84,33.724741,-117.719309,SOLAR N OF 133
+241,N,28.09,33.728406,-117.71867,S OF JEFFREY
+241,S,28.09,33.728394,-117.718803,S OF JEFFREY
+241,N,28.19,33.729864,-117.718482,SOLAR S OF JEFFREY
+241,S,28.19,33.729855,-117.718606,SOLAR S OF JEFFREY
+241,N,28.44,33.73351,-117.718013,N OF JEFFREY
+241,S,28.44,33.733511,-117.71813,N OF JEFFREY
+241,N,28.73,33.737751,-117.71751,N OF HAUL ROAD
+241,S,28.73,33.73777,-117.717633,N OF HAUL ROAD
+241,N,28.97,33.741266,-117.717935,HAUL-CULVER
+241,S,28.97,33.741319,-117.718081,HAUL-CULVER
+241,N,29.34,33.746087,-117.720909,S OF CULVER S
+241,S,29.34,33.746148,-117.721164,S OF CULVER S
+241,N,29.69,33.749247,-117.725783,N OF CULVER S
+241,S,29.69,33.74929,-117.726132,N OF CULVER S
+241,N,30,33.751905,-117.730214,CULVER-CULVER 1
+241,S,30,33.752046,-117.730537,CULVER-CULVER 1
+241,N,30.1,33.753089,-117.731261,SOLAR CUL-CULVER 1
+241,S,30.1,33.753272,-117.73154,SOLAR CUL-CULVER 1
+241,N,30.33,33.756276,-117.732601,CULVER-CULVER 2
+241,S,30.33,33.756517,-117.732805,CULVER-CULVER 2
+241,N,30.43,33.757747,-117.732661,SOLAR CUL-CULVER 2
+241,S,30.43,33.758005,-117.7328,SOLAR CUL-CULVER 2
+241,N,30.72,33.76201,-117.732107,S OF CULVER N
+241,S,30.72,33.762314,-117.732284,S OF CULVER N
+241,N,30.82,33.763475,-117.732264,SOLAR S OF CULVER N
+241,S,30.82,33.763785,-117.732531,SOLAR S OF CULVER N
+241,N,31.03,33.766355,-117.733568,N OF CULVER N
+241,S,31.03,33.766637,-117.734012,N OF CULVER N
+241,N,31.13,33.767528,-117.73464,SOLAR N OF CULVER N
+241,S,31.13,33.76779,-117.735146,SOLAR N OF CULVER N
+241,N,31.44,33.770424,-117.738882,S OF EOC OC
+241,S,31.44,33.770618,-117.739531,S OF EOC OC
+241,N,31.54,33.771335,-117.740279,SOLAR S OF EOC OC
+241,S,31.54,33.771541,-117.74094,SOLAR S OF EOC OC
+241,N,31.88,33.774559,-117.744897,CHAPMAN 1
+241,S,31.88,33.774682,-117.745706,CHAPMAN 1
+241,N,32.29,33.780001,-117.747616,CHAPMAN 2
+241,S,32.29,33.780289,-117.7482,CHAPMAN 2
+241,N,32.39,33.781469,-117.747519,SOLAR CHAPMAN 2
+241,S,32.39,33.781773,-117.748089,SOLAR CHAPMAN 2
+241,N,32.71,33.785685,-117.745126,CHAPMAN 3
+241,S,32.71,33.786034,-117.745698,CHAPMAN 3
+241,N,32.81,33.786792,-117.743958,SOLAR CHAPMAN 3
+241,S,32.81,33.787108,-117.744465,SOLAR CHAPMAN 3
+241,N,32.97,33.788286,-117.741766,CHAPMAN 4
+241,S,32.97,33.788553,-117.74219,CHAPMAN 4
+241,N,33.35,33.791626,-117.736347,N OF CHAPMAN
+241,S,33.35,33.791961,-117.73675,N OF CHAPMAN
+241,N,33.45,33.792513,-117.734929,SOLAR N OF CHAPMAN
+241,S,33.45,33.792829,-117.735293,SOLAR N OF CHAPMAN
+241,N,33.68,33.794622,-117.731726,S OF SANT CREEK
+241,S,33.68,33.794954,-117.732055,S OF SANT CREEK
+241,N,33.78,33.795518,-117.730244,SOLAR S OF SANT CK
+241,S,33.78,33.795858,-117.730574,SOLAR S OF SANT CK
+241,N,34.03,33.798225,-117.72693,N OF SANT CR1
+241,S,34.03,33.798558,-117.727285,N OF SANT CR1
+241,N,34.38,33.803371,-117.724852,N OF SANT CR2
+241,S,34.38,33.803726,-117.725304,N OF SANT CR2
+241,N,34.72,33.808431,-117.722969,S OF OAK
+241,S,34.72,33.808747,-117.72335,S OF OAK
+241,N,34.82,33.809812,-117.722088,SOLAR S OF OAK
+241,S,34.82,33.810123,-117.722474,SOLAR S OF OAK
+241,N,35.08,33.813341,-117.719677,N OF OAK
+241,S,35.08,33.81365,-117.720094,N OF OAK
+241,N,35.43,33.818484,-117.717431,S OF SCE OC
+241,S,35.43,33.818768,-117.71784,S OF SCE OC
+241,N,35.82,33.824439,-117.715964,WINDY RIDGE 1
+241,S,35.82,33.824805,-117.717155,WINDY RIDGE 1
+241,N,36.14,33.829413,-117.716485,WINDY RIDGE 2
+241,S,36.14,33.829789,-117.717224,WINDY RIDGE 2
+241,N,36.37,33.832975,-117.717081,WINDY RIDGE 3
+241,S,36.43,33.83428,-117.717841,WINDY RIDGE 3
+241,N,36.82,33.839984,-117.717671,W R WILDLIFE
+241,S,36.82,33.840335,-117.718159,W R WILDLIFE
+241,N,37.12,33.844639,-117.716931,N OF W R WILDLIFE 1
+241,S,37.12,33.844965,-117.717372,N OF W R WILDLIFE 1
+241,N,37.49,33.850422,-117.71672,N OF W R WILDLIFE 2
+241,S,37.49,33.850729,-117.717261,N OF W R WILDLIFE 2
+241,N,37.88,33.856526,-117.716773,N OF W R WILDLIFE 3
+241,S,37.88,33.856811,-117.717346,N OF W R WILDLIFE 3
+241,N,38.23,33.861991,-117.716374,241N TO 91E ADVANCE
+241,S,38.23,33.862266,-117.717429,S OF 91
+241,N,38.31,33.863192,-117.716721,N241 TO E91 RT 91OFF
+241,S,38.64,33.866619,-117.722022,E91 TO S241 RT 91 ON
+261,N,0.04,33.712252,-117.800349,JAMBOREE
+261,S,0.04,33.7124,-117.800638,JAMBOREE
+261,N,0.31,33.715376,-117.797696,WALNUT 2
+261,N,0.5,33.717083,-117.795181,S OF 5
+261,S,0.5,33.717315,-117.795434,S OF 5
+261,N,0.9,33.720342,-117.789435,EL CAMINO REAL
+261,S,0.9,33.720604,-117.789693,EL CAMINO REAL
+261,N,1.35,33.72367,-117.782735,IRVINE BLVD 1
+261,S,1.35,33.723902,-117.782999,IRVINE BLVD 1
+261,N,1.75,33.727564,-117.777645,IRVINE BLVD 2
+261,S,1.75,33.727725,-117.777924,IRVINE BLVD 2
+261,N,2.24,33.733387,-117.772751,IRVINE RANCH FSTRK
+261,S,2.24,33.733529,-117.773023,IRVINE RANCH FSTRK
+261,N,2.71,33.738979,-117.768065,PORTOLA  1
+261,S,2.71,33.739132,-117.768378,PORTOLA  1
+261,N,3.16,33.74498,-117.765231,PORTOLA 2
+261,S,3.16,33.745156,-117.765643,PORTOLA 2
+261,N,3.51,33.749991,-117.764319,PORTOLA 3
+261,S,3.51,33.750147,-117.764687,PORTOLA 3
+261,N,3.79,33.754,-117.763603,PORTOLA 4
+261,S,3.79,33.754147,-117.763983,PORTOLA 4
+261,N,4.14,33.758685,-117.76135,S OF UTILITY
+261,S,4.14,33.758827,-117.761762,S OF UTILITY
+261,N,4.46,33.762966,-117.759099,N OF UTILITY
+261,S,4.46,33.763114,-117.759498,N OF UTILITY
+261,N,4.7,33.766351,-117.758414,HANDY 1
+261,S,4.7,33.766516,-117.758825,HANDY 1
+261,N,4.93,33.769642,-117.75831,HANDY 2
+261,S,4.93,33.769824,-117.758692,HANDY 2
+261,N,5.27,33.77449,-117.757935,HANDY 3
+261,S,5.27,33.7747,-117.758346,HANDY 3
+261,N,5.64,33.779145,-117.75497,CHAPMAN
+261,S,5.64,33.779357,-117.75529,CHAPMAN
+405,N,0.6,33.646486,-117.741156,N OF 5
+405,S,0.6,33.646186,-117.741301,N OF 5
+405,S,0.77,33.647015,-117.744091,IRVINE C1
+405,N,0.93,33.64809,-117.746598,IRVINE C1
+405,S,0.96,33.64795,-117.747203,IRVINE C2
+405,N,1.11,33.648958,-117.74955,IRVINE C2
+405,N,1.57,33.651141,-117.757101,N OF 133
+405,S,1.57,33.650789,-117.757205,N OF 133
+405,N,1.73,33.651697,-117.759796,AT 133 N405 to S133
+405,S,1.73,33.65133,-117.759896,AT 133
+405,N,1.93,33.652204,-117.763194,S OF 133
+405,S,1.93,33.651837,-117.763315,S OF 133
+405,N,2.35,33.65368,-117.770173,LAGUNA CANYON RD
+405,S,2.35,33.653346,-117.770361,LAGUNA CANYON RD
+405,S,2.88,33.657534,-117.778085,SAND CANYON
+405,N,2.89,33.657928,-117.777952,SAND CANYON 1
+405,N,2.99,33.658747,-117.77939,SAND CANYON 2
+405,N,3.04,33.659163,-117.780107,SAND CANYON
+405,N,3.31,33.661319,-117.784046,N OF SAND CANYON
+405,S,3.31,33.660957,-117.784273,N OF SAND CANYON
+405,S,3.84,33.66293,-117.793047,JEFFREY 1
+405,N,3.86,33.663379,-117.793258,JEFFREY 1
+405,N,4.03,33.663798,-117.796176,JEFFREY 2
+405,S,4.03,33.663404,-117.796283,JEFFREY 2
+405,N,5.01,33.666407,-117.812902,YALE
+405,S,5.01,33.666093,-117.81298,YALE
+405,N,5.05,33.66659,-117.813561,SPRUCE
+405,S,5.05,33.666292,-117.813632,SPRUCE
+405,S,5.5,33.668738,-117.820882,CULVER 1
+405,N,5.55,33.669218,-117.821657,CULVER 1
+405,S,5.69,33.669737,-117.823958,CULVER 2
+405,N,5.74,33.670291,-117.824699,CULVER 2
+405,S,6.1,33.671983,-117.830554,HARVARD
+405,N,6.21,33.672851,-117.832271,HARVARD
+405,S,6.21,33.672571,-117.832329,HARVARD
+405,S,6.8,33.675863,-117.84179,JAMBOREE1
+405,N,6.85,33.676465,-117.842488,JAMBOREE1
+405,S,7.01,33.677283,-117.845019,JAMBOREE2
+405,N,7.07,33.677945,-117.845871,JAMBOREE2
+405,S,7.69,33.681922,-117.855449,MACARTHUR1
+405,N,7.73,33.682442,-117.85598,MACARTHUR 1
+405,N,8.26,33.686072,-117.864081,AIRPORT
+405,S,8.26,33.685751,-117.86423,AIRPORT
+405,N,8.35,33.686563,-117.865527,HOV AT 55N FLYOVER**
+405,S,8.35,33.686295,-117.865648,HOV 55S to 405S
+405,N,8.4,33.686795,-117.866348,RED HILL
+405,S,8.4,33.686517,-117.866474,RED HILL
+405,N,8.7,33.687449,-117.871466,ANTON
+405,S,8.9,33.687245,-117.875063,N OF 55
+405,N,9.2,33.687519,-117.880139,AVE. OF ART
+405,S,9.2,33.687254,-117.880276,AVE. OF ART
+405,N,9.46,33.687523,-117.884653,BRISTOL 1
+405,S,9.54,33.687251,-117.88618,BRISTOL 1
+405,N,9.65,33.687523,-117.887956,BRISTOL 2
+405,N,9.9,33.687569,-117.8923,BEAR
+405,S,9.9,33.687337,-117.892435,BEAR
+405,N,10.1,33.687683,-117.895773,N OF 73
+405,S,10.28,33.68748,-117.899035,FAIRVIEW
+405,S,10.3,33.687494,-117.899383,FAIRVIEW
+405,N,10.48,33.687846,-117.902375,N OF 73
+405,S,10.48,33.687582,-117.902507,N OF 73
+405,N,10.9,33.688017,-117.909664,FAIRVIEW
+405,S,11.2,33.687942,-117.915002,HARBOR 1
+405,N,11.247,33.688281,-117.915651,TEMP 1 NB
+405,N,11.4,33.688872,-117.918196,HARBOR 1
+405,S,11.5,33.689212,-117.91995,HARBOR 2
+405,S,11.53,33.689396,-117.92042,TEMP 1 SB
+405,N,11.6,33.690091,-117.921335,HYLAND
+405,N,12.16,33.693692,-117.930032,HAMPSHIRE
+405,S,12.16,33.693448,-117.930222,HAMPSHIRE
+405,S,12.5,33.695653,-117.9355,EUCLID
+405,S,12.63,33.696514,-117.937506,TEMP 2 SB
+405,N,12.712,33.697258,-117.938594,TEMP 2 NB
+405,N,12.85,33.69816,-117.940729,EUCLID
+405,N,13.122,33.699916,-117.94495,LOCATION 5013 NB
+405,S,13.123,33.699731,-117.94515,LOCATION 5013 SB
+405,S,13.3,33.700854,-117.947913,TALBERT
+405,N,13.74,33.704947,-117.953701,BROOKHUR1
+405,S,13.81,33.705479,-117.954762,BROOKHURST2
+405,N,13.97,33.707312,-117.956518,BROOKHUR2
+405,S,14.539,33.712977,-117.963712,TMS 5014 SB
+405,N,14.571,33.71347,-117.963904,TMS 5014 NB
+405,S,14.72,33.714839,-117.965935,WARNER
+405,N,14.82,33.716027,-117.966959,WARNER
+405,N,15,33.717879,-117.969162,405 TEST
+405,S,15,33.717709,-117.969386,405 TEST
+405,S,15.16,33.71936,-117.971343,MAGNOLIA 1
+405,N,15.17,33.719628,-117.971245,MAGNOLIA1
+405,N,15.39,33.721879,-117.973953,MAGNOLIA2
+405,N,15.66,33.724553,-117.977379,TMS 5015 NB
+405,S,15.722,33.724961,-117.978434,TMS 5015 SB
+405,N,16.025,33.727931,-117.982268,TMS 5016 NB
+405,S,16.26,33.72995,-117.98561,EDINGER
+405,N,16.52,33.732527,-117.988885,BEACH 1
+405,S,16.6,33.733102,-117.990146,BEACH 1
+405,N,16.76,33.734759,-117.992088,BEACH 2
+405,S,16.978,33.736657,-117.995139,TMS 5016 SB
+405,S,17.66,33.743534,-118.003642,BOLSA
+405,N,17.92,33.746378,-118.00667,GOLDEN WEST
+405,S,17.98,33.7468,-118.007585,GOLDEN WEST
+405,S,18,33.747007,-118.007829,GOLDEN WEST
+405,S,18.689,33.754062,-118.016295,TMS 5017 SB
+405,N,18.696,33.754349,-118.016167,TMC 5017 NB
+405,S,19.05,33.757778,-118.020707,WESTMINSTER
+405,N,19.24,33.759918,-118.022852,WESTMINISTER
+405,N,19.631,33.763926,-118.027646,TMS 5018 NB
+405,S,19.641,33.763839,-118.02796,TMS 5018 SB
+405,S,20.336,33.770948,-118.036509,TMS 2240 SB
+405,N,20.341,33.771206,-118.036355,TMS 2240 NB
+405,S,20.69,33.77403,-118.041297,BOLSA CHICA
+405,S,21.032,33.774412,-118.047045,TMS 2417 SB
+405,N,21.039,33.774701,-118.046955,TMS 2417 NB
+405,S,21.519,33.774204,-118.055374,TMS 5020 SB
+405,N,21.552,33.774476,-118.055894,TMS 5020 NB
+405,S,21.864,33.77419,-118.061407,TMS 5021 SB
+405,N,21.912,33.774467,-118.062183,TMS 5021 NB
+405,S,22.54,33.774257,-118.073289,SEAL BEACH 1
+405,N,22.55,33.774552,-118.073325,SEAL BEACH 1
+405,N,22.887,33.774547,-118.079243,TMS 268
+405,N,23,33.774554,-118.08123,S OF OLD RANCH PKWY
+405,S,23.093,33.77433,-118.083008,TMS 2241 SB
+405,N,23.12,33.774556,-118.083341,S OF 7TH ST
+405,S,23.12,33.77433,-118.083482,S OF 7TH ST
+405,N,23.133,33.774562,-118.083569,TMS 2241 NB
+405,N,23.19,33.774676,-118.084559,N OF 7TH ST
+405,S,23.19,33.774466,-118.084694,N OF 7TH ST
+405,S,23.262,33.774743,-118.085896,TMS 5022 SB
+405,N,23.62,33.778545,-118.089644,SALMON
+405,S,23.62,33.778421,-118.089913,SALMON
+405,N,23.641,33.778827,-118.089745,TMS 2218 NB
+405,S,23.646,33.778783,-118.090036,TMS 2218 SB
+405,S,23.7,33.779548,-118.090242,E22-N405
+405,S,23.919,33.782664,-118.091096,TMS 2542 SB
+405,N,23.92,33.782737,-118.090834,S OF 605
+405,S,23.92,33.782679,-118.0911,S OF 605
+405,N,23.929,33.782868,-118.090872,TMS 2542 NB
+405,N,24.12,33.785381,-118.092441,N OF 605
+405,S,24.12,33.785289,-118.092624,N OF 605
+605,N,1.1,33.799174,-118.084562,N OF 405
+605,S,1.1,33.799259,-118.084891,N OF 405
+605,N,1.26,33.80097,-118.082822,KATELLA 1
+605,S,1.26,33.80104,-118.083136,KATELLA 1
+605,S,1.49,33.804047,-118.081675,KATELLA 2
Index: trunk/webapps/cptms/data_layers/cctvToGeoJson.awk
===================================================================
--- trunk/webapps/cptms/data_layers/cctvToGeoJson.awk	(revision 317)
+++ trunk/webapps/cptms/data_layers/cctvToGeoJson.awk	(revision 317)
@@ -0,0 +1,15 @@
+# Convert a csv with cctv location data to a geojson file
+# This was used for a one-off task to convert the static csv file we manually produced into json
+# Sample invocation:  awk -F',' -f awkpgm1 filename
+
+//{printf "  {\n  \"type\": \"Feature\",\n  \"id\": \"%s\",\n  \"geometry\":\n      {\n      \"type\": \"Point\",\n      \"coordinates\": [%s,%s]\n      },\n  \"properties\":\n      {\n      \"locationName\":\"%s\",\n      \"nearVDS\":\"%s\" \n      }\n  },\n", $7,$4,$5,$6,$8 }
+
+#
+# When finished prepend:
+#{
+#  "type": "FeatureCollection",
+#  "features": [
+# 
+# and Append:
+#  ] }
+
Index: trunk/webapps/cptms/data_layers/csvToJson.awk
===================================================================
--- trunk/webapps/cptms/data_layers/csvToJson.awk	(revision 318)
+++ trunk/webapps/cptms/data_layers/csvToJson.awk	(revision 318)
@@ -0,0 +1,13 @@
+# Convert a csv with postmile and coordinates to a json file
+# Note it switches lat/long to long/lat
+# Sample invocation:  awk -F',' -f awkpgm1 filename
+//{printf "  {\n  \"type\": \"Feature\",\n  \"id\": \"%s\",\n    \"geometry\":\n      {\n      \"type\": \"Point\",\n      \"coordinates\": [%s,%s]\n      },\n      \"properties\": {\"street\":\"%s\", \"color\":\"%s\", \"perpx\":\"%s\", \"perpy\":\"%s\"}\n  },\n", $1, $3,$2,$4,$7,$5,$6 }
+#
+# When finished prepend:
+#{
+#  "type": "FeatureCollection",
+#  "features": [
+# 
+# and Append:
+#  ] }
+
Index: trunk/webapps/cptms/data_layers/vds_from_highwaysmap.csv
===================================================================
--- trunk/webapps/cptms/data_layers/vds_from_highwaysmap.csv	(revision 317)
+++ trunk/webapps/cptms/data_layers/vds_from_highwaysmap.csv	(revision 317)
@@ -0,0 +1,759 @@
+5,N,0.65,4 S. LUIS REY
+5,N,1.26,4 MAGDALENA
+5,N,1.83,4 EL CAMINO REAL
+5,N,2.47,4 PRESIDIO
+5,N,2.8,4 PALIZADA
+5,N,3.23,4 PICO 1
+5,N,3.56,4 PICO 2
+5,N,5.4,4 N OF VAQUERO
+5,N,5.73,4 ESTRELLA1
+5,N,5.89,5 ESTRELLA2
+5,N,6.47,4 SACRAMENTO
+5,N,6.91,4 LAS RAMBLES
+5,N,7.46,4 CAPISTRANO
+5,N,7.99,4 AEROPUERTO
+5,N,8.64,4 S JUAN CREEK
+5,N,9.15,4 PLAZA
+5,N,9.69,4 ORTEGA  2
+5,N,10.1,5 EL HORNO
+5,N,10.4,5 SERRA PARK
+5,N,11.05,5 JUNIPERO SERRA
+5,N,11.37,6 TRABUCO
+5,N,11.91,6 WILDWOOD
+5,N,12.26,4 S OF 73
+5,N,13.05,4 AVERY PARK
+5,N,13.7,4 CROWN VA1
+5,N,13.87,4 CROWN VA2
+5,N,15.13,4 OSO PARK1
+5,N,15.35,4 OSO PARK2
+5,N,16.51,4 LA PAZ 1
+5,N,16.69,4 LA PAZ 2
+5,N,17.43,4 ALICIA 1
+5,N,17.63,5 ALICIA 2
+5,N,18.61,4 EL TORO 1
+5,N,20,5 LAKE FOR2
+5,N,20.24,5 OLDFIELD
+5,N,20.59,6 BAKE 1
+5,N,20.94,3 BAKE 2
+5,N,21.25,3 At 405
+5,N,22.1,5 ALTON 2
+5,N,22.2,5 ALTON 3
+5,N,22.75,5 BARRANCA
+5,N,23.05,4 S OF 133
+5,N,23.2,4 N OF 133
+5,N,23.5,6 S OF SAND CNYN
+5,N,24.05,5 SAND CANYON 2
+5,N,24.5,5 N OF SAND CNYN
+5,N,25.08,5 JEFFREY 1
+5,N,25.15,5 JEFFREY 2
+5,N,25.8,5 YALE
+5,N,26.56,5 CULVER 1
+5,N,26.81,6 CULVER 2
+5,N,27.55,3 JAMBOREE 1
+5,N,27.56,3 JAMBOREE 2
+5,N,28.1,5 TUSTIN RANCH
+5,N,29.24,5 RED HILL
+5,N,29.79,5 NEWPORT*
+5,N,30,6 B ST.
+5,N,30.2,5 S OF 55
+5,N,30.4,4 N OF 55
+5,N,30.8,5 1ST
+5,N,31.23,5 4TH
+5,N,31.4,6 CONCORD
+5,N,31.6,5 GRAND 1
+5,N,31.73,5 GRAND 2
+5,N,32.3,5 17TH 1
+5,N,32.5,5 17TH 2
+5,N,32.6,5 17TH 3
+5,N,33.2,5 MAIN 2
+5,N,33.8,4 S OF 22
+5,N,34.2,4 LA VETA
+5,N,34.3,4 N OF 57
+5,N,35,5 CHAPMAN 2
+5,N,35.1,5 STATE COLLEGE
+5,N,35.6,4 GENE AUTRY
+5,N,36.4,4 ORANGEWOOD 2
+5,N,36.48,4 KATELLA
+5,N,36.6,4 ANAHEIM 2
+5,N,37,5 S OF HARBOR
+5,N,37.38,4 HARBOR
+5,N,37.7,4 BALL
+5,N,38.1,4 SOUTH 2
+5,N,38.9,5 LINCOLN
+5,N,39.3,4 EUCLID 1
+5,N,39.6,4 EUCLID 2
+5,N,40.04,5 CRESCENT
+5,N,40.5,4 BROOKHURST 1
+5,N,40.7,4 BROOKHURST 2
+5,N,40.98,5 LA PALMA
+5,N,43.01,3 STANTON
+5,S,0.64,4 S LUIS REY
+5,S,0.9,4 CALAFIA
+5,S,1.26,4 MAGDALENA
+5,S,1.49,4 EL CAMINO REAL
+5,S,2.14,4 PRESIDIO
+5,S,2.8,4 PALIZADA
+5,S,3.23,5 PICO 1
+5,S,3.56,4 PICO 2
+5,S,5.4,4 N OF VAQUERO
+5,S,5.59,4 ESTRELLA
+5,S,6.47,5 SACRAMENTO
+5,S,6.6,5 RTE 1 SB
+5,S,7.46,5 CAPISTRANO
+5,S,7.99,5 AEROPUERTO
+5,S,8.6,4 S JUAN CREEK
+5,S,9.15,4 PLAZA
+5,S,9.4,4 ORTEGA 1
+5,S,10.1,5 EL HORNO
+5,S,10.4,5 SERRA PARK
+5,S,10.7,5 JUNIPERO SERRA
+5,S,11.37,6 TRABUCO
+5,S,11.91,6 WILDWOOD
+5,S,12.4,4 S of 73
+5,S,12.8,4 AVERY 1
+5,S,13.6,4 CROWN VA1
+5,S,15.03,4 OSO PARK1
+5,S,15.3,4 OSO PARK2
+5,S,16.3,4 LA PAZ 1
+5,S,16.5,4 LA PAZ 2
+5,S,17.26,5 ALICIA 1
+5,S,17.49,4 ALICIA 2
+5,S,18.5,5 EL TORO 1
+5,S,18.7,5 EL TORO 2
+5,S,19.8,6 LAKE FOR1
+5,S,19.9,6 LAKE FOR2
+5,S,20.24,5 OLDFIELD
+5,S,20.59,6 BAKE 1
+5,S,20.95,6 BAKE 2
+5,S,21.25,3 At 405
+5,S,22.1,3 ALTON 1
+5,S,22.14,4 ALTON 2
+5,S,22.75,4 BARRANCA
+5,S,23.05,5 S OF 133
+5,S,23.1,3 N OF 133
+5,S,23.5,6 S OF SAND CNYN
+5,S,23.69,5 SAND CANYON 1
+5,S,24.05,5 SAND CANYON 2
+5,S,24.5,5 N OF SAND CNYN
+5,S,24.84,5 JEFFREY 1
+5,S,25.8,5 YALE
+5,S,26.35,6 CULVER 1
+5,S,26.66,5 CULVER 2
+5,S,27.43,6 JAMBOREE 1
+5,S,27.7,2 JAMBOREE 2
+5,S,28.1,5 TUSTIN RANCH
+5,S,29.02,5 RED HILL*
+5,S,29.7,6 NEWPORT*
+5,S,29.9,4 B ST
+5,S,30.2,4 S OF 55*
+5,S,30.4,5 N OF 55
+5,S,30.9,5 1ST
+5,S,31.23,5 4TH
+5,S,31.4,6 CONCORD
+5,S,31.6,6 1GRAND 1
+5,S,31.9,5 GRAND 2
+5,S,32.25,5 17TH 1
+5,S,33,5 MAIN 1
+5,S,33.2,6 MAIN 2
+5,S,33.3,4 BROADWAY
+5,S,33.8,4 S OF 22
+5,S,34.1,5 LA VETA
+5,S,34.3,5 N OF 57
+5,S,34.6,6 CHAPMAN 1
+5,S,35.2,5 STATE COLLEGE
+5,S,35.4,4 ORANGEWOOD 1
+5,S,35.6,4 GENE AUTRY
+5,S,36.31,4 KATELLA
+5,S,36.48,4 ANAHEIM 1
+5,S,36.6,5 ANAHEIM 2
+5,S,37,5 S OF HARBOR
+5,S,37.48,4 HARBOR
+5,S,38,4 SOUTH 1
+5,S,38.48,4 PEPPER
+5,S,39,4 LINCOLN
+5,S,39.3,4 EUCLID 1
+5,S,39.6,4 EUCLID 2
+5,S,40.04,5 CRESCENT
+5,S,40.5,4 BROOKHURST 1
+5,S,40.98,6 LA PALMA
+5,S,43.01,3 STANTON
+22,E,1.08,3 VALLEY V2
+22,E,1.75,3 SPRINGDALE
+22,E,2.49,3 KNOTT 1
+22,E,2.88,3 KNOTT 2
+22,E,3.44,3 BEACH 1
+22,E,3.73,3 BEACH 2
+22,E,4.6,3 MAGNOLIA1
+22,E,4.99,3 MAGNOLIA2
+22,E,5.63,3 BROOKHUR1
+22,E,5.77,3 BROOKHUR2
+22,E,6.94,3 EUCLID
+22,E,7.29,3 NEWHOPE
+22,E,8.02,3 HARBOR 2
+22,E,8.68,3 GARDEN G1
+22,E,9.04,3 GARDEN G2
+22,E,9.7,4 THE CITY DRIVE
+22,E,10.13,4 BRISTOL
+22,E,10.53,4 W OF 5
+22,E,10.71,3 E OF 5
+22,E,11.25,3 MAIN
+22,E,11.68,3 GLASSELL1
+22,E,12.01,3 GLASSELL2
+22,W,0.89,3 VALLEY V1
+22,W,1,3 VALLEY V2
+22,W,1.75,3 SPRINGDALE
+22,W,2.49,3 KNOTT 1
+22,W,2.88,3 KNOTT 2
+22,W,3.45,3 BEACH 1
+22,W,3.73,3 BEACH 2
+22,W,4.6,3 MAGNOLIA1
+22,W,4.99,3 MAGNOLIA2
+22,W,5.57,3 BROOKHUR1
+22,W,6.94,4 EUCLID
+22,W,7.29,4 NEWHOPE
+22,W,7.72,3 HARBOR 1
+22,W,7.93,3 HARBOR 2
+22,W,8.68,3 GARDEN G1
+22,W,9.04,3 GARDEN G2
+22,W,9.69,4 CITY DRIVE
+22,W,9.9,3 HESPERIAN
+22,W,10.14,3 BRISTOL
+22,W,10.53,3 W OF 5
+22,W,10.71,3 E OF 5
+22,W,11.23,3 MAIN
+22,W,11.68,3 GLASSELL1
+22,W,12.01,3 GLASSELL2
+22,W,12.7,3 TUSTIN
+55,N,2.77,4 VICTORIA1
+55,N,3.07,4 VICTORIA2
+55,N,3.59,4 FAIR 1
+55,N,3.97,4 FAIR 2
+55,N,4.58,4 BRISTOL
+55,N,4.7,3 BAKER 1
+55,N,5.06,3 BAKER 2
+55,N,5.51,4 PAULARINO 1
+55,N,5.87,3 PAULARINO 2
+55,N,6.94,4 MACARTHU1
+55,N,7.1,4 MACARTHU2
+55,N,7.85,4 DYER 1
+55,N,8.12,3 DYER 2
+55,N,9.41,4 EDINGER 2
+55,N,9.84,4 MCFADDEN
+55,N,10.2,4 N OF 5 OFF
+55,N,10.4,3 S OF 5
+55,N,10.5,3 N OF 5
+55,N,11.1,4 FOURTH 2
+55,N,11.74,4 17TH 1
+55,N,12,4 17TH 2
+55,N,12.7,4 FAIRHAVEN
+55,N,13.9,4 CHAPMAN 2
+55,N,14.4,5 Walnut
+55,N,14.6,5 COLLINS
+55,N,15.22,4 KATELLA
+55,N,15.4,5 KATELLA  2
+55,N,15.8,4 TAFT
+55,N,16.2,4 MEATS
+55,N,17.12,4 LINCOLN 2
+55,S,2.77,4 VICTORIA1
+55,S,3.07,3 VICTORIA2
+55,S,3.59,4 FAIR 1
+55,S,3.97,4 FAIR 2
+55,S,4.58,4 BRISTOL
+55,S,4.7,3 BAKER 1
+55,S,5.06,3 BAKER 2
+55,S,5.51,4 PAULARINO 1
+55,S,5.87,3 PAULARINO 2
+55,S,6.88,4 MACARTHU1
+55,S,7.03,3 MACARTHU2
+55,S,7.62,4 DYER 1
+55,S,8.12,4 DYER 2
+55,S,9.19,4 EDINGER 1
+55,S,9.84,4 MCFADDEN
+55,S,10.4,4 S OF 5
+55,S,10.5,3 N OF 5
+55,S,11.62,4 17TH 1
+55,S,12.7,3 FAIRHAVEN
+55,S,13.51,5 CHAPMAN 1
+55,S,13.75,4 CHAPMAN 2
+55,S,14.4,5 Walnut
+55,S,14.6,5 COLLINS
+55,S,15.8,4 TAFT
+55,S,16.2,4 MEATS
+55,S,16.71,4 LINCOLN 1
+57,N,11.1,5 AT CHAPMAN OFF
+57,N,11.22,5 CHAPMAN 1
+57,N,11.39,6 CHAPMAN 2
+57,N,11.68,5 ORANGEWO1
+57,N,11.78,5 ORANGEWO2
+57,N,12.5,4 KATELLA 1
+57,N,12.74,4 KATELLA 2
+57,N,13.38,4 BALL 1
+57,N,13.56,4 BALL 2
+57,N,13.9,4 Wagner
+57,N,14.4,4 South
+57,N,14.73,4 LINCOLN 1
+57,N,14.9,5 LINCOLN 2
+57,N,15.1,5 UNDERHILL
+57,N,15.4,3 LA PALMA
+57,N,16.5,5 ORANGETHORPE
+57,N,17.75,4 NUTWOOD
+57,N,18.3,4 YORBA LI1
+57,N,18.49,4 YORBA LI2
+57,N,18.85,4 Bastanchury
+57,N,19.1,4 ROLLING HILLS
+57,N,19.8,4 IMPERIAL1
+57,N,20.05,4 IMPERIAL2
+57,N,21.16,4 LAMBERT
+57,N,22,4 TONNER
+57,S,10.8,2 RTE 22 & 5
+57,S,11.08,4 CHAPMAN 1
+57,S,11.55,4 ORANGEWOOD
+57,S,12.4,4 KATELLA 1
+57,S,12.58,4 KATELLA 2
+57,S,13.27,4 BALL 1
+57,S,13.45,4 BALL 2
+57,S,13.9,5 Wagner
+57,S,14.4,5 South
+57,S,14.65,5 LINCOLN 1
+57,S,14.83,5 LINCOLN 2
+57,S,15.1,6 UNDERHILL
+57,S,16.46,5 ORANGETHOR
+57,S,17.18,4 CHAPMAN 3
+57,S,17.41,4 NUTWOOD
+57,S,18.18,5 YORBA LI1
+57,S,18.37,4 YORBA LI2
+57,S,18.85,4 Bastanchury
+57,S,19.1,4 ROLLING HILLS
+57,S,19.73,4 IMPERIAL1
+57,S,19.94,4 IMPERIAL2
+57,S,22.06,4 TONNER
+73,N,10.59,3 CAPISTRANO
+73,N,10.9,3 SORRENTO
+73,N,11.22,3 CABOT
+73,N,11.64,3 GREENFIELD 1
+73,N,12,3 GREENFIELD 2
+73,N,12.31,3 ROCKRIDGE
+73,N,12.52,3 WESTRIDGE
+73,N,12.83,3 MOULTON
+73,N,13.14,3 PACIFIC PARK
+73,N,13.6,3 LA PAZ 1
+73,N,13.7,5 ALICIA
+73,N,13.96,4 ALISO 1
+73,N,14.4,3 ALISO 3
+73,N,14.7,4 ALISO 4
+73,N,14.95,4 LAGUNA HILLS
+73,N,15.26,4 GLENWOOD 1
+73,N,15.7,3 EL TORO 1
+73,N,15.96,3 EL TORO 2
+73,N,16.25,3 EL TORO 3
+73,N,16.59,3 EL TORO 4
+73,N,16.98,3 RTE 133 3
+73,N,17.2,4 RTE 133 4
+73,N,17.62,4 S OF PM 18
+73,N,17.95,4 AT PM 18
+73,N,18.3,4 WILDLIFE
+73,N,18.59,5 CATALINA 1
+73,N,19.5,3 CATALINA 2
+73,N,19.8,3 CATALINA 3
+73,N,20.2,4 SAND CANYON 1
+73,N,20.4,3 SAND CANYON 2
+73,N,20.6,3 SAND CANYON 3
+73,N,20.8,3 SAND CANYON 4
+73,N,21.1,3 SAND CANYON 5
+73,N,21.5,3 NEWPORT COAST 1
+73,N,21.8,3 NEWPORT COAST 2
+73,N,22.2,4 S OF BONITA
+73,N,22.5,3 BONITA 1
+73,N,22.8,3 BONITA 2
+73,N,23.2,4 N OF BONITA
+73,N,23.5,4 BISON 1
+73,N,23.9,3 BISON 2
+73,N,24.1,3 MACARTHUR 2
+73,N,24.4,4 UNIVERSITY SOUT
+73,N,24.72,3 JAMBOREE 1
+73,N,24.78,3 JAMBOREE 2
+73,N,25.25,4 ORCHID
+73,N,25.7,3 CAMPUS
+73,N,26.3,3 S OF 55
+73,N,26.7,2 N OF 55
+73,N,27.4,3 BEAR 2
+73,N,27.72,3 FAIRVIEW
+73,S,10.59,3 CAPISTRANO
+73,S,10.9,3 SORRENTO
+73,S,11.22,3 CABOT
+73,S,11.64,3 GREENFIELD 1
+73,S,12,4 GREENFIELD 2
+73,S,12.31,4 ROCKRIDGE
+73,S,12.52,4 WESTRIDGE
+73,S,12.83,4 MOULTON
+73,S,13.14,3 PACIFIC PARK
+73,S,13.38,3 LA PAZ  1
+73,S,13.7,3 ALICIA
+73,S,13.96,3 ALISO 1
+73,S,14.4,4 ALISO 3
+73,S,14.7,3 ALISO 4
+73,S,14.95,3 LAGUNA HILLS
+73,S,15.26,4 GLENWOOD 1
+73,S,15.7,3 EL TORO 1
+73,S,15.96,3 EL TORO 2
+73,S,16.25,3 EL TORO 3
+73,S,16.59,3 EL TORO 4
+73,S,16.98,3 RTE 133 3
+73,S,17.2,3 RTE 133 4
+73,S,17.62,3 S OF PM 18
+73,S,17.95,3 AT PM 18
+73,S,18.3,4 WILDLIFE
+73,S,18.59,5 CATALINA 1
+73,S,19.5,3 CATALINA 2
+73,S,19.8,3 CATALINA 3
+73,S,20.2,5 SAND CANYON 1
+73,S,20.4,4 SAND CANYON 2
+73,S,20.6,4 SAND CANYON 3
+73,S,20.8,4 SAND CANYON 4
+73,S,21.1,4 SAND CANYON 5
+73,S,21.5,4 NEWPORT COAST 1
+73,S,21.8,4 NEWPORT COAST 2
+73,S,22.2,4 S OF BONITA
+73,S,22.5,4 BONITA 1
+73,S,22.8,4 BONITA 2
+73,S,23.2,4 N OF BONITA
+73,S,23.5,4 BISON 1
+73,S,23.7,3 MACARTHUR 1
+73,S,23.9,3 BISON 2
+73,S,24.1,3 MACARTHUR 2
+73,S,24.4,3 UNIVERSITY SOUT
+73,S,24.72,3 JAMBOREE 1
+73,S,24.78,3 JAMBOREE 2
+73,S,25.25,3 ORCHID
+73,S,25.7,3 CAMPUS
+73,S,26.3,2 S OF 55
+73,S,26.7,2 N OF 55
+73,S,27.2,3 BEAR 1
+73,S,27.72,2 FAIRVIEW
+91,E,0.45,3 MAGNOLIA
+91,E,0.6,4 ORANGETHORPE
+91,E,0.76,3 GILBERT
+91,E,1,4 VALLEY VIEW
+91,E,1.37,4 BROOKHURST
+91,E,1.81,4 KNOTT 1
+91,E,1.99,4 KNOTT 2
+91,E,2.4,4 EUCLID
+91,E,2.58,4 BEACH 1
+91,E,2.76,4 BEACH 2
+91,E,3.91,4 LEMON
+91,E,4.18,4 EAST
+91,E,4.35,4 EAST
+91,E,4.77,4 ACACIA
+91,E,5.35,4 STATE COLL
+91,E,6.05,3 W OF 57
+91,E,6.3,4 E OF 57
+91,E,6.82,4 LA PALMA
+91,E,7.3,3 GLASSELL1
+91,E,7.48,3 GLASSELL2
+91,E,7.86,4 GROVE
+91,E,8.36,4 TUSTIN
+91,E,10.08,5 LAKEVIEW1
+91,E,10.27,5 LAKEVIEW2
+91,E,10.84,5 W OF IMPERIAL
+91,E,11.49,4 IMPERIAL1
+91,E,11.7,4 IMPERIAL2
+91,E,12.175,4 E OF IMPERIAL
+91,E,12.762,4 MIDPOINT
+91,E,13.349,4 W OF SCALES
+91,E,14.43,4 WEIR CNYN1
+91,E,14.62,4 WEIR CNYN2
+91,E,15.11,5 East OF WEIR
+91,E,15.793,4 West OF GYPSUM
+91,E,16.4,4 GYPSUM 1
+91,E,16.6,4 GYPSUM 2
+91,E,17.044,5 E OF GYPSUM
+91,E,18.13,4 COAL
+91,E,18.435,4 E OF COAL
+91,W,0.49,4 ORANGETHORPE
+91,W,0.76,4 GILBERT
+91,W,1,4 VALLEY VIEW
+91,W,1.12,4 BROOKHURST
+91,W,1.69,4 KNOTT 1
+91,W,1.99,4 KNOTT 2
+91,W,2.11,4 EUCLID
+91,W,2.4,4 BEACH 1
+91,W,2.6,4 BEACH 2
+91,W,3.13,4 HARBOR 1
+91,W,3.87,3 MAGNOLIA
+91,W,3.91,4 LEMON
+91,W,4.18,3 EAST
+91,W,4.77,4 ACACIA
+91,W,5.14,3 STATE COLLEGE
+91,W,6.15,3 W OF 57
+91,W,6.3,3 E OF 57
+91,W,6.42,5 LA PALMA
+91,W,7.31,5 KRAEMER 1
+91,W,7.4,3 KRAEMER 2
+91,W,7.86,5 GROVE
+91,W,8.36,4 TUSTIN
+91,W,9.95,5 LAKEVIEW1
+91,W,10.14,5 LAKEVIEW2
+91,W,10.84,5 W OF IMPERIAL
+91,W,11.38,5 IMPERIAL1
+91,W,11.59,4 IMPERIAL2
+91,W,12.175,4 E OF IMPERIAL
+91,W,12.762,4 MIDPOINT
+91,W,13.349,4 W OF SCALES
+91,W,14.26,5 WEIR CNYN1
+91,W,14.43,4 WEIR CNYN2
+91,W,15.11,4 East OF WEIR
+91,W,15.793,4 West OF GYPSUM
+91,W,16.2,5 GYPSUM 1
+91,W,17.044,4 E OF GYPSUM
+91,W,17.84,4 COAL
+91,W,18.435,4 E OF COAL
+133,N,9,2 BARRANCA1
+133,N,9.1,3 BARRANCA2
+133,N,9.37,2 S OF 5
+133,N,9.77,2 N OF 5
+133,N,10.05,2 MARINE WAY
+133,N,10.5,2 N OF MARINE
+133,N,10.73,3 S OF PM 11
+133,N,11.08,2 AT PM 11
+133,N,11.35,2 N OF PM 11
+133,N,11.7,2 IRVINE BLVD 1
+133,N,12.05,3 IRVINE BLVD 3
+133,N,12.42,3 S OF PORTOLA
+133,N,12.77,2 133NB to 241NB
+133,N,13.04,2 ORANGE 1
+133,N,13.42,3 ORANGE 2
+133,S,9,3 BARRANCA2
+133,S,9.37,2 S OF 5
+133,S,9.77,2 N OF 5
+133,S,10.05,3 MARINE WAY
+133,S,10.5,2 N OF MARINE
+133,S,10.73,3 S OF PM 11
+133,S,11.08,2 AT PM 11
+133,S,11.35,2 N OF PM 11
+133,S,11.7,2 IRVINE BLVD 1
+133,S,12.05,2 IRVINE BLVD 3
+133,S,12.42,3 S OF PORTOLA
+133,S,13.04,2 ORANGE 1
+133,S,13.42,2 ORANGE 2
+241,N,17.8,2 ANTONIO 2
+241,N,18.08,2 BANDERAS
+241,N,18.7,2 SANTA MARGUERITA
+241,N,18.8,3 TRABUCO CREEK
+241,N,19.3,2 MELINDA
+241,N,19.76,2 LOS ALISOS 1
+241,N,20.13,2 LOS ALISOS 2
+241,N,20.54,3 UPPER OSO
+241,N,21.61,2 PORTOLA S 1
+241,N,21.93,2 PORTOLA S 2
+241,N,22.61,3 LAKE FOREST
+241,N,22.81,2 BAKE
+241,N,23.2,2 ALTON 1
+241,N,23.54,3 ALTON 2
+241,N,24.16,3 N OF ALTON
+241,N,25.15,3 PORTOLA N2
+241,N,25.43,2 TOMATO 1
+241,N,25.95,2 TOMATO 3
+241,N,26.35,4 TOMATO 4
+241,N,26.58,2 133-1
+241,N,26.76,2 133-2
+241,N,27.12,2 133-3
+241,N,27.43,2 BEE CANYON
+241,N,27.74,4 N OF 133
+241,N,28.09,3 S OF JEFFREY
+241,N,28.44,3 N OF JEFFREY
+241,N,28.73,3 N OF HAUL ROAD
+241,N,28.97,3 HAUL-CULVER
+241,N,29.34,3 S OF CULVER S
+241,N,29.69,3 N OF CULVER S
+241,N,30,3 CULVER-CULVER 1
+241,N,30.33,3 CULVER-CULVER 2
+241,N,30.72,3 S OF CULVER N
+241,N,31.03,2 N OF CULVER N
+241,N,31.44,3 S OF EOC OC
+241,N,31.88,2 CHAPMAN 1
+241,N,32.29,2 CHAPMAN 2
+241,N,32.71,2 CHAPMAN 3
+241,N,32.97,2 CHAPMAN 4
+241,N,33.35,3 N OF CHAPMAN
+241,N,33.68,3 S OF SANT CREEK
+241,N,34.03,3 N OF SANT CR1
+241,N,34.38,3 N OF SANT CR2
+241,N,34.72,4 S OF OAK
+241,N,35.08,4 N OF OAK
+241,N,35.43,4 S OF SCE OC
+241,N,35.82,2 WINDY RIDGE 1
+241,N,36.14,2 WINDY RIDGE 2
+241,N,36.37,2 WINDY RIDGE 3
+241,N,36.82,3 W R WILDLIFE
+241,N,37.12,3 N OF W R WILDLIFE 1
+241,N,37.49,3 N OF W R WILDLIFE 2
+241,N,37.88,3 N OF W R WILDLIFE 3
+241,S,18.3,2 SANTA MARGUERITA
+241,S,18.8,2 TRABUCO CREEK
+241,S,19.3,2 MELINDA
+241,S,19.76,2 LOS ALISOS 1
+241,S,20.54,2 UPPER OSO
+241,S,22.02,2 PORTOLA S 2
+241,S,22.61,2 LAKE FOREST
+241,S,22.81,2 BAKE
+241,S,23.2,3 ALTON 1
+241,S,23.54,2 ALTON 2
+241,S,24.16,2 N OF ALTON
+241,S,25.15,3 PORTOLA N2
+241,S,25.43,3 TOMATO 1
+241,S,25.72,2 TOMATO 2
+241,S,26.35,4 TOMATO 4
+241,S,26.58,4 133-1
+241,S,26.76,2 133-2
+241,S,27.12,2 133-3
+241,S,27.43,2 BEE CANYON
+241,S,27.74,3 N OF 133
+241,S,28.09,2 S OF JEFFREY
+241,S,28.44,2 N OF JEFFREY
+241,S,28.73,2 N OF HAUL ROAD
+241,S,28.97,2 HAUL-CULVER
+241,S,29.34,2 S OF CULVER S
+241,S,29.69,2 N OF CULVER S
+241,S,30,2 CULVER-CULVER 1
+241,S,30.33,3 CULVER-CULVER 2
+241,S,30.72,3 S OF CULVER N
+241,S,31.03,3 N OF CULVER N
+241,S,31.44,3 S OF EOC OC
+241,S,31.88,3 CHAPMAN 1
+241,S,32.29,2 CHAPMAN 2
+241,S,32.71,2 CHAPMAN 3
+241,S,32.97,3 CHAPMAN 4
+241,S,33.35,3 N OF CHAPMAN
+241,S,33.68,3 S OF SANT CREEK
+241,S,34.03,3 N OF SANT CR1
+241,S,34.38,3 N OF SANT CR2
+241,S,34.72,3 S OF OAK
+241,S,35.08,3 N OF OAK
+241,S,35.43,3 S OF SCE OC
+241,S,35.82,2 WINDY RIDGE 1
+241,S,36.14,2 WINDY RIDGE 2
+241,S,36.43,2 WINDY RIDGE 3
+241,S,36.82,4 W R WILDLIFE
+241,S,37.12,4 N OF W R WILDLIFE 1
+241,S,37.49,4 N OF W R WILDLIFE 2
+241,S,37.88,4 N OF W R WILDLIFE 3
+241,S,38.23,5 S OF 91
+261,N,0.04,3 JAMBOREE
+261,N,0.31,2 WALNUT 2
+261,N,0.5,3 S OF 5
+261,N,0.9,2 EL CAMINO REAL
+261,N,1.35,2 IRVINE BLVD 1
+261,N,1.75,2 IRVINE BLVD 2 FSTRK
+261,N,2.24,1 IRVINE RANCH TOLL
+261,N,2.24,2 IRVINE RANCH FSTRK
+261,N,2.71,3 PORTOLA  1
+261,N,3.16,3 PORTOLA 2
+261,N,3.51,3 PORTOLA 3
+261,N,3.79,3 PORTOLA 4
+261,N,4.14,3 S OF UTILITY
+261,N,4.46,3 N OF UTILITY
+261,N,4.7,3 HANDY 1
+261,N,4.93,3 HANDY 2
+261,N,5.27,3 HANDY 3
+261,N,5.64,3 CHAPMAN
+261,S,0.04,2 JAMBOREE
+261,S,0.5,2 S OF 5
+261,S,0.9,2 EL CAMINO REAL
+261,S,1.35,2 IRVINE BLVD 1
+261,S,1.75,3 IRVINE BLVD 2
+261,S,2.24,1 IRVINE RANCH TOLL
+261,S,2.24,2 IRVINE RANCH FSTRK
+261,S,2.71,2 PORTOLA  1 FSTRK
+261,S,3.16,2 PORTOLA 2
+261,S,3.51,2 PORTOLA 3
+261,S,3.79,2 PORTOLA 4
+261,S,4.14,2 S OF UTILITY
+261,S,4.46,2 N OF UTILITY
+261,S,4.7,2 HANDY 1
+261,S,4.93,2 HANDY 2
+261,S,5.27,2 HANDY 3
+261,S,5.64,2 CHAPMAN
+405,N,0.93,4 IRVINE C1
+405,N,1.11,4 IRVINE C2
+405,N,1.57,5 N OF 133
+405,N,1.93,4 S OF 133
+405,N,2.35,5 LAGUNA CYN RD
+405,N,3.04,4 SAND CANYON
+405,N,3.31,4 N OF SAND CYN
+405,N,3.86,4 JEFFREY 1
+405,N,4.03,4 JEFFREY 2
+405,N,5.01,4 YALE
+405,N,5.05,4 SPRUCE
+405,N,5.55,4 CULVER 1
+405,N,5.74,5 CULVER 2
+405,N,6.21,5 HARVARD
+405,N,6.85,5 JAMBOREE1
+405,N,7.07,5 JAMBOREE2
+405,N,7.73,5 MACARTHUR 1
+405,N,8.26,6 AIRPORT
+405,N,8.4,4 RED HILL
+405,N,9.46,5 BRISTOL 1
+405,N,9.65,5 BRISTOL 2
+405,N,10.9,5 FAIRVIEW
+405,N,11.4,4 HARBOR 1
+405,N,12.16,5 HAMPSHIRE
+405,N,12.85,5 EUCLID
+405,N,13.74,4 BROOKHUR1
+405,N,13.97,4 BROOKHUR2
+405,N,14.82,4 WARNER
+405,N,15.17,4 MAGNOLIA1
+405,N,15.39,4 MAGNOLIA2
+405,N,16.52,4 BEACH 1
+405,N,16.76,4 BEACH 2
+405,N,17.92,4 GOLDEN WEST
+405,N,19.24,4 WESTMINISTER
+405,N,22.55,6 SEAL BEACH 1
+405,N,23.12,7 S OF 7TH ST
+405,N,23.62,5 SALMON
+405,N,23.92,4 S OF 605
+405,N,24.12,4 N OF 605
+405,S,0.77,5 IRVINE C1
+405,S,0.96,4 IRVINE C2
+405,S,1.57,4 N OF 133
+405,S,1.93,4 S OF 133
+405,S,2.35,5 LAGUNA CANYON RD
+405,S,2.88,4 SAND CANYON
+405,S,3.31,4 N OF SAND CANYON
+405,S,3.84,4 JEFFREY 1
+405,S,4.03,4 JEFFREY 2
+405,S,5.01,4 YALE
+405,S,5.05,4 SPRUCE
+405,S,5.5,4 CULVER 1
+405,S,5.69,4 CULVER 2
+405,S,6.21,5 HARVARD
+405,S,6.8,5 JAMBOREE1
+405,S,7.01,5 JAMBOREE2
+405,S,7.69,5 MACARTHUR1
+405,S,8.26,6 AIRPORT
+405,S,8.4,5 RED HILL
+405,S,8.9,4 N OF 55
+405,S,9.54,5 BRISTOL 1
+405,S,10.28,4 FAIRVIEW
+405,S,10.48,4 N OF 73
+405,S,11.2,5 HARBOR 1
+405,S,11.5,5 HARBOR 2
+405,S,12.16,6 HAMPSHIRE
+405,S,12.5,5 EUCLID
+405,S,13.3,5 TALBERT
+405,S,13.81,4 BROOKHURST2
+405,S,14.72,4 WARNER
+405,S,15.16,4 MAGNOLIA 1
+405,S,16.26,4 EDINGER
+405,S,16.6,4 BEACH 1
+405,S,17.66,4 BOLSA
+405,S,17.98,4 GOLDEN WEST
+405,S,19.05,4 WESTMINSTER
+405,S,20.69,4 BOLSA CHICA
+405,S,22.54,6 SEAL BEACH 1
+405,S,23.19,5 N OF 7TH ST
+405,S,23.62,4 SALMON
+405,S,23.92,4 S OF 605
+405,S,24.12,4 N OF 605
+605,N,1.26,4 KATELLA 1
+605,S,1.26,4 KATELLA 1
+605,S,1.49,4 KATELLA 2
Index: trunk/webapps/cptms/data_layers/cctv_locations_D12.csv
===================================================================
--- trunk/webapps/cptms/data_layers/cctv_locations_D12.csv	(revision 317)
+++ trunk/webapps/cptms/data_layers/cctv_locations_D12.csv	(revision 317)
@@ -0,0 +1,203 @@
+5,S,42.11,-117.978854,33.856288,SB 5 N/O MAGNOLIA AVE (S/O 91),12-005-CCTV-0001, 5 S 43.01
+5,N,37.35,-117.914631,33.815271,NB 5 HARBOR BLVD,12-005-CCTV-0007, 5 N 37.38
+5,N,33.95,-117.87515,33.778342,NB 5 RTE 22,12-005-CCTV-0013, 5 N 33.8
+5,N,31.81,-117.852357,33.754633,NB 5 GRAND AVE,12-005-CCTV-0016, 5 N 31.73
+5,S,32.45,-117.862294,33.759533,SB 5 17TH ST (7TH),12-005-CCTV-0029, 5 S 32.25
+5,N,19.94,-117.72058,33.629051,NB 5 BAKE PKWY 	(LAKE FOREST),12-005-CCTV-0034, 5 N 20
+5,S,21.36,-117.736051,33.645333,SB 5 ENTERPRISE ST /12-405 (235),12-005-CCTV-0035, 5 S 21.25
+5,N,9.71,-117.65848,33.504043,NB 5 ORTEGA HWY,12-005-CCTV-0084, 5 N 9.69
+5,N,11.03,-117.666043,33.522207,NB 5 JUNIPERO SERRA RD	,12-005-CCTV-0086, 5 N 11.05
+5,N,13.77,-117.672459,33.559112,NB 5 CROWN VALLEY PKWY (MV),12-005-CCTV-0088, 5 N 13.7
+5,N,17.04,-117.683941,33.601512,NB 5 N/O LA PAZ RD (S/O ALICIA),12-005-CCTV-0089, 5 N 16.69
+5,N,15.21,-117.671157,33.57996,NB 5 OSO PKWY O/C (MV),12-005-CCTV-0090, 5 N 15.13
+5,N,15.8,-117.671303,33.588723,NB 5 N/O OSO PKWY,12-005-CCTV-0091, 5 N 15.35
+5,N,16.55,-117.676321,33.598609,NB 5 LA PAZ RD	( MV),12-005-CCTV-0092, 5 N 16.51
+5,N,17.5,-117.690447,33.605404,NB 5 ALICIA PKWY ON ( MV),12-005-CCTV-0093, 5 N 17.43
+5,N,17.62,-117.692358,33.606105,NB 5 ALICIA PKWY,12-005-CCTV-0094, 5 N 17.63
+5,N,18.57,-117.705866,33.613607,NB 5 EL TORO RD,12-005-CCTV-0095, 5 N 18.61
+5,N,19.15,-117.712363,33.619999,NB 5 NO EL TORO RD (CARLOTA),12-005-CCTV-0097, 5 N 18.61
+5,N,22.24,-117.743837,33.656192,NB 5 ALTON PKWY,12-005-CCTV-0098, 5 N 22.2
+5,N,24.93,-117.767601,33.689427,NB 5 JEFFREY RD,12-005-CCTV-0102, 5 N 25.08
+5,N,25.84,-117.775138,33.700849,NB 5 YALE AVE,12-005-CCTV-0103, 5 N 25.8
+5,N,26.62,-117.782251,33.710579,NB 5 CULVER DR,12-005-CCTV-0104, 5 N 26.56
+5,N,27.64,-117.795451,33.720267,NB 5 JAMBOREE RD,12-005-CCTV-0105, 5 N 27.56
+5,N,28.27,-117.803943,33.726048,NB 5 TUSTIN RANCH RD,12-005-CCTV-0106, 5 N 28.1
+5,N,29.45,-117.820219,33.736483,NB 5 S/O NEWPORT AVE,12-005-CCTV-0107, 5 N 29.24
+5,S,34.31,-117.880263,33.780901,SB 5 22 FWY,12-005-CCTV-0108, 5 S 34.3
+5,N,35.18,-117.889408,33.791899,NB 5 STATE COLLEGE BLVD,12-005-CCTV-0109, 5 N 35.1
+5,S,35.73,-117.896519,33.797148,SB 5 ORANGEWOOD AVE,12-005-CCTV-0110, 5 S 35.6
+5,N,36.18,-117.900379,33.802518,NB 5 KATELLA AVE,12-005-CCTV-0111, 5 N 36.4
+5,N,38.24,-117.924056,33.825002,NB 5 WEST ST,12-005-CCTV-0112, 5 N 38.1
+5,N,38.95,-117.932136,33.832856,NB 5 LINCOLN AVE,12-005-CCTV-0113, 5 N 38.9
+5,N,39.45,-117.940608,33.835729,NB 5 EUCLID AVE,12-005-CCTV-0114, 5 N 39.6
+5,N,40.7,-117.958552,33.845864,NB 5 BROOKHURST ST,12-005-CCTV-0116, 5 N 40.7
+5,N,41.36,-117.968164,33.85056,NB 5 GILBERT ST,12-005-CCTV-0117, 5 N 40.98
+5,N,41.7,-117.973228,33.853368,NB 5 MAGNOLIA AVE,12-005-CCTV-0118, 5 N 40.98
+5,N,42.67,-117.986973,33.860337,NB 5 N/O ORANGETHORPE BLVD,12-005-CCTV-0119, 5 N 43.01
+5,N,36.78,-117.908082,33.809042,NB 5 ANAHEIM BL,12-005-CCTV-0175, 5 N 36.6
+5,N,43.01,-117.991956,33.863328,NB 5 MANCHESTER AVE (S/O STANTON),12-005-CCTV-0188, 5 N 43.01
+91,W,0.65,-117.969203,33.855307,WB 91 GILBERT ST,12-005-CCTV-0189, 91 W 0.76
+5,N,43.59,-118.000423,33.867939,NB 5 N/O BEACH 	BLVD,12-005-CCTV-0190, 5 N 43.01
+5,N,13.05,-117.672549,33.548608,NB 5 AVERY PKWY,12-005-CCTV-0192, 5 N 13.05
+5,N,26.11,-117.777357,33.704308,NB 5 N/O YALE AVE,12-005-CCTV-0195, 5 N 25.8
+5,N,28.87,-117.812044,33.731601,NB 5 S/O REDHILL AVE,12-005-CCTV-0197, 5 N 29.24
+5,N,44.26,-118.009814,33.872934,NB 5 S/O ARTESIA BLVD,12-005-CCTV-0203, 5 N 43.01
+5,N,72.36,-117.593436,33.396516,NB 5 CHRISTIANITOS RD,12-005-CCTV-0206, 5 N 43.01
+5,N,2.43,-117.611297,33.428438,NB 5 PRESIDIO DR ON,12-005-CCTV-0209, 5 N 2.47
+5,N,2.76,-117.61506,33.431966,NB 5 AVENIDA PALIZADA ON,12-005-CCTV-0210, 5 N 2.8
+5,N,3.84,-117.628059,33.44293,NB 5 VIA HERMOSA,12-005-CCTV-0212, 5 N 3.56
+5,S,4.77,-117.641033,33.450736,NB 5 S/O AVENIDA VAQUERO ON,12-005-CCTV-0213, 5 S 5.4
+5,N,5.74,-117.65494,33.458616,NB 5 CAMINO DE ESTRELLA ON,12-005-CCTV-0214, 5 N 5.73
+5,N,7.46,-117.674086,33.47531,NB 5 STONEHILL 	DR (CAPISTRANO/STONEHILL),12-005-CCTV-0217, 5 N 7.46
+5,N,7.96,-117.669703,33.481338,NB 5 AVENIDA AEROPUERTO,12-005-CCTV-0218, 5 N 7.99
+5,N,8.63,-117.663318,33.489288,NB 5 VALLE RD ON (SAN JUAN CREEK),12-005-CCTV-0233, 5 N 8.64
+5,N,9.26,-117.658465,33.49746,NB 5 S/O ORTEGA HWY (SAN JUAN CREEK),12-005-CCTV-0234, 5 N 9.15
+73,N,10.02,-117.674252,33.537283,NB 5 73 FWY (NO LOC DESC),12-005-CCTV-0235, 73 N 10.59
+22,E,0.57,-118.08761,33.77432,EB 22 7TH ST,12-022-CCTV-0009, 22 E 1.08
+22,W,5.84,-117.954659,33.7662,WB 22 BROOKHURST ST,12-022-CCTV-0030, 22 W 5.57
+22,W,6.89,-117.936602,33.766312,WB 22 EUCLID ST,12-022-CCTV-0031, 22 W 6.94
+22,W,7.79,-117.921177,33.767824,WB 22 HARBOR BLVD,12-022-CCTV-0032, 22 W 7.72
+22,W,9.77,-117.890292,33.779268,WB 22 CITY DRIVE,12-022-CCTV-0033, 22 W 9.69
+22,W,12.51,-117.841851,33.776829,WB 22 CAMBRIDGE ST,12-022-CCTV-0154, 22 W 12.7
+22,E,11.9,-117.852236,33.774962,EB 22 GLASSELL 	ST,12-022-CCTV-0155, 22 E 12.01
+22,W,11.25,-117.862898,33.778524,WB 22 MAIN ST,12-022-CCTV-0156, 22 W 11.23
+22,E,4.7,-117.974867,33.766151,EB 22 MAGNOLIA ST,12-022-CCTV-0158, 22 E 4.6
+22,W,5.14,-117.966973,33.766112,WB 22 MAGNOLIA ST,12-022-CCTV-0159, 22 W 4.99
+22,W,3.86,-117.98756,33.771132,WB 22 BEACH BLVD,12-022-CCTV-0160, 22 W 3.73
+22,E,2.86,-118.004695,33.772847,EB 22 KNOTT AVE,12-022-CCTV-0161, 22 E 2.88
+22,W,2.52,-118.010054,33.774904,WB 22 KNOTT AVE,12-022-CCTV-0162, 22 W 2.49
+22,E,1.01,-118.036332,33.774126,EB 22 VALLEY VIEW AVE,12-022-CCTV-0163, 22 E 1.08
+22,E,1.43,-118.029072,33.774096,EB 22 LOS ALISOS ST,12-022-CCTV-0164, 22 E 1.75
+55,S,3.84,-117.896617,33.663818,SB 55 DEL MAR AVE,12-055-CCTV-0011, 55 S 3.97
+55,N,11.04,-117.83171,33.748952,NB 55 4TH ST,12-055-CCTV-0019, 55 N 11.1
+55,N,9.98,-117.833377,33.734188,NB 55 MCFADDEN AVE,12-055-CCTV-0020, 55 N 9.84
+55,N,9.33,-117.83549,33.724804,NB 55 EDINGER AVE,12-055-CCTV-0021, 55 N 9.41
+55,N,8.5,-117.844637,33.715353,NB 55 WARNER AVE ,12-055-CCTV-0022, 55 N 8.12
+55,S,5.98,-117.872133,33.687102,SB 55 @RTE405,12-055-CCTV-0024, 55 S 5.87
+22,S,13.13,-117.83151,33.776856,SB 55 RTE 22 ,12-055-CCTV-0198, 22 S 12.7
+55,N,13.67,-117.830684,33.787286,NB 55 CHAPMAN AVE  ,12-055-CCTV-0199, 55 N 13.9
+55,N,14.21,-117.830589,33.795054,NB 55 WALNUT ST,12-055-CCTV-0200, 55 N 14.4
+55,N,14.7,-117.831286,33.802195,NB 55 COLLINS AVE,12-055-CCTV-0201, 55 N 14.6
+55,N,15.22,-117.831647,33.809678,NB 55 KATELLA AVE,12-055-CCTV-0202, 55 N 15.22
+55,N,16,-117.831697,33.8211,NB 55 S/O MEATS AVE,12-055-CCTV-0204, 55 N 15.8
+55,N,11.85,-117.830642,33.760736,NB 55 17TH ST,12-055-CCTV-0230, 55 N 11.74
+55,N,3.23,-117.903363,33.656942,NB 55 WILSON ST,12-055-CCTV-0238, 55 N 3.07
+55,N,3.84,-117.896594,33.663803,NB 55 DEL MAR AVE EXT,12-055-CCTV-0239, 55 N 3.97
+55,N,4.63,-117.887367,33.672201,NB 55 RTE 73,12-055-CCTV-0240, 55 N 4.58
+55,N,5.32,-117.879191,33.679691,NB 55 N/O BAKER ST,12-055-CCTV-0241, 55 N 5.51
+57,N,13.39,-117.875914,33.817703,NB 57 BALL ROAD,12-057-CCTV-0006, 57 N 13.38
+57,N,12.44,-117.879724,33.804529,NB 57 KATELLA AVE,12-057-CCTV-0078, 57 N 12.5
+57,N,14.84,-117.875687,33.838806,NB 57 LINCOLN AVE,12-057-CCTV-0079, 57 N 14.9
+57,N,16.42,-117.876881,33.861713,NB 57 ORANGETHORPE AVE,12-057-CCTV-0080, 57 N 16.5
+57,N,19.72,-117.882671,33.908933,NB 57 IMPERIAL 	HWY,12-057-CCTV-0081, 57 N 19.8
+57,N,20.91,-117.879931,33.925622,NB 57 LAMBERT ST,12-057-CCTV-0082, 57 N 21.16
+57,N,11.31,-117.879631,33.788891,NB 57 CHAPMAN AVE (ORANGE),12-057-CCTV-0170, 57 N 11.39
+57,N,11.75,-117.877786,33.795003,NB 57 ORANGEWOOD AVE ON,12-057-CCTV-0174, 57 N 11.78
+57,N,14.19,-117.875742,33.829361,NB 57 N/O WAGNER AVE,12-057-CCTV-0176, 57 N 14.4
+57,N,15.84,-117.875195,33.853343,NB 57 S/O MIRALOMA OC,12-057-CCTV-0177, 57 N 15.4
+57,N,17.59,-117.879935,33.878329,NB 57 NUTWOOD ST,12-057-CCTV-0179, 57 N 17.75
+57,N,18.19,-117.880176,33.886838,NB 57 YORBA LINDA BLVD,12-057-CCTV-0180, 57 N 18.3
+57,N,18.87,-117.880654,33.896878,NB 57 BASTANCHURY RD U/C,12-057-CCTV-0181, 57 N 18.85
+57,N,19.34,-117.880614,33.903664,NB 57 ROLLING HILLS RD U/C,12-057-CCTV-0182, 57 N 19.1
+57,N,21.65,-117.877571,33.936656,NB 57 S/O OF TONNER CYN RD,12-057-CCTV-0184, 57 N 22
+57,N,22.18,-117.873021,33.942227,NB 57 N/O OF TONNER CYN RD,12-057-CCTV-0185, 57 N 22
+73,N,25.3,-117.871756,33.660494,NB 73 MAINLINE 	S/O BIRCH ST OC,12-073-CCTV-0036, 73 N 25.25
+73,N,25.74,-117.876874,33.664063,NB 73 MAINLINE N/O CAMPUS DR OC,12-073-CCTV-0037, 73 N 25.7
+73,N,26.14,-117.881313,33.668317,NB 73 MAINLINE N/O REDHILL AVE OC,12-073-CCTV-0038, 73 N 26.3
+73,N,10.8,-117.675181,33.548847,NB 73 MAINLINE 	N/O PASEO DE COLINAS UC,12-073-CCTV-0323, 73 N 10.9
+73,N,11.5,-117.680935,33.55741,NB 73 MAINLINE N/O CROWN VALLEY 	PKWY UC,12-073-CCTV-0324, 73 N 11.64
+73,S,11.81,-117.686227,33.557935,SB 73 MAINLINE 	N/O GREENFIELD DR UC,12-073-CCTV-0325, 73 S 11.64
+73,S,12.4,-117.694375,33.562525,SB 73 MAINLINE 	S/O MOULTON PKWY UC,12-073-CCTV-0326, 73 S 12.31
+73,S,12.97,-117.700945,33.568845,SB 73 MAINLINE 	N/O MOULTON PKWY UC,12-073-CCTV-0327, 73 S 12.83
+73,N,13.47,-117.706928,33.574398,NB 73 MAINLINE 	N/O LA PAZ RD UC,12-073-CCTV-0328, 73 N 13.6
+73,S,13.78,-117.712169,33.575399,SB 73 MAINLINE 	AT ALICIA PKWY OC,12-073-CCTV-0329, 73 S 13.7
+73,S,14.38,-117.721302,33.579841,SB 73 AT ALICIA CREEK RD,12-073-CCTV-0330, 73 S 14.4
+73,S,14.83,-117.727036,33.584186,SB 73 MAINLINE 	S/O LAGUNA HILLS DR OC,12-073-CCTV-0331, 73 S 14.95
+73,S,15.02,-117.729707,33.585833,SB 73 MAINLINE 	N/O LAGUNA HILLS DR OC,12-073-CCTV-0332, 73 S 14.95
+73,S,15.27,-117.733732,33.586721,SB 73 MAINLINE AT GLENWOOD DR OC,12-073-CCTV-0333, 73 S 15.26
+73,N,15.84,-117.742929,33.588659,NB 73 OFF-RAMP 	EL ORO RD,12-073-CCTV-0334, 73 N 15.96
+73,S,16.4,-117.752728,33.590686,SB 73 MAINLINE 	N/O EL TORO RD UC,12-073-CCTV-0335, 73 S 16.25
+73,N,16.95,-117.761235,33.593968,NB 73 CD N/O LAGUNA CYN RD UC,12-073-CCTV-0336, 73 N 16.98
+73,S,17.34,-117.766831,33.596703,SB 73 MAINLINE 	N/O LAGUNA CYN RD UC,12-073-CCTV-0337, 73 S 17.2
+73,S,17.84,-117.774951,33.598749,SB 73 MAINLINE 	N/O LAGUNA CYN RD UC,12-073-CCTV-0338, 73 S 17.95
+73,S,18.41,-117.784155,33.601875,SB 73 MAINLINE 	S/O MAINLINE  TOLL PLAZA,12-073-CCTV-0339, 73 S 18.3
+73,S,18.96,-117.793286,33.603469,SB 73 MAINLINE 	MAINLINE  TOLL PLAZA,12-073-CCTV-0340, 73 S 18.59
+73,S,19.53,-117.80219,33.607345,SB 73 MAINLINE 	N/O MAINLINE  TOLL PLAZA,12-073-CCTV-0341, 73 S 19.5
+73,S,20,-117.809641,33.609245,SB 73 MAINLINE 	N/O MAINLINE  TOLL PLAZA,12-073-CCTV-0342, 73 S 19.8
+73,S,20.48,-117.817046,33.61224,SB 73 MAINLINE 	N/O NEWPORT COAST DR,12-073-CCTV-0343, 73 S 20.4
+73,S,20.92,-117.82075,33.61839,SB 73 MAINLINE 	S/O NEWPORT COAST DR,12-073-CCTV-0344, 73 S 20.8
+73,S,21.39,-117.826751,33.622219,SB 73 MAINLINE 	S/O NEWPORT COAST DR,12-073-CCTV-0345, 73 S 21.5
+73,N,23,-117.850209,33.633938,NB 73 MAINLINE 	S/O BISON AVE OC,12-073-CCTV-0348, 73 N 22.8
+73,S,23.44,-117.856893,33.637364,SB 73 MAINLINE 	S/O BISON AVE OC,12-073-CCTV-0349, 73 S 23.5
+73,N,24.3,-117.860997,33.649389,NB 73 MAINLINE 	S/O UNIVERSITY DR UC,12-073-CCTV-0350, 73 N 24.4
+73,N,24.76,-117.864363,33.655668,NB 73 MAINLINE JAMBOREE RD,12-073-CCTV-0351, 73 N 24.78
+91,S,2.67,-117.996981,33.856318,WB 91 BEACH BLVD,12-091-CCTV-0002, 91 S 2.6
+57,W,15.55,-117.875531,33.849091,WB 91 FROM NB 57 FWY,12-091-CCTV-0003, 57 W 15.1
+91,N,13.81,-117.755142,33.868618,EB 91 SCALE HOUSE,12-091-CCTV-0004, 91 N 13.349
+91,E,1.17,-117.960547,33.85364,EB 91 BROOKHURST ST,12-091-CCTV-0040, 91 E 1
+91,E,3.16,-117.925913,33.853529,EB 91 HARBOR BLVD,12-091-CCTV-0132, 91 E 2.76
+91,S,6.01,-117.877382,33.85074,WB 91 W/O 57 FWY,12-091-CCTV-0133, 91 S 6.15
+91,E,4.34,-117.905447,33.853636,EB 91 RAYMOND AVE,12-091-CCTV-0134, 91 E 4.35
+91,W,5.25,-117.88971,33.854469,WB 91 STATE COLLEGE BLVD,12-091-CCTV-0136, 91 W 5.14
+91,S,6.74,-117.865722,33.846664,WB 91 WEST / KRAEMER BLVD,12-091-CCTV-0138, 91 S 6.42
+91,S,7.26,-117.856992,33.847835,WB 91 KRAEMER BLVD,12-091-CCTV-0139, 91 S 7.31
+91,N,7.81,-117.84781,33.849603,EB 91 E/O GLASSELL ST,12-091-CCTV-0140, 91 N 7.86
+91,E,2.36,-117.939807,33.853928,EB 91 EUCLID AVE,12-091-CCTV-0168, 91 E 2.4
+91,E,3.87,-117.913598,33.853545,EB 91 LEMON ST,12-091-CCTV-0169, 91 E 3.91
+91,S,3.87,-117.976555,33.857786,WB 91 MAGNOLIA ST,12-091-CCTV-0186, 91 S 3.87
+91,S,3.01,-117.991199,33.856405,WB 91 STANTON AVE,12-091-CCTV-0187, 91 S 3.13
+133,N,10.04,-117.753128,33.674225,NB 133 MAINLINE S/O MARINE WAY UC,12-133-CCTV-0281, 133 N 10.05
+133,N,10.7,-117.747372,33.682511,NB 133 MAINLINE S/O TRABUCO RD OC,12-133-CCTV-0282, 133 N 10.73
+133,N,11.33,-117.741213,33.689945,NB 133 MAINLINE N/O TRABUCO RD OC,12-133-CCTV-0283, 133 N 11.35
+133,N,12,-117.73443,33.697916,NB 133 	MAINLINE N/O IRVINE BLVD OC,12-133-CCTV-0284, 133 N 12.05
+133,N,13.06,-117.723978,33.710062,NB 133 	MAINLINE S/O TOLL PLAZA,12-133-CCTV-0286, 133 N 13.04
+241,N,17.57,-117.598608,33.630297,NB 241	 MAINLINE N/O ANTONIO PKWY OC,12-241-CCTV-0243, 241 N 17.8
+241,N,18.01,-117.600239,33.636571,NB 241	 MAINLINE 530M N/O ANTONIO PKWY UC,12-241-CCTV-0244, 241 N 18.08
+241,N,18.52,-117.603729,33.643258,NB 241	 MAINLINE N/O SANTA MARGARITA PKWY UC,12-241-CCTV-0245, 241 N 18.7
+241,N,19.25,-117.611452,33.651815,NB 241	 MAINLINE 30M S/O MELINDA ROAD UC,12-241-CCTV-0246, 241 N 19.3
+241,N,20.91,-117.636511,33.661742,NB 241	 MAINLINE 50M S/O EL TORO ROAD UC,12-241-CCTV-0248, 241 N 20.54
+241,N,21.79,-117.650129,33.667893,NB 241	 MAINLINE 80M S/O PORTOLA PKWY UC,12-241-CCTV-0249, 241 N 21.93
+241,N,22.43,-117.660133,33.671906,NB 241	 MAINLINE 40M S/O LAKE FOREST DRIVE UC,12-241-CCTV-0250, 241 N 22.61
+241,N,22.92,-117.667583,33.674971,NB 241	 MAINLINE 310M N/O BAKE PKWY OC,12-241-CCTV-0251, 241 N 22.81
+241,N,23.39,-117.672888,33.679788,NB 241	 MAINLINE 80M S/O ALTON PKWY OC,12-241-CCTV-0252, 241 N 23.54
+241,N,24.43,-117.685156,33.690893,NB 241	 MAINLINE 780M S/O PORTOLA PKWY OC,12-241-CCTV-0253, 241 N 24.16
+241,N,27.06,-117.71968,33.711523,NB 241 MAINLINE 750M S/O BEE CANYON ROAD,12-241-CCTV-0287, 241 N 27.12
+241,N,27.48,-117.719744,33.719646,NB 241 MAINLINE 50M S/O BEE CANYON ROAD,12-241-CCTV-0288, 241 N 27.43
+241,N,28.2,-117.718347,33.730086,NB 241 MAINLINE 800M S/O HAUL ROAD,12-241-CCTV-0290, 241 N 28.09
+241,N,28.78,-117.717392,33.738584,NB 241 MAINLINE 180M N/O HAUL ROAD,12-241-CCTV-0291, 241 N 28.73
+241,N,29.32,-117.720683,33.745969,NB 241 MAINLINE 500M S/O SOUTH CULVER DR,12-241-CCTV-0292, 241 N 29.34
+241,N,29.91,-117.728454,33.750679,NB 241	 MAINLINE 400M N/O SOUTH CULVER DR,12-241-CCTV-0293, 241 N 30
+241,N,30.37,-117.732525,33.756022,NB 241	 MAINLINE 600M S/O NORTH CULVER DR,12-241-CCTV-0294, 241 N 30.33
+241,N,30.99,-117.732833,33.765479,NB 241	 MAINLINE 430M N/O NORTH CULVER DR,12-241-CCTV-0295, 241 N 31.03
+241,N,31.62,-117.740576,33.771529,NB 241	 MAINLINE 1400M N/O NORTH CULVER DR,12-241-CCTV-0296, 241 N 31.44
+241,N,32.44,-117.747403,33.778289,NB 241	 MAINLINE 230M S/O SANTIAGO CANYON ROAD OC,12-241-CCTV-0297, 241 N 32.29
+241,N,33.01,-117.743724,33.787057,NB 241	 MAINLINE 900M N/O SANTIAGO CANYON ROAD OC,12-241-CCTV-0298, 241 N 32.97
+241,N,34.02,-117.728829,33.796356,NB 241	 MAINLINE 1700M N/O SANTIAGO CANYON ROAD	 OC,12-241-CCTV-0299, 241 N 34.03
+241,N,34.02,-117.728834,33.796359,NB 241	 MAINLINE 2600M N/O SANTIAGO CANYON ROAD	 OC,12-241-CCTV-0300, 241 N 34.03
+241,N,34.8,-117.723634,33.806983,NB 241	 MAINLINE 2000M S/O WINDY RIDGE TOLL PLAZA,12-241-CCTV-0301, 241 N 34.72
+241,N,35.51,-117.71823,33.816073,NB 241 MAINLINE 920M S/O WINDY RIDGE TOLL PLAZA,12-241-CCTV-0302, 241 N 35.43
+241,N,36.47,-117.716542,33.830029,NB 241 MAINLINE 600M N/O WINDY RIDGE TOLL PLAZA,12-241-CCTV-0303, 241 N 36.37
+241,N,36.81,-117.717288,33.835075,NB 241	 MAINLINE 1200M N/O WINDY RIDGE TOLL PLAZA,12-241-CCTV-0304, 241 N 36.82
+241,N,37.49,-117.716851,33.844549,NB 241	 MAINLINE 2300M N/O WINDY RIDGE TOLL PLAZA,12-241-CCTV-0305, 241 N 37.49
+241,N,38.23,-117.716682,33.855312,NB 241	 MAINLINE 1100M S/O STATE ROUTE 91,12-241-CCTV-0306, 241 N 37.88
+241,N,38.73,-117.715309,33.862572,EB 91 TO SB 241 CONNECTOR,12-241-CCTV-0307, 241 N 37.88
+241,N,38.9,-117.717847,33.863899,NB 241 	TO EB 91 CONNECTOR,12-241-CCTV-0308, 241 N 37.88
+241,N,25.01,-117.692798,33.696032,NB 241 	MAINLINE 40M N/O PORTOLA PKWY,12-241-CCTV-0320, 241 N 25.15
+261,S,0.51,-117.795251,33.717511,SB 261 	MAINLINE 200M S/O 5 ,12-261-CCTV-0310, 261 S 0.5
+261,N,1.09,-117.786551,33.721729,NB 261 MAINLINE 100M S/O BRYAN AVE OC,12-261-CCTV-0311, 261 N 0.9
+261,N,1.56,-117.779771,33.725374,NB 261 MAINLINE 70M S/O IRVINE BLVD OC,12-261-CCTV-0312, 261 N 1.75
+261,N,2.25,-117.772494,33.733485,NB 261 	MAINLINE 370M N/O IRVINE BLVD NB TOLL PLAZA,12-261-CCTV-0313, 261 N 2.24
+261,N,2.81,-117.766989,33.740207,NB 261 	MAINLINE 80M S/O PORTOLA PKWY (WEST) OC,12-261-CCTV-0314, 261 N 2.71
+261,N,3.42,-117.764467,33.748823,NB 261 	MAINLINE 940M N/O PORTOLA PKWY (WEST) OC,12-261-CCTV-0315, 261 N 3.51
+261,N,4.03,-117.762075,33.757372,NB 261 	MAINLINE 1900M N/O PORTOLA PKWY	(WEST) OC,12-261-CCTV-0316, 261 N 4.14
+261,N,4.47,-117.758822,33.763138,NB 261 	MAINLINE 1500M S/O HANDY CREEK RD,12-261-CCTV-0317, 261 N 4.46
+261,N,5.78,-117.75298,33.780309,NB 261 	MAINLINE 290 M N/O HANDY CREEK RD,12-261-CCTV-0319, 261 N 5.64
+405,S,9.52,-117.88585,33.687014,SB 405 N/O BRISTOL ST,12-405-CCTV-0141, 405 S 9.54
+405,N,22.66,-118.075248,33.774809,NB 405 	SEAL BEACH BLVD,12-405-CCTV-0144, 405 N 22.55
+405,N,24.08,-118.091858,33.785005,NB 405 	S/O 605 ,12-405-CCTV-0146, 405 N 24.12
+405,N,12.75,-117.939242,33.697694,NB 405 	S/O EUCLID ST,12-405-CCTV-0220, 405 N 12.85
+405,N,13.72,-117.953395,33.70498,NB 405 	BROOKHURST ST,12-405-CCTV-0222, 405 N 13.74
+405,N,14.9,-117.967882,33.717071,NB 405 	WARNER  AVE,12-405-CCTV-0224, 405 N 14.82
+405,N,15.65,-117.977332,33.724707,NB 405 	S/O NEWLAND ST,12-405-CCTV-0225, 405 N 15.39
+405,N,17.79,-118.004946,33.74515,NB 405 	GOLDENWEST  AVE,12-405-CCTV-0227, 405 N 17.92
+605,N,0.81,-118.086796,33.794792,NB 605 S/O KATELLA AVE,12-605-CCTV-0147, 605 N 1.26
Index: trunk/webapps/cptms/data_layers/har_locations_D12.gjson
===================================================================
--- trunk/webapps/cptms/data_layers/har_locations_D12.gjson	(revision 327)
+++ trunk/webapps/cptms/data_layers/har_locations_D12.gjson	(revision 327)
@@ -0,0 +1,47 @@
+{
+  "type": "FeatureCollection",
+  "features": [
+  {
+  "type": "Feature",
+  "id": "HAR1",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.807584,33.728551]
+      },
+  "properties":
+      {
+      "location":"N I-5 28.54",
+      "street":"S/O REDHILL"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "HAR2",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.766893,33.687054]
+      },
+  "properties":
+      {
+      "location":"S I-5 24.78",
+      "street":"JEFFREY"
+      }
+  },
+  {
+  "type": "Feature",
+  "id": "HAR3",
+  "geometry":
+      {
+      "type": "Point",
+      "coordinates": [-117.847695,33.712247]
+      },
+  "properties":
+      {
+      "location":"N SR-55  8.21",
+      "street":"DYER ROAD"
+      }
+  }
+]
+}
Index: trunk/webapps/cptms/cptms.html
===================================================================
--- trunk/webapps/cptms/cptms.html	(revision 357)
+++ trunk/webapps/cptms/cptms.html	(revision 357)
@@ -0,0 +1,225 @@
+<!DOCTYPE html>
+<html>
+  <head>
+<!-- Launch with  python -m CGIHTTPServer 80  -->
+<!-- map center button icon from http://icons8.com/.  (Obligatory backlink, don't remove ) -->
+  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
+    <title>CPTMS Map v0.6.5</title> 
+<link rel="icon" 
+      type="image/png" 
+      href="images/favicon.png">
+  <!--  Styles  -->
+  <link rel="stylesheet" href="css/styles.css">
+  </head>
+  <body>
+    <!-- 
+         Version 6.5 Adjust cms dialog dimensions for Chrome.
+	     Version 6.4 Remove fullscreen control. (Use Browser F11 instead).
+         Version 6.3 decomposed into modules for each layer
+         Version 6.2 puts cctv and cms and vds in separate data layers.   
+         Version 6.1 Puts cms messages in json formatted file.  Polls for updates.
+         Version 6.0 Adds speed-dependent images to infowindow for cctv icons
+         Version 5.8 Adds an infowindow with a static image for all cctv icons
+         Version 5.7 integrates CCTV icons and button (but empty click handler)
+         Version 5.6 integrates CMS features
+         Version 5.5 renames title to CPTMS, loads static data on startup and dynamic data
+         every ten seconds.  
+         Version 5.4 adds Search box and Center button
+         Version 5.3 fixed dot color update defect, increased refresh rate to 10 sec.
+         Version 5.2 places red dots overlapping yellow dots.
+         Version 5.1 removes the map and street view buttons and the H3 tag.
+         Version 5 uses precomputed perpendicular vector in dot adjustment function
+         Version 4 Adjust the spacing between dots when the map is zoomed.
+         Version 3 does loadGeoJson only once, and subsequently does an ajax load
+         of the highways file, and selectively updates only those placePins whose
+         color has changed. 
+         @author jdalbey  2019.2.17
+    -->
+    <!-- The text area input for the Search Box -->
+    <input id="search-input" class="controls" type="text" placeholder="Search Box">
+    <!--The div element where the map appears. -->
+    <div id="mapdiv"></div>
+    <!-- The div element for the popup dialog. Best results when placed here. -->
+    <div id="cms-dialog" class="dialog">
+        <span id="cms-close" class="close">&#x2612;</span>  <!-- close button symbol -->
+        <br>
+        <div id="cms-info-label" style="font-family:'Courier New'">CMS ID: xxx LOCATION: </div>
+        <br>
+        <input id='cmsID' value="" type='hidden'/>
+        <div id="message-input">Phase 1:
+        <input id="msgcontent1" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br>
+        <input id="msgcontent2" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br>
+        <input id="msgcontent3" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br><br>
+        Phase 2:
+        <input id="msgcontent4" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br>
+        <input id="msgcontent5" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br>
+        <input id="msgcontent6" class="cms-input"  maxlength="16" type="text" oninput="this.value = this.value.toUpperCase()"/><br><br>
+        </div>        
+        <div id="buttonPanel"    style="display: block;"><br><br>
+        <button onclick="handleCMSsubmit();">Send >></button><br><br>
+        <button onclick="handleCMSclear();">Clear >></button><br><br>
+        <button onclick="handleDialogClose('cms-dialog');">Close </button>
+        </div>
+        <div id="cms-message-display"  style="display: block;">Current:
+         <textarea class="cms_sign" readonly id="msgdisplay1" maxlength="16" rows="1" cols="16"></textarea>
+         <textarea class="cms_sign" readonly id="msgdisplay2" maxlength="16" rows="1" cols="16"></textarea>
+         <textarea class="cms_sign" readonly id="msgdisplay3" maxlength="16" rows="1" cols="16"></textarea>
+         <br><br>
+         <textarea class="cms_sign" readonly id="msgdisplay4" maxlength="16" rows="1" cols="16"></textarea>
+         <textarea class="cms_sign" readonly id="msgdisplay5" maxlength="16" rows="1" cols="16"></textarea>
+         <textarea class="cms_sign" readonly id="msgdisplay6" maxlength="16" rows="1" cols="16"></textarea>
+        </div>
+    </div>
+    <div id="har-dialog" class="dialog">
+        <span id="har-close" class="close">&#x2612;</span>  <!-- close button symbol -->
+        <div id="har-info-label" style="font-family:'Courier New'">HAR ID: xxx LOCATION: </div>
+        <br>
+        <input id='harID' value="" type='hidden'/>
+        <!--div id="har-message-input"-->Proposed:<br>
+        <input id="har-msgcontent1" class="har-input" type="text" size="50" oninput="this.value = this.value.toUpperCase()"><br>
+        <!--textarea id="har-msgcontent1" maxlength="150" rows="2" cols="50"/><br><br-->
+
+        <div id="har-buttonPanel" style="display: block;"><br>
+        <button onclick="handleHARsubmit();">Send >></button>
+        <button onclick="handleHARclear();">Clear >></button>
+        <button onclick="handleDialogClose('har-dialog');">Close </button><br><br>
+        </div>
+        <div id="har-message-display"  style="display: block;">Current:<br>
+         <textarea readonly id="har-msgdisplay1" maxlength="150" rows="3" cols="50"></textarea>
+        </div>
+    </div>
+    <!--The div elements where the buttons appear  -->
+    <div id="ctrButton"><img width="30" src="images/btn_mapcenter.png"</div>
+    <button id="harButton" class="unstyled-button"><img id="harBtnImg" src="images/btnReady_HAR.png"></button>
+    <button id="cctvButton" class="unstyled-button"><img id="cctvBtnImg" src="images/btnReady_CCTV.png"></button>
+    <button id="cmsButton" class="unstyled-button"><img id="cmsBtnImg" src="images/btnReady_CMS.png"></button>
+    <button id="vdsButton" class="unstyled-button"><img id="vdsBtnImg" src="images/btnDepressed_VDS.png"></button>
+    <script>
+
+    // a global variable for the google map
+    var map;
+    // a global dictionary to lookup a station's original coordinates
+    var vds_coords = {};
+    // a global variable to hold locations of marked search places
+    var placePins = [];
+    // the cms message local dictionary
+    var messageDict = {}; 
+    // the har message local dictionary
+    var HARmessageDict = {}; 
+    // Constant for map center location: The John Wayne Airport
+    //var centerPoint = {lat: 33.687228, lng: -117.872148};
+    // Constant for map center location in District 12
+    var centerPoint = {
+        lat: 33.693385,
+        lng: -117.798937
+    };
+    // Initial map zoom
+    var initZoom = 11;
+    // Dot colors used in traffic model to indicate free-flowing, slowed, and stopped traffic
+    // and their associated zvalues so slower traffic dots are more visible.
+    // white means a disabled spot
+    var colorZvalues = {
+        "white": 5,
+        "lime": 10,
+        "yellow": 20,
+        "red": 30
+    };
+
+    var kVDSstatusFile = "highway_status.json"; // dynamic json data file created by CADserver
+    var kMapStartupFile = "data_layers/highways_startup.json"; // initial (static) highways file used once at startup
+    var kCMSfile = "data_layers/cms_locations_D12.gjson"; // CMS locations 
+    var kCCTVfile = "data_layers/cctv_locations_D12.gjson"; // CCTV locations
+    var kHARfile = "data_layers/har_locations_D12.gjson"; // CMS locations 
+    var iconCMSactive = "images/icon_cms_active.png";
+    var iconCMSidle = "images/icon_cms_idle.png";
+    var cctvIcon = "images/icon_cctvCyan.png";
+    var cctvIconWhite = "images/icon_cctvWhite.png";
+    var iconVDSgreen = "images/circle_green.png"
+    var iconVDSyellow = "images/circle_yellow.png"
+    var iconVDSred = "images/circle_red.png"
+    var iconVDSwhite = "images/circle_white.png"
+    var iconHARactive = "images/icon_har_active.png";
+    var iconHARidle = "images/icon_har_idle.png";
+    var cms_showing = false;
+    var vds_showing = true;
+    var cctv_showing = false;
+    var har_showing = false;
+    var cctv_infowindow; // We create just a single instance of info window.
+
+
+    // Initialize the view/hide buttons 
+    function initLayerButtons()
+    {
+        initHARbutton();
+        initCCTVbutton();
+        initCMSbutton();
+        initVDSbutton();
+    }
+
+    // Initialize the map and load the points
+    function initMap()
+    {
+        // Declare the map and where it belongs on the page
+        map = new google.maps.Map(document.getElementById('mapdiv'),
+        {
+            zoom: initZoom,
+            center: centerPoint,
+            styles: night_mode,
+            mapTypeControl: false,
+            streetViewControl: false,
+			fullscreenControl: false
+        });
+
+        // setup the search box and center button
+        initSearch();
+        initCenter();
+
+        loadVDSlayer(); // go load the map data
+        loadCMSlayer();
+        loadCCTVlayer();
+        loadHARlayer();
+
+        initLayerButtons(); // setup the show/hide layer buttons
+
+        // Start a timer to refresh the vds dots every 10 seconds
+        var myTimer = setInterval(updateVDSlayer, 10000);
+        // start an interval timer to refresh the cms icons every 10 seconds
+        var cmsTimer = setInterval(loadAllcmsMessages, 10000);
+
+        // start an interval timer to refresh the har icons every 10 seconds
+        var harTimer = setInterval(loadAllharMessages, 10000);
+
+        // Listen for zoom changes and move the vds dots so as to keep a nice
+        // visual distance between them appropriate to the zoom factor
+        map.addListener('zoom_changed', function()
+        {
+            // fetch how much the map is currently zoomed
+            currentZoom = map.getZoom();
+            // only bother adjusting within this range
+            if ((currentZoom < 16) && (currentZoom > 10))
+            {
+                // magic formula controls distance between dots
+                adjustCoords(calcDistanceFactor());
+            }
+        });
+
+    }
+
+    </script>
+    <script  src="js/common.js"></script>
+    <script  src="js/vdsLayer.js"></script>
+    <script  src="js/cmsLayer.js"></script>
+    <script  src="js/cctvLayer.js"></script>
+    <script  src="js/harLayer.js"></script>
+    <script  src="js/controls.js"></script>
+    <script  src="js/night_mode.js"></script>
+
+    <!-- Project API Key -->
+    <script async defer
+    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCJuoPR3s6_qekC-GA1v5rvTcVocL3AXHE&libraries=places&callback=initMap"></script>
+
+<!--
+export GOOGLE_APPLICATION_CREDENTIALS="/home/<path to file>/TMC Simulator-c3ae15ddb96b.json"
+-->
+  </body>
+</html>
Index: trunk/webapps/cptms/gototime.html
===================================================================
--- trunk/webapps/cptms/gototime.html	(revision 348)
+++ trunk/webapps/cptms/gototime.html	(revision 348)
@@ -0,0 +1,91 @@
+<html>
+<head>
+<style>
+.pic-container {
+    width: 500px;
+    height: 400px;
+    overflow-y: scroll;
+    overflow-x:hidden;
+}
+</style>
+<body>
+<!-- Prototype for a display that scrolls to the current time -->
+<div id="timediv">0:00</div>
+<div> <button onclick="scrollToCurrent()">Goto Current Item</button></div>
+<div id="main" class="pic-container"></div>
+<div id="two">Footer</div>
+<script   src="poem.js"></script>
+<script  src="js/common.js"></script>
+<script>
+var timeDiv = document.getElementById("timediv");
+/** Load the sim clock file and extract the clock string */
+function gettime()
+{
+    loadJSON("sim_clock.json", function(response)
+    {
+        simclockjson = JSON.parse(response);
+        clockstring = simclockjson.clock;
+        timeDiv.innerHTML = clockstring;  // Display current time
+        // Extract the seconds digits
+        digits = clockstring.substring(clockstring.length-2)
+        if (digits.charAt(0) == "0")
+        {
+            digits = digits.charAt(1);
+        }
+        // go adjust the scrolling box
+        adjust(digits);
+    });
+}
+// Highlight the current line and scroll to it.
+function adjust(currLine)
+{
+    if (currElement != null)
+    {
+        // Find the element with the id = seconds digits
+        target = document.getElementById(currLine)
+        if (target != null)
+        {
+            // restore the previous element's background color
+            currElement.style.background = "GhostWhite";
+            currElement = target;
+            currElement.style.background = "Gainsboro"; // set background color
+            //currElement.scrollTop = 0;
+            currElement.scrollIntoView();  // scroll to it
+        }
+    }
+}
+
+function scrollToCurrent()
+{
+    currTime = timediv.innerHTML;
+    target = document.getElementById(currTime)
+    target.scrollIntoView();  // scroll to it
+    target.style.background = "Gainsboro"; // set background color
+}
+// Split a poem into lines
+var fields = poem.split('\n');
+// Place each line in its own DIV with a sequential ID
+for (item in fields)
+{
+    var div = document.createElement("div");
+    var measuredTime = new Date(null);
+    measuredTime.setSeconds(item*5); // specify value of SECONDS
+    var MHSTime = measuredTime.toISOString().substr(12, 7);
+    div.id=MHSTime
+    div.style.color = "black";
+    div.style.background = "GhostWhite";
+    div.innerHTML = fields[item]; // place poem line as content
+    // Append it to the parent div
+    document.getElementById("main").appendChild(div);
+}
+
+var currLine = 1;
+var currElement = document.getElementById("10");
+// Go get the current sim time every second
+var myinterval = setInterval(gettime,1000);
+//clearTimeout(myVar);
+ 
+</script>
+</body>
+
+</html>
Index: trunk/webapps/cptms/cms_monitor.html
===================================================================
--- trunk/webapps/cptms/cms_monitor.html	(revision 331)
+++ trunk/webapps/cptms/cms_monitor.html	(revision 331)
@@ -0,0 +1,114 @@
+<!DOCTYPE html>
+<html>
+  <head>
+<!-- Launch with  python -m CGIHTTPServer 80  -->
+  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
+    <title>CMS Monitor v0.2</title> 
+<style>
+* {
+  box-sizing: border-box;
+}
+body {
+   background-color: #000033;
+}
+/* Create three unequal columns that float next to each other */
+.column {
+  float: left;
+  padding: 10px;
+  background-color:black; 
+  color:goldenrod
+}
+
+.left {
+  width: 50%;
+}
+
+.middle, .right {
+  width: 25%;
+}
+
+/* Clear floats after the columns */
+.row:after {
+  content: "";
+  display: table;
+  clear: both;
+}
+</style>
+</head>
+<body>
+<div class="row">
+  <div class="column left" >
+    <h2>Active CMS Messages</h2>
+    <p id="msgs"></p>
+  </div>
+  <div class="column middle" >
+    <h2>Active HAR Messages</h2>
+    <p>Not implemented yet.</p>
+  </div>
+  <div class="column right" >
+    <h2>Active Lane Closures</h2>
+    <p>Not implemented yet.</p>
+  </div>
+</div>
+
+
+    <script  src="js/common.js"></script>
+   <script>
+    var cmsLocations = {};
+    // Load the CMS locations from the geojson file
+    function loadCMSlocations()
+    {
+        loadJSON("data_layers/cms_locations_D12.gjson", function(response)
+        {
+            // Parse JSON string into object
+            var cmsjson = JSON.parse(response);
+            for (var i = 0; i < cmsjson.features.length; i++)
+            {
+                var item = cmsjson.features[i];
+                // Add each item to a lookup dictionary
+                cmsLocations[item.id] = item;
+            }
+        });
+    }
+    // Load the file of CMS messages
+    function loadAllcmsMessages()
+    {
+        var display = document.getElementById("msgs");
+        display.innerHTML = ""
+        loadJSON("cms_messages.json", function(response)
+        {
+            // Parse JSON string into object
+            messagejson = JSON.parse(response);
+            // Consider each message 
+            for (var i = 0; i < messagejson.data.length; i++)
+            {
+                var item = messagejson.data[i];
+                // Find the location for this message
+                var cmsLoc = cmsLocations[item.cms.index];
+                // Build the message display
+                var current = (item.cms.message.phase1.Line1.toUpperCase() + ":" +
+                    item.cms.message.phase1.Line2.toUpperCase() + ":" +
+                    item.cms.message.phase1.Line3.toUpperCase() + ":" +
+                    item.cms.message.phase2.Line1.toUpperCase() +  ":" +
+                    item.cms.message.phase2.Line2.toUpperCase() + ":" +
+                    item.cms.message.phase2.Line3.toUpperCase())
+                // If the message isn't blank, append it to the list
+                if (current != ":::::")
+                {
+                    display.innerHTML += "<br>" + item.cms.index + ": " + 
+                        cmsLoc.properties.location + " " + cmsLoc.properties.street;
+                    display.innerHTML += "<br>" + current + "<br>";
+                }
+            }
+        });
+    }
+
+// Start
+loadCMSlocations();
+loadAllcmsMessages();
+// start an interval timer to refresh the cms icons every 10 seconds
+var cmsTimer = setInterval(loadAllcmsMessages, 10000);
+
+   </script>
+  </body>
+</html>
Index: trunk/webapps/cptms/runTimer.py
===================================================================
--- trunk/webapps/cptms/runTimer.py	(revision 348)
+++ trunk/webapps/cptms/runTimer.py	(revision 348)
@@ -0,0 +1,21 @@
+#!/usr/bin/python
+# Run a timer and save it to a file
+import time
+from datetime import timedelta
+count = 0
+while True:
+    # Code executed here
+    time.sleep(1)
+    count += 1
+    elapsedTime = timedelta(seconds=count)
+    # convert integer into hh:mm:ss format
+    lineout =  "{\"clock\":\"" + str(elapsedTime) + "\"}"
+    
+    # write message to file
+    text_file = open("sim_clock.json", "w")
+    text_file.write(lineout)
+    text_file.close()
+
+    print count
+
+
