Index: trunk/src/cptms/cptms_map_v55.html
===================================================================
--- trunk/src/cptms/cptms_map_v55.html	(revision 286)
+++ trunk/src/cptms/cptms_map_v55.html	(revision 291)
@@ -82,5 +82,6 @@
     // 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.
-    var colorZvalues = {"lime":10,"yellow":20,"red":30};
+    // white means a disabled spot
+    var colorZvalues = {"white":5,"lime":10,"yellow":20,"red":30};
 
     // Build a solid colored icon to use instead of the classic pin
@@ -116,5 +117,4 @@
         map.data.setStyle(function(feature) 
         {
-            //console.log(feature.getId() + " " + feature.getGeometry().get());
             // Get the postmile id 
             var name = feature.getId();
@@ -152,5 +152,5 @@
     function calcDistanceFactor()
     {
-        // 15 is maximum zoom, the point at which no adjusment is needed
+        // 15 is maximum zoom, the point at which no adjustment is needed
         return (.0005*(15-map.getZoom()));  
     }
@@ -162,5 +162,4 @@
     function adjustCoords(adjAmount)
     {
-        //console.log("adjusting coordinates");
         // Adjust the NB points a slight amount
         map.data.forEach(function(feature)
@@ -195,5 +194,4 @@
             // set zIndex for slowed traffic to a higher value so they overlap
             currentFeature.setProperty("zIndex", colorZvalues[newColor]);
-            //console.log(target+" updated to "+newColor);
         }
      }
@@ -341,5 +339,4 @@
             // fetch how much the map is currently zoomed
             currentZoom = map.getZoom(); 
-            //console.log("Zoom changed to ",currentZoom);
             // only bother adjusting within this range
             if ((currentZoom <16) && (currentZoom>10))
Index: trunk/src/cptms/scaling_dotsize_prototype.html
===================================================================
--- trunk/src/cptms/scaling_dotsize_prototype.html	(revision 284)
+++ trunk/src/cptms/scaling_dotsize_prototype.html	(revision 291)
@@ -7,5 +7,5 @@
       /* Set the size of the div element that contains the map */
       #mapdiv {
-        height: 550px;  // or  height: 100%
+        height: 550px;  
         width: 100%;  
        }
Index: trunk/src/cptms/stms_map_v54a.html
===================================================================
--- trunk/src/cptms/stms_map_v54a.html	(revision 284)
+++ 	(revision )
@@ -1,429 +1,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
-    <title>CPTMS Map v0.5.5</title> 
-    <style>
-      /* 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;
-      }
-      #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 {
-        font-size: 40px;
-        margin-right: 9px;
-        background-color: #fff;
-        color: #47476b;
-        cursor: pointer;
-      }
-
-    </style>
-  </head>
-  <body>
-    <!-- Version 5.5 renames title to CPTMS
-         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 where the center button appears -->
-    <div id="ctrButton">&#x2295;</div>
-    <script>
-    // a global variable for the google map
-    var map;  
-    // a global variable to hold locations of marked search places
-    var placePins = [];
-    // Constant name of json data file
-    var kMapPointsFile = "highways.json";
-    // 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.
-    var colorZvalues = {"lime":10,"yellow":20,"red":30};
-
-    // Build a solid colored icon to use instead of the classic pin
-    // Use a diamond on N and E directions, circle on S and W directions
-    function dotSymbol(color,postmileID) //,direction)
-    {
-        var circle = google.maps.SymbolPath.CIRCLE;
-        var diamond = 'M -1,0 0,-1 1,0 0,1 z';
-        var myShape = circle;
-        // See if postmile name contains N or W letters
-        //if ((postmileID.indexOf('N') != -1) || (postmileID.indexOf('W') != -1))
-        //{
-        //   myShape = diamond
-        //}
-        return {
-            path: myShape,
-            scale: 5,
-            strokeColor: "black", // the border color
-            strokeWeight: 1,      // the border thickness
-            fillColor: color,
-            fillOpacity: 1.0
-        };
-    }
-
-    // Load the map data from a json file and style all the points
-    function loadMapData()
-    {
-        // Load the map data
-        map.data.loadGeoJson(kMapPointsFile);
-        // Style the map data by applying the desired properties to each feature (marker)
-        map.data.setStyle(function(feature) 
-        {
-            // Get the desired color value
-            var ptColor = feature.getProperty("color");
-            // Get the postmile id 
-            var name = feature.getId();
-            var street = feature.getProperty("street");
-            // Build the marker
-            var iconSymbol = dotSymbol(ptColor,name);
-            // 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]
-                   };
-        });
-    }
-
-    // magic formula controls distance between dots proportionate to zoom factor
-    function calcDistanceFactor()
-    {
-        // 15 is maximum zoom, the point at which no adjusment 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)
-    {
-        //console.log("adjusting coordinates");
-        // 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 name in the list of placePins
-            var marker = parsed_JSON.features.find(function(element)
-                {
-                    return element.id == name;
-                });
-            // extract the original coordinates
-            origLat = marker.geometry.coordinates[1];
-            origLong = marker.geometry.coordinates[0];
-
-            //retrieve the perpendicular vector (precomputed)
-            var perpx = feature.getProperty("perpx")
-            var perpy = feature.getProperty("perpy")
-            // Make adjustment and save it
-            var myLat = origLat + perpy * adjAmount
-            var myLong = origLong + 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");
-        //console.log("current color:",currentColor," newColor: ",newColor);
-        // 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]);
-            //console.log(target+" updated to "+newColor);
-        }
-     }
-
-    // Load the highways file via ajax
-    // Ref: https://codepen.io/KryptoniteDove/post/load-json-file-locally-using-pure-javascript
-     function loadJSON(callback) {   
-
-        var xobj = new XMLHttpRequest();
-            xobj.overrideMimeType("application/json");
-        xobj.open('GET', kMapPointsFile, true); 
-        xobj.onreadystatechange = function () {
-              if (xobj.readyState == 4 && xobj.status == "200") {
-                // Required use of an anonymous callback as .open will NOT return a value but simply returns undefined in asynchronous mode
-                callback(xobj.responseText);
-              }
-        };
-        xobj.send(null);  
-     }
-
-     var parsed_JSON;
-     // Load the highways json file and update the map
-     function updateMap()
-     {
-        loadJSON(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);
-        });
-     }
-
-    // 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 = [];
-    }
-
-    // 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  
-        });
-        initSearch();
-        initCenter();
-        loadMapData();  // go load the map data
-        // After a brief pause to let map finish loading ...
-        quiktimer = setTimeout("updateMap()",3000);
-        // go adjust the marker coordinates so dots don't overlap
-        quiktimer = setTimeout("adjustCoords(calcDistanceFactor())",3500);  
-        // Start a timer to refresh the map every 10 seconds
-        var myTimer = setInterval(updateMap, 10000);
-        // Listen for zoom changes and move the placePins 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(); 
-            //console.log("Zoom changed to ",currentZoom);
-            // only bother adjusting within this range
-            if ((currentZoom <16) && (currentZoom>10))
-            {
-                // magic formula controls distance between dots
-                factor = (.0005*(15-currentZoom));  
-                adjustCoords(calcDistanceFactor());
-            }
-        });
-
-    }
-
-    // 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'}]
-                }
-              ]
-
-    // Using John's API Key
-    </script>
-    <script async defer
-    src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD6iTyN0DjP-9OVkAgicyp4tkC10naE_B8&libraries=places&callback=initMap">
-    </script>
-  </body>
-</html>
Index: trunk/src/cptms/highways.json
===================================================================
--- trunk/src/cptms/highways.json	(revision 284)
+++ 	(revision )
@@ -1,12155 +1,0 @@
-{
- "type": "FeatureCollection",
- "features": [
-  {
-  "type": "Feature",
-  "id": "1 S 12.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828018,33.565462]
-      },
-      "properties": {"street":"1 SB REEF POINT DR", "color":"red", "perpx":"-0.547592", "perpy":"-0.836745"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 12.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828018,33.565462]
-      },
-      "properties": {"street":"1 SB REEF POINT DR", "color":"red", "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":"salmon", "perpx":"-0.713433", "perpy":"-0.700723"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 12.78",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833412,33.568992]
-      },
-      "properties": {"street":"1 SB CRYSTAL HEIGHTS", "color":"salmon", "perpx":"0.71338", "perpy":"0.700778"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 13.36",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.839807,33.575503]
-      },
-      "properties": {"street":"1 SB LOS TRANCOS", "color":"deeppink", "perpx":"-0.713433", "perpy":"-0.700723"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 13.36",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.839807,33.575502]
-      },
-      "properties": {"street":"1 SB LOS TRANCOS", "color":"deeppink", "perpx":"0.71338", "perpy":"0.700778"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 16.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876053,33.605675]
-      },
-      "properties": {"street":"1 NB AVOCADO AVE", "color":"coral", "perpx":"-0.566243", "perpy":"-0.824239"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 16.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875914,33.605811]
-      },
-      "properties": {"street":"1 NB AVOCADO AVE", "color":"coral", "perpx":"0.565236", "perpy":"0.82493"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 17.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.883631,33.610881]
-      },
-      "properties": {"street":"1 NB IRVINE TERRACE", "color":"orangered", "perpx":"-0.566243", "perpy":"-0.824239"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 17.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.883525,33.611026]
-      },
-      "properties": {"street":"1 NB IRVINE TERRACE", "color":"orangered", "perpx":"0.565236", "perpy":"0.82493"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 17.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.893843,33.613228]
-      },
-      "properties": {"street":"1 NB PROMONTORY PT", "color":"yellow", "perpx":"-0.399609", "perpy":"-0.916686"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 17.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.893777,33.613432]
-      },
-      "properties": {"street":"1 NB PROMONTORY PT", "color":"yellow", "perpx":"0.37769", "perpy":"0.925932"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 18.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.900679,33.616208]
-      },
-      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"khaki", "perpx":"-0.399609", "perpy":"-0.916686"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 18.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.900661,33.61624]
-      },
-      "properties": {"street":"1 NB BAYSIDE DRIVE", "color":"khaki", "perpx":"0.37769", "perpy":"0.925932"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 18.83",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.913849,33.61612]
-      },
-      "properties": {"street":"1 NB BALBOA BAY", "color":"purple", "perpx":"-0.371678", "perpy":"-0.928362"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 18.83",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.913843,33.616119]
-      },
-      "properties": {"street":"1 NB BALBOA BAY", "color":"purple", "perpx":"0.380476", "perpy":"0.924791"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 S 19.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.924432,33.620357]
-      },
-      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"slateblue", "perpx":"-0.133399", "perpy":"-0.991062"}
-  },
-  {
-  "type": "Feature",
-  "id": "1 N 19.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.924387,33.620457]
-      },
-      "properties": {"street":"1 SB RIVERSIDE AVE", "color":"slateblue", "perpx":"0.140764", "perpy":"0.990043"}
-  },
-  {
-  "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": "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": "5 S 1.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.602338,33.41325]
-      },
-      "properties": {"street":"MAGDALENA", "color":"red", "perpx":"-0.9013", "perpy":"-0.433194"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 1.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.6021,33.413319]
-      },
-      "properties": {"street":"MAGDALENA", "color":"red", "perpx":"0.891749", "perpy":"0.45253"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 2.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.615724,33.432273]
-      },
-      "properties": {"street":"PALIZADA", "color":"salmon", "perpx":"-0.768234", "perpy":"-0.640169"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 2.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.615519,33.432425]
-      },
-      "properties": {"street":"PALIZADA", "color":"salmon", "perpx":"0.698551", "perpy":"0.71556"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 3.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.619943,33.437336]
-      },
-      "properties": {"street":"PICO 1", "color":"deeppink", "perpx":"-0.498994", "perpy":"-0.866606"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 3.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.619773,33.43749]
-      },
-      "properties": {"street":"PICO 1", "color":"deeppink", "perpx":"0.498751", "perpy":"0.866745"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 3.56",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.624646,33.440044]
-      },
-      "properties": {"street":"PICO 2", "color":"coral", "perpx":"-0.605568", "perpy":"-0.795794"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 3.56",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.624486,33.440202]
-      },
-      "properties": {"street":"PICO 2", "color":"coral", "perpx":"0.498751", "perpy":"0.866745"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 4.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.631557,33.445303]
-      },
-      "properties": {"street":"HERMOSA 2", "color":"orangered", "perpx":"-0.605568", "perpy":"-0.795794"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 4.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.631445,33.445434]
-      },
-      "properties": {"street":"HERMOSA 2", "color":"orangered", "perpx":"0.600745", "perpy":"0.799441"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.640023,33.450269]
-      },
-      "properties": {"street":"S OF VAQUERO", "color":"yellow", "perpx":"-0.478189", "perpy":"-0.878257"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.639897,33.450411]
-      },
-      "properties": {"street":"S OF VAQUERO", "color":"yellow", "perpx":"0.480833", "perpy":"0.876812"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 5.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.648005,33.454615]
-      },
-      "properties": {"street":"N OF VAQUERO", "color":"khaki", "perpx":"-0.395835", "perpy":"-0.918322"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 5.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.647864,33.45478]
-      },
-      "properties": {"street":"N OF VAQUERO", "color":"khaki", "perpx":"0.393632", "perpy":"0.919268"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 5.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.650318,33.455612]
-      },
-      "properties": {"street":"N OF VAQUERO", "color":"purple", "perpx":"-0.443289", "perpy":"-0.896379"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 5.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.650183,33.455773]
-      },
-      "properties": {"street":"N OF VAQUERO", "color":"purple", "perpx":"0.393632", "perpy":"0.919268"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 6.47",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.665631,33.464281]
-      },
-      "properties": {"street":"SACRAMENTO", "color":"slateblue", "perpx":"-0.56275", "perpy":"-0.826627"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 6.47",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.665509,33.464404]
-      },
-      "properties": {"street":"SACRAMENTO", "color":"slateblue", "perpx":"0.523797", "perpy":"0.851843"}
-  },
-  {
-  "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 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 S 7.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.669881,33.481738]
-      },
-      "properties": {"street":"AEROPUERTO", "color":"lightgreen", "perpx":"-0.815879", "perpy":"0.578222"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 7.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.669596,33.481685]
-      },
-      "properties": {"street":"AEROPUERTO", "color":"lightgreen", "perpx":"0.816519", "perpy":"-0.577318"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 9.15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.659442,33.496001]
-      },
-      "properties": {"street":"PLAZA", "color":"cyan", "perpx":"-0.971491", "perpy":"0.237077"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 9.15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.659127,33.495938]
-      },
-      "properties": {"street":"PLAZA", "color":"cyan", "perpx":"0.972984", "perpy":"-0.230873"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 9.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.658583,33.499521]
-      },
-      "properties": {"street":"ORTEGA 1", "color":"blue", "perpx":"-0.996721", "perpy":"-0.080919"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 9.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.658278,33.499516]
-      },
-      "properties": {"street":"ORTEGA  1", "color":"blue", "perpx":"0.972984", "perpy":"-0.230873"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 9.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.65892,33.503672]
-      },
-      "properties": {"street":"ORTEGA  2", "color":"slategray", "perpx":"-0.996721", "perpy":"-0.080919"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 9.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.658585,33.503727]
-      },
-      "properties": {"street":"ORTEGA  2", "color":"slategray", "perpx":"0.971921", "perpy":"0.235307"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 10.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.661127,33.5093]
-      },
-      "properties": {"street":"EL HORNO", "color":"red", "perpx":"-0.918881", "perpy":"-0.394535"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 10.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.660803,33.50939]
-      },
-      "properties": {"street":"EL HORNO", "color":"red", "perpx":"0.920027", "perpy":"0.391855"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 10.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.662905,33.513441]
-      },
-      "properties": {"street":"SERRA PARK", "color":"salmon", "perpx":"-0.920608", "perpy":"-0.390487"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 10.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.662568,33.513534]
-      },
-      "properties": {"street":"SERRA PARK", "color":"salmon", "perpx":"0.919833", "perpy":"0.392311"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 10.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.664664,33.517588]
-      },
-      "properties": {"street":"JUNIPERO SERRA", "color":"deeppink", "perpx":"-0.920608", "perpy":"-0.390487"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 10.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.664335,33.517677]
-      },
-      "properties": {"street":"JUNIPERO SERRA", "color":"deeppink", "perpx":"0.919833", "perpy":"0.392311"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 11.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.6667,33.522341]
-      },
-      "properties": {"street":"JUNIPERO SERRA", "color":"coral", "perpx":"-0.878964", "perpy":"-0.476887"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 11.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.666382,33.52247]
-      },
-      "properties": {"street":"JUNIPERO SERRA", "color":"coral", "perpx":"0.924678", "perpy":"0.38075"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 11.37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.668912,33.526418]
-      },
-      "properties": {"street":"TRABUCO", "color":"orangered", "perpx":"-0.878964", "perpy":"-0.476887"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 11.37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.66866,33.526621]
-      },
-      "properties": {"street":"TRABUCO", "color":"orangered", "perpx":"0.874948", "perpy":"0.484218"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 11.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.674919,33.53231]
-      },
-      "properties": {"street":"WILDWOOD", "color":"yellow", "perpx":"-0.999508", "perpy":"0.03137"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 11.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.674488,33.53247]
-      },
-      "properties": {"street":"WILDWOOD", "color":"yellow", "perpx":"0.999898", "perpy":"-0.014276"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 12.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.673404,33.545217]
-      },
-      "properties": {"street":"AVERY 1", "color":"khaki", "perpx":"-0.993564", "perpy":"0.113275"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 12.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.673098,33.545242]
-      },
-      "properties": {"street":"AVERY 1", "color":"khaki", "perpx":"0.993425", "perpy":"-0.114487"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 13.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672993,33.548822]
-      },
-      "properties": {"street":"AVERY PARK", "color":"purple", "perpx":"-0.993564", "perpy":"0.113275"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 13.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672686,33.548817]
-      },
-      "properties": {"street":"AVERY PARK", "color":"purple", "perpx":"0.999609", "perpy":"-0.027961"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 13.87",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.673112,33.560545]
-      },
-      "properties": {"street":"CROWN VA2", "color":"slateblue", "perpx":"-0.999988", "perpy":"0.004899"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 13.87",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672791,33.560549]
-      },
-      "properties": {"street":"CROWN VA2", "color":"slateblue", "perpx":"0.996005", "perpy":"-0.089297"}
-  },
-  {
-  "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 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 S 15.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.671829,33.588522]
-      },
-      "properties": {"street":"CERVANTES", "color":"lightgreen", "perpx":"-0.999911", "perpy":"0.013321"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 15.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.671484,33.588603]
-      },
-      "properties": {"street":"CERVANTES", "color":"lightgreen", "perpx":"0.999908", "perpy":"-0.01358"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 18.17",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.700998,33.609505]
-      },
-      "properties": {"street":"ANKERTON", "color":"cyan", "perpx":"-0.573702", "perpy":"-0.819064"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 18.17",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.70083,33.60972]
-      },
-      "properties": {"street":"ANKERTON", "color":"cyan", "perpx":"0.59407", "perpy":"0.804413"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 19.33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.714838,33.621819]
-      },
-      "properties": {"street":"RED ROBIN", "color":"blue", "perpx":"-0.735437", "perpy":"-0.677593"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 19.33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.714379,33.621929]
-      },
-      "properties": {"street":"RED ROBIN", "color":"blue", "perpx":"0.73619", "perpy":"0.676774"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 20.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724695,33.631888]
-      },
-      "properties": {"street":"OLDFIELD", "color":"slategray", "perpx":"-0.650261", "perpy":"-0.759711"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 20.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724216,33.631998]
-      },
-      "properties": {"street":"OLDFIELD", "color":"slategray", "perpx":"0.651823", "perpy":"0.758371"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 20.24",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724813,33.631989]
-      },
-      "properties": {"street":"OLDFIELD", "color":"red", "perpx":"-0.737725", "perpy":"-0.675102"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 20.24",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724337,33.632102]
-      },
-      "properties": {"street":"OLDFIELD", "color":"red", "perpx":"0.735536", "perpy":"0.677486"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 20.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.728446,33.635959]
-      },
-      "properties": {"street":"BAKE 1", "color":"salmon", "perpx":"-0.737725", "perpy":"-0.675102"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 20.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72806,33.636144]
-      },
-      "properties": {"street":"BAKE 1", "color":"salmon", "perpx":"0.735536", "perpy":"0.677486"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 21.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.734722,33.643978]
-      },
-      "properties": {"street":"At 405", "color":"deeppink", "perpx":"-0.792319", "perpy":"-0.610107"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 21.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.734444,33.644068]
-      },
-      "properties": {"street":"At 405", "color":"deeppink", "perpx":"0.77975", "perpy":"0.626091"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 22.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.74294,33.654255]
-      },
-      "properties": {"street":"ALTON 1", "color":"coral", "perpx":"-0.78542", "perpy":"-0.618963"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 22.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.742629,33.654371]
-      },
-      "properties": {"street":"ALTON 2", "color":"coral", "perpx":"0.780869", "perpy":"0.624695"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 22.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.749253,33.662021]
-      },
-      "properties": {"street":"BARRANCA", "color":"orangered", "perpx":"-0.788481", "perpy":"-0.615059"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 22.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.748817,33.662274]
-      },
-      "properties": {"street":"BARRANCA", "color":"orangered", "perpx":"0.770018", "perpy":"0.638022"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 23.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.75203,33.665581]
-      },
-      "properties": {"street":"S OF 133", "color":"yellow", "perpx":"-0.781645", "perpy":"-0.623724"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 23.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.751722,33.66578]
-      },
-      "properties": {"street":"S OF 133", "color":"yellow", "perpx":"0.776343", "perpy":"0.630311"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753539,33.667502]
-      },
-      "properties": {"street":"5S TO 133S/BARA", "color":"khaki", "perpx":"-0.809521", "perpy":"-0.587091"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753237,33.667646]
-      },
-      "properties": {"street":"N OF 133", "color":"khaki", "perpx":"0.776343", "perpy":"0.630311"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 23.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.755616,33.6716]
-      },
-      "properties": {"street":"S OF SAND CNYN", "color":"purple", "perpx":"-0.975596", "perpy":"-0.219572"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 23.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.755266,33.671657]
-      },
-      "properties": {"street":"S OF SAND CNYN", "color":"purple", "perpx":"0.972906", "perpy":"0.2312"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 23.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.756223,33.674297]
-      },
-      "properties": {"street":"SAND CANYON 1", "color":"slateblue", "perpx":"-0.809826", "perpy":"-0.58667"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 23.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.75591,33.674367]
-      },
-      "properties": {"street":"SAND CANYON 1", "color":"slateblue", "perpx":"0.813783", "perpy":"0.581169"}
-  },
-  {
-  "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 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 S 24.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.764425,33.683599]
-      },
-      "properties": {"street":"N OF SAND CNYN", "color":"lightgreen", "perpx":"-0.835705", "perpy":"-0.549178"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 24.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.76413,33.68378]
-      },
-      "properties": {"street":"N OF SAND CNYN", "color":"lightgreen", "perpx":"0.701651", "perpy":"0.712521"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 25.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.775267,33.700148]
-      },
-      "properties": {"street":"YALE", "color":"cyan", "perpx":"-0.828715", "perpy":"-0.559671"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 25.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.774934,33.700287]
-      },
-      "properties": {"street":"YALE", "color":"cyan", "perpx":"0.835661", "perpy":"0.549245"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 26.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.784926,33.712186]
-      },
-      "properties": {"street":"CULVER 2", "color":"blue", "perpx":"-0.654674", "perpy":"-0.755912"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 26.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.784619,33.712411]
-      },
-      "properties": {"street":"CULVER 2", "color":"blue", "perpx":"0.673811", "perpy":"0.738904"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 27.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.796638,33.72047]
-      },
-      "properties": {"street":"JAMBOREE 2", "color":"slategray", "perpx":"-0.574555", "perpy":"-0.818466"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 27.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.796397,33.720695]
-      },
-      "properties": {"street":"JAMBOREE 2", "color":"slategray", "perpx":"0.570509", "perpy":"0.821292"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 28.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.801999,33.724136]
-      },
-      "properties": {"street":"TUSTIN RANCH", "color":"red", "perpx":"-0.556796", "perpy":"-0.83065"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 28.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.801722,33.724394]
-      },
-      "properties": {"street":"TUSTIN RANCH", "color":"red", "perpx":"0.570509", "perpy":"0.821292"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 29.79",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.825947,33.737856]
-      },
-      "properties": {"street":"NEWPORT", "color":"salmon", "perpx":"-0.30873", "perpy":"-0.95115"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 29.79",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.825811,33.738115]
-      },
-      "properties": {"street":"NEWPORT*", "color":"salmon", "perpx":"0.29944", "perpy":"0.954115"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 30.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.832494,33.740098]
-      },
-      "properties": {"street":"S OF 55*", "color":"deeppink", "perpx":"-0.326161", "perpy":"-0.945314"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 30.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.832416,33.740283]
-      },
-      "properties": {"street":"S OF 55", "color":"deeppink", "perpx":"0.333225", "perpy":"0.942847"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 30.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.835743,33.741219]
-      },
-      "properties": {"street":"N OF 55", "color":"coral", "perpx":"-0.33389", "perpy":"-0.942612"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 30.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.835585,33.741403]
-      },
-      "properties": {"street":"N OF 55", "color":"coral", "perpx":"0.333225", "perpy":"0.942847"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 30.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.839015,33.742378]
-      },
-      "properties": {"street":"WILLIAMS (VIADUCT)", "color":"orangered", "perpx":"-0.33389", "perpy":"-0.942612"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 30.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.838695,33.742605]
-      },
-      "properties": {"street":"WILLIAMS", "color":"orangered", "perpx":"0.572697", "perpy":"0.819767"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 30.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.842538,33.745553]
-      },
-      "properties": {"street":"1ST", "color":"yellow", "perpx":"-0.927915", "perpy":"-0.372793"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 30.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.842095,33.745655]
-      },
-      "properties": {"street":"1ST", "color":"yellow", "perpx":"0.928052", "perpy":"0.372451"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.843088,33.746922]
-      },
-      "properties": {"street":"S5 to S55 HOV VIA", "color":"khaki", "perpx":"-0.927915", "perpy":"-0.372793"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.84264,33.747013]
-      },
-      "properties": {"street":"N55 to N5 HOV VIA", "color":"khaki", "perpx":"0.928052", "perpy":"0.372451"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 31.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.844652,33.749928]
-      },
-      "properties": {"street":"4TH", "color":"purple", "perpx":"-0.697138", "perpy":"-0.716937"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 31.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.844061,33.750124]
-      },
-      "properties": {"street":"4TH", "color":"purple", "perpx":"0.715791", "perpy":"0.698315"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 31.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.846535,33.751759]
-      },
-      "properties": {"street":"CONCORD", "color":"slateblue", "perpx":"-0.504083", "perpy":"-0.863655"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 31.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.845939,33.752049]
-      },
-      "properties": {"street":"CONCORD", "color":"slateblue", "perpx":"0.715791", "perpy":"0.698315"}
-  },
-  {
-  "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 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 S 31.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.853795,33.755475]
-      },
-      "properties": {"street":"GRAND 2", "color":"lightgreen", "perpx":"-0.382512", "perpy":"-0.923951"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 31.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.85344,33.755834]
-      },
-      "properties": {"street":"GRAND 2", "color":"lightgreen", "perpx":"0.395503", "perpy":"0.918465"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 32.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.859225,33.757943]
-      },
-      "properties": {"street":"17TH 1", "color":"cyan", "perpx":"-0.583453", "perpy":"-0.812147"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 32.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.858902,33.758263]
-      },
-      "properties": {"street":"17TH 1", "color":"cyan", "perpx":"0.447214", "perpy":"0.894427"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.866976,33.766429]
-      },
-      "properties": {"street":"MAIN 1", "color":"blue", "perpx":"-0.855987", "perpy":"-0.516997"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.866456,33.766579]
-      },
-      "properties": {"street":"MAIN 1", "color":"blue", "perpx":"0.869034", "perpy":"0.494752"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 33.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.868373,33.768742]
-      },
-      "properties": {"street":"MAIN 2", "color":"slategray", "perpx":"-0.830562", "perpy":"-0.556927"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 33.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.86784,33.76901]
-      },
-      "properties": {"street":"MAIN 2", "color":"slategray", "perpx":"0.824993", "perpy":"0.565143"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 33.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.869238,33.770032]
-      },
-      "properties": {"street":"BROADWAY", "color":"red", "perpx":"-0.830562", "perpy":"-0.556927"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 33.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.868723,33.770299]
-      },
-      "properties": {"street":"BROADWAY", "color":"red", "perpx":"0.824993", "perpy":"0.565143"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 33.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.872316,33.773768]
-      },
-      "properties": {"street":"SANTIAGO", "color":"salmon", "perpx":"-0.780234", "perpy":"-0.625487"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 33.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.871893,33.773944]
-      },
-      "properties": {"street":"SANTIAGO", "color":"salmon", "perpx":"0.783267", "perpy":"0.621685"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 33.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.874337,33.776289]
-      },
-      "properties": {"street":"S OF 22", "color":"deeppink", "perpx":"-0.780234", "perpy":"-0.625487"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 33.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.873886,33.776455]
-      },
-      "properties": {"street":"S OF 22", "color":"deeppink", "perpx":"0.783267", "perpy":"0.621685"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 34.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878897,33.780805]
-      },
-      "properties": {"street":"LA VETA", "color":"coral", "perpx":"-0.617542", "perpy":"-0.786538"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 34.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878226,33.781151]
-      },
-      "properties": {"street":"LA VETA", "color":"coral", "perpx":"0.58161", "perpy":"0.813468"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 34.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880014,33.781682]
-      },
-      "properties": {"street":"N OF 57", "color":"orangered", "perpx":"-0.575376", "perpy":"-0.817889"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 34.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.879468,33.782039]
-      },
-      "properties": {"street":"N OF 57", "color":"orangered", "perpx":"0.544875", "perpy":"0.838517"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 34.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.881218,33.782529]
-      },
-      "properties": {"street":"N OF 57*", "color":"yellow", "perpx":"-0.675711", "perpy":"-0.737167"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 34.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880773,33.782887]
-      },
-      "properties": {"street":"N OF 57*", "color":"yellow", "perpx":"0.668811", "perpy":"0.743433"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 34.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.883653,33.784761]
-      },
-      "properties": {"street":"CHAPMAN 1", "color":"khaki", "perpx":"-0.675711", "perpy":"-0.737167"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 34.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.883174,33.785047]
-      },
-      "properties": {"street":"CHAPMAN 1", "color":"khaki", "perpx":"0.668811", "perpy":"0.743433"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 35.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.892284,33.793517]
-      },
-      "properties": {"street":"ORANGEWOOD 1", "color":"purple", "perpx":"-0.668203", "perpy":"-0.743979"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 35.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.891888,33.793754]
-      },
-      "properties": {"street":"ORANGEWOOD 1", "color":"purple", "perpx":"0.700471", "perpy":"0.713681"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 35.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.894336,33.79536]
-      },
-      "properties": {"street":"GENE AUTRY", "color":"slateblue", "perpx":"-0.668203", "perpy":"-0.743979"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 35.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.893833,33.795663]
-      },
-      "properties": {"street":"GENE AUTRY", "color":"slateblue", "perpx":"0.700471", "perpy":"0.713681"}
-  },
-  {
-  "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 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 S 36.48",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.904254,33.804788]
-      },
-      "properties": {"street":"ANAHEIM 1", "color":"lightgreen", "perpx":"-0.654355", "perpy":"-0.756187"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 36.48",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.903814,33.805074]
-      },
-      "properties": {"street":"KATELLA", "color":"lightgreen", "perpx":"0.614618", "perpy":"0.788825"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 36.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.906207,33.806478]
-      },
-      "properties": {"street":"ANAHEIM 2", "color":"cyan", "perpx":"-0.688863", "perpy":"-0.724891"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 36.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.905829,33.806644]
-      },
-      "properties": {"street":"ANAHEIM 2", "color":"cyan", "perpx":"0.614618", "perpy":"0.788825"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.910895,33.810933]
-      },
-      "properties": {"street":"S OF HARBOR", "color":"blue", "perpx":"-0.688863", "perpy":"-0.724891"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.910643,33.811147]
-      },
-      "properties": {"street":"S OF HARBOR", "color":"blue", "perpx":"0.690175", "perpy":"0.723642"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 37.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.918922,33.818669]
-      },
-      "properties": {"street":"BALL", "color":"slategray", "perpx":"-0.697036", "perpy":"-0.717036"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 37.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.918657,33.818891]
-      },
-      "properties": {"street":"BALL", "color":"slategray", "perpx":"0.696671", "perpy":"0.717391"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.922328,33.82198]
-      },
-      "properties": {"street":"SOUTH 1", "color":"red", "perpx":"-0.750414", "perpy":"-0.660968"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.92205,33.822186]
-      },
-      "properties": {"street":"SOUTH 1", "color":"red", "perpx":"0.727279", "perpy":"0.686342"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 39.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.938264,33.834594]
-      },
-      "properties": {"street":"EUCLID 1", "color":"salmon", "perpx":"-0.361622", "perpy":"-0.932325"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 39.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.938078,33.834815]
-      },
-      "properties": {"street":"EUCLID 1", "color":"salmon", "perpx":"0.36034", "perpy":"0.932821"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 39.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.943178,33.8365]
-      },
-      "properties": {"street":"EUCLID 2", "color":"deeppink", "perpx":"-0.471004", "perpy":"-0.882131"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 39.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.943038,33.836731]
-      },
-      "properties": {"street":"EUCLID 2", "color":"deeppink", "perpx":"0.478822", "perpy":"0.877912"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 40.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.949454,33.839851]
-      },
-      "properties": {"street":"CRESCENT", "color":"coral", "perpx":"-0.48436", "perpy":"-0.874869"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 40.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.949259,33.840124]
-      },
-      "properties": {"street":"CRESCENT", "color":"coral", "perpx":"0.478822", "perpy":"0.877912"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 40.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.955942,33.843443]
-      },
-      "properties": {"street":"BROOKHURST 1", "color":"orangered", "perpx":"-0.48436", "perpy":"-0.874869"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 40.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.955716,33.843721]
-      },
-      "properties": {"street":"BROOKHURST 1", "color":"orangered", "perpx":"0.541489", "perpy":"0.840708"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 40.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.96276,33.847169]
-      },
-      "properties": {"street":"LA PALMA", "color":"yellow", "perpx":"-0.460852", "perpy":"-0.887477"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 40.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.962444,33.847549]
-      },
-      "properties": {"street":"LA PALMA", "color":"yellow", "perpx":"0.442245", "perpy":"0.896895"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 41.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.968231,33.85001]
-      },
-      "properties": {"street":"GILBERT", "color":"khaki", "perpx":"-0.460852", "perpy":"-0.887477"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 41.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.968011,33.850294]
-      },
-      "properties": {"street":"GILBERT", "color":"khaki", "perpx":"0.442245", "perpy":"0.896895"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 41.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.97494,33.853961]
-      },
-      "properties": {"street":"MAGNOLIA", "color":"purple", "perpx":"-0.623956", "perpy":"-0.781459"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 41.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.974766,33.854226]
-      },
-      "properties": {"street":"MAGNOLIA", "color":"purple", "perpx":"0.61619", "perpy":"0.787597"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 41.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.976235,33.854882]
-      },
-      "properties": {"street":"MAGNOLIA 2", "color":"slateblue", "perpx":"-0.57431", "perpy":"-0.818638"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 41.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.976025,33.855211]
-      },
-      "properties": {"street":"MAGNOLIA 2", "color":"slateblue", "perpx":"0.61619", "perpy":"0.787597"}
-  },
-  {
-  "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 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 S 42.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.987777,33.860447]
-      },
-      "properties": {"street":"N OF ORANGETHORPE", "color":"lightgreen", "perpx":"-0.473855", "perpy":"-0.880603"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 42.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.987649,33.860615]
-      },
-      "properties": {"street":"N OF ORANGETHORPE", "color":"lightgreen", "perpx":"0.456565", "perpy":"0.88969"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 43.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.992155,33.862901]
-      },
-      "properties": {"street":"STANTON", "color":"cyan", "perpx":"-0.493087", "perpy":"-0.86998"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 43.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.991902,33.863248]
-      },
-      "properties": {"street":"STANTON", "color":"cyan", "perpx":"0.437215", "perpy":"0.899357"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 43.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.996273,33.865235]
-      },
-      "properties": {"street":"BEACH 1", "color":"blue", "perpx":"-0.493087", "perpy":"-0.86998"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 43.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.996199,33.865349]
-      },
-      "properties": {"street":"BEACH 1", "color":"blue", "perpx":"0.466495", "perpy":"0.884524"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 43.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.000667,33.867596]
-      },
-      "properties": {"street":"BEACH 2", "color":"slategray", "perpx":"-0.455465", "perpy":"-0.890254"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 43.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.00058,33.867724]
-      },
-      "properties": {"street":"BEACH 2", "color":"slategray", "perpx":"0.460988", "perpy":"0.887406"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 S 43.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.005145,33.869887]
-      },
-      "properties": {"street":"Western", "color":"red", "perpx":"-0.455465", "perpy":"-0.890254"}
-  },
-  {
-  "type": "Feature",
-  "id": "5 N 43.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.005021,33.870031]
-      },
-      "properties": {"street":"Western", "color":"red", "perpx":"0.460988", "perpy":"0.887406"}
-  },
-  {
-  "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 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 S 0.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.599923,33.408425]
-      },
-      "properties": {"street":"CALAFIA", "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 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 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 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 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 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 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 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 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.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672778,33.560694]
-      },
-      "properties": {"street":"CROWN VA2", "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 2.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.609039,33.424652]
-      },
-      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 2.47",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.611817,33.428811]
-      },
-      "properties": {"street":"PRESIDIO", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 N 20",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.721491,33.629553]
-      },
-      "properties": {"street":"LAKE FOR2", "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.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 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 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.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.754476,33.668794]
-      },
-      "properties": {"street":"TEST MVDS", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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.94",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828362,33.738636]
-      },
-      "properties": {"street":"NEWPORT", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.829214,33.739183]
-      },
-      "properties": {"street":"B ST.", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.850781,33.754689]
-      },
-      "properties": {"street":"GRAND 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876548,33.778694]
-      },
-      "properties": {"street":"5N&S La Veta", "color":"white", "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 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 N 35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.887536,33.789689]
-      },
-      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 S 38.48",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.927279,33.827601]
-      },
-      "properties": {"street":"PEPPER", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.958388,33.845442]
-      },
-      "properties": {"street":"BROOKHURST 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 44.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.009266,33.872567]
-      },
-      "properties": {"street":"ARTESIA 1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 S 5.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.653153,33.457014]
-      },
-      "properties": {"street":"ESTRELLA", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 N 9.67",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.658516,33.503442]
-      },
-      "properties": {"street":"ORTEGA 1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 0.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.093888,33.774472]
-      },
-      "properties": {"street":"COLLEGE PARK", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 0.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.093885,33.774295]
-      },
-      "properties": {"street":"COLLEGE PARK", "color":"red", "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":"salmon", "perpx":"0.001402", "perpy":"0.999999"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 1.41",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.029233,33.774239]
-      },
-      "properties": {"street":"VIA LOS ALISOS", "color":"salmon", "perpx":"-0.00385", "perpy":"-0.999993"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 1.74",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.02351,33.774389]
-      },
-      "properties": {"street":"SPRINGDALE CENSUS", "color":"deeppink", "perpx":"-0.00578", "perpy":"0.999983"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 1.74",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.023517,33.774214]
-      },
-      "properties": {"street":"SPRINGDALE CENSUS", "color":"deeppink", "perpx":"0.0", "perpy":"-1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 1.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.023337,33.77439]
-      },
-      "properties": {"street":"SPRINGDALE", "color":"coral", "perpx":"0.003425", "perpy":"0.999994"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 1.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.023344,33.774214]
-      },
-      "properties": {"street":"SPRINGDALE", "color":"coral", "perpx":"-0.000902", "perpy":"-1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 2.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.017789,33.774371]
-      },
-      "properties": {"street":"YUMA", "color":"orangered", "perpx":"0.003425", "perpy":"0.999994"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 2.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.0178,33.774209]
-      },
-      "properties": {"street":"YUMA", "color":"orangered", "perpx":"-0.000902", "perpy":"-1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 2.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.010501,33.774652]
-      },
-      "properties": {"street":"KNOTT 1", "color":"yellow", "perpx":"0.127522", "perpy":"0.991836"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 2.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.010537,33.774494]
-      },
-      "properties": {"street":"KNOTT 1", "color":"yellow", "perpx":"-0.13051", "perpy":"-0.991447"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 2.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.006721,33.774166]
-      },
-      "properties": {"street":"GARDEN GROV", "color":"khaki", "perpx":"0.421869", "perpy":"0.906657"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 2.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.006807,33.774003]
-      },
-      "properties": {"street":"GARDEN GROV", "color":"khaki", "perpx":"-0.410336", "perpy":"-0.911934"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 2.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.004084,33.772939]
-      },
-      "properties": {"street":"KNOTT 2", "color":"purple", "perpx":"0.421869", "perpy":"0.906657"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 2.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.004149,33.772807]
-      },
-      "properties": {"street":"KNOTT 2", "color":"purple", "perpx":"-0.410336", "perpy":"-0.911934"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 3.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.989817,33.771057]
-      },
-      "properties": {"street":"BEACH2", "color":"slateblue", "perpx":"0.055628", "perpy":"0.998452"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 3.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.989845,33.770894]
-      },
-      "properties": {"street":"BEACH 2", "color":"slateblue", "perpx":"-0.058722", "perpy":"-0.998274"}
-  },
-  {
-  "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 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 W 4.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.979437,33.769612]
-      },
-      "properties": {"street":"NEWLAND", "color":"lightgreen", "perpx":"0.582785", "perpy":"0.812626"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 4.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.979526,33.769467]
-      },
-      "properties": {"street":"NEWLAND", "color":"lightgreen", "perpx":"-0.583276", "perpy":"-0.812274"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 4.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.976011,33.767155]
-      },
-      "properties": {"street":"MAGNOLIA1", "color":"cyan", "perpx":"0.196678", "perpy":"0.980468"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 4.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.976135,33.767032]
-      },
-      "properties": {"street":"MAGNOLIA1", "color":"cyan", "perpx":"-0.198967", "perpy":"-0.980006"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 4.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.96964,33.765877]
-      },
-      "properties": {"street":"MAGNOLIA2", "color":"blue", "perpx":"0.196678", "perpy":"0.980468"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 4.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.969658,33.765717]
-      },
-      "properties": {"street":"MAGNOLIA2", "color":"blue", "perpx":"-0.198967", "perpy":"-0.980006"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 5.57",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.959407,33.765954]
-      },
-      "properties": {"street":"BROOKHUR1", "color":"slategray", "perpx":"-0.004759", "perpy":"0.999989"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 5.57",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.959406,33.765798]
-      },
-      "properties": {"street":"BROOKHUR1", "color":"slategray", "perpx":"0.009319", "perpy":"-0.999957"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 5.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.955835,33.765971]
-      },
-      "properties": {"street":"BROOKHUR2", "color":"red", "perpx":"-0.006239", "perpy":"0.999981"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 5.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.955835,33.765809]
-      },
-      "properties": {"street":"BROOKHUR2", "color":"red", "perpx":"0.010191", "perpy":"-0.999948"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 6.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.951027,33.766001]
-      },
-      "properties": {"street":"HOPE", "color":"salmon", "perpx":"-0.006239", "perpy":"0.999981"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 6.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.951027,33.765858]
-      },
-      "properties": {"street":"HOPE", "color":"salmon", "perpx":"0.010191", "perpy":"-0.999948"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 6.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.946098,33.76605]
-      },
-      "properties": {"street":"WARD", "color":"deeppink", "perpx":"-0.006293", "perpy":"0.99998"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 6.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.946095,33.76591]
-      },
-      "properties": {"street":"WARD", "color":"deeppink", "perpx":"0.008461", "perpy":"-0.999964"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 6.61",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.94149,33.766079]
-      },
-      "properties": {"street":"TAFT", "color":"coral", "perpx":"-0.011359", "perpy":"0.999935"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 6.61",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.941486,33.765949]
-      },
-      "properties": {"street":"TAFT", "color":"coral", "perpx":"0.008037", "perpy":"-0.999968"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 6.94",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.935768,33.766144]
-      },
-      "properties": {"street":"EUCLID", "color":"orangered", "perpx":"-0.011359", "perpy":"0.999935"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 6.94",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.935763,33.765995]
-      },
-      "properties": {"street":"EUCLID", "color":"orangered", "perpx":"0.008037", "perpy":"-0.999968"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 7.29",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.929696,33.766181]
-      },
-      "properties": {"street":"NEWHOPE", "color":"yellow", "perpx":"-0.00578", "perpy":"0.999983"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 7.29",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.929691,33.766038]
-      },
-      "properties": {"street":"NEWHOPE", "color":"yellow", "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":"khaki", "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":"khaki", "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":"purple", "perpx":"-0.323962", "perpy":"0.94607"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 7.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.922361,33.76705]
-      },
-      "properties": {"street":"HARBOR 1", "color":"purple", "perpx":"0.32366", "perpy":"-0.946173"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 8.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.91315,33.770454]
-      },
-      "properties": {"street":"PEARCE", "color":"slateblue", "perpx":"-0.337825", "perpy":"0.941209"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 8.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.913078,33.77033]
-      },
-      "properties": {"street":"PEARCE", "color":"slateblue", "perpx":"0.34339", "perpy":"-0.939193"}
-  },
-  {
-  "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 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 W 9.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.902076,33.775964]
-      },
-      "properties": {"street":"GARDEN G2", "color":"lightgreen", "perpx":"-0.456614", "perpy":"0.889665"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 9.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.901985,33.775838]
-      },
-      "properties": {"street":"GARDEN GROVE 2", "color":"lightgreen", "perpx":"0.456112", "perpy":"-0.889922"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 9.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.895924,33.77865]
-      },
-      "properties": {"street":"LEWIS", "color":"cyan", "perpx":"-0.068365", "perpy":"0.99766"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 9.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.895881,33.778512]
-      },
-      "properties": {"street":"LEWIS", "color":"cyan", "perpx":"0.063537", "perpy":"-0.997979"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 9.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.886182,33.779058]
-      },
-      "properties": {"street":"HESPERIAN", "color":"blue", "perpx":"0.007955", "perpy":"0.999968"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 9.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.88618,33.778902]
-      },
-      "properties": {"street":"HESPERIAN", "color":"blue", "perpx":"-0.007156", "perpy":"-0.999974"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 10.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878735,33.779104]
-      },
-      "properties": {"street":"W OF 5", "color":"slategray", "perpx":"0.021147", "perpy":"0.999776"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 10.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878722,33.778938]
-      },
-      "properties": {"street":"W OF 5", "color":"slategray", "perpx":"-0.018208", "perpy":"-0.999834"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 10.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875662,33.779039]
-      },
-      "properties": {"street":"W OF 5", "color":"red", "perpx":"0.174163", "perpy":"0.984717"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 10.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875647,33.778882]
-      },
-      "properties": {"street":"W OF 5", "color":"red", "perpx":"-0.163762", "perpy":"-0.9865"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 10.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.872394,33.778461]
-      },
-      "properties": {"street":"E OF 5", "color":"salmon", "perpx":"0.174163", "perpy":"0.984717"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 10.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.872382,33.77834]
-      },
-      "properties": {"street":"E OF 5", "color":"salmon", "perpx":"-0.163762", "perpy":"-0.9865"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 11.68",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.855696,33.776676]
-      },
-      "properties": {"street":"GLASSELL1", "color":"deeppink", "perpx":"0.249721", "perpy":"0.968318"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 11.68",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.855753,33.776567]
-      },
-      "properties": {"street":"GLASSELL1", "color":"deeppink", "perpx":"-0.249497", "perpy":"-0.968376"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 12.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.850279,33.775279]
-      },
-      "properties": {"street":"GLASSELL2", "color":"coral", "perpx":"-0.113292", "perpy":"0.993562"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 12.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.850292,33.77516]
-      },
-      "properties": {"street":"GLASSELL2", "color":"coral", "perpx":"0.111941", "perpy":"-0.993715"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 12.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.846201,33.775744]
-      },
-      "properties": {"street":"CONCORD", "color":"orangered", "perpx":"-0.113292", "perpy":"0.993562"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 12.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.846173,33.775624]
-      },
-      "properties": {"street":"CONCORD", "color":"orangered", "perpx":"0.111941", "perpy":"-0.993715"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 W 12.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.838554,33.776862]
-      },
-      "properties": {"street":"TUSTIN", "color":"yellow", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "22 E 12.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.838553,33.776625]
-      },
-      "properties": {"street":"TUSTIN", "color":"yellow", "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 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 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 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 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 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 W 1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.036302,33.774521]
-      },
-      "properties": {"street":"VALLEY V2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 E 5.63",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.958333,33.765808]
-      },
-      "properties": {"street":"BROOKHUR1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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": "55 S 2.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.908673,33.651901]
-      },
-      "properties": {"street":"VICTORIA1", "color":"red", "perpx":"-0.732846", "perpy":"0.680394"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 2.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.908497,33.651784]
-      },
-      "properties": {"street":"VICTORIA1", "color":"red", "perpx":"0.712053", "perpy":"-0.702126"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 3.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.905456,33.655366]
-      },
-      "properties": {"street":"VICTORIA2", "color":"salmon", "perpx":"-0.732846", "perpy":"0.680394"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 3.07",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.905264,33.655235]
-      },
-      "properties": {"street":"VICTORIA2", "color":"salmon", "perpx":"0.7454", "perpy":"-0.666618"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 3.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.899681,33.661183]
-      },
-      "properties": {"street":"FAIR 1", "color":"deeppink", "perpx":"-0.712081", "perpy":"0.702098"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 3.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.899494,33.661052]
-      },
-      "properties": {"street":"FAIR 1", "color":"deeppink", "perpx":"0.711701", "perpy":"-0.702482"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 3.97",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.895493,33.665433]
-      },
-      "properties": {"street":"FAIR 2", "color":"coral", "perpx":"-0.719731", "perpy":"0.694253"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 3.97",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.895303,33.665298]
-      },
-      "properties": {"street":"FAIR 2", "color":"coral", "perpx":"0.711701", "perpy":"-0.702482"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 4.58",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.888309,33.671928]
-      },
-      "properties": {"street":"BRISTOL", "color":"orangered", "perpx":"-0.612257", "perpy":"0.790659"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 4.58",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.888101,33.671785]
-      },
-      "properties": {"street":"BRISTOL", "color":"orangered", "perpx":"0.612685", "perpy":"-0.790327"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.88678,33.673112]
-      },
-      "properties": {"street":"BAKER 1", "color":"yellow", "perpx":"-0.639107", "perpy":"0.769118"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.886575,33.672968]
-      },
-      "properties": {"street":"BAKER 1", "color":"yellow", "perpx":"0.649874", "perpy":"-0.760042"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 5.06",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.882355,33.676789]
-      },
-      "properties": {"street":"BAKER 2", "color":"khaki", "perpx":"-0.639107", "perpy":"0.769118"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 5.06",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.882208,33.676702]
-      },
-      "properties": {"street":"BAKER 2", "color":"khaki", "perpx":"0.649874", "perpy":"-0.760042"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 5.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.87755,33.681935]
-      },
-      "properties": {"street":"PAULARINO 1", "color":"purple", "perpx":"-0.722093", "perpy":"0.691796"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 5.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.877327,33.681801]
-      },
-      "properties": {"street":"PAULARINO 1", "color":"purple", "perpx":"0.73612", "perpy":"-0.676851"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 5.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.874399,33.685224]
-      },
-      "properties": {"street":"N405 to S55", "color":"slateblue", "perpx":"-0.719715", "perpy":"0.69427"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 5.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.874255,33.685142]
-      },
-      "properties": {"street":"PAULARINO 2", "color":"slateblue", "perpx":"0.725068", "perpy":"-0.688678"}
-  },
-  {
-  "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 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 S 6.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.868353,33.691579]
-      },
-      "properties": {"street":"MAIN", "color":"lightgreen", "perpx":"-0.725185", "perpy":"0.688554"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 6.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.868181,33.691451]
-      },
-      "properties": {"street":"MAIN", "color":"lightgreen", "perpx":"0.719595", "perpy":"-0.694394"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 8.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.849099,33.711451]
-      },
-      "properties": {"street":"DYER 2", "color":"cyan", "perpx":"-0.708914", "perpy":"0.705295"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 8.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.848847,33.711314]
-      },
-      "properties": {"street":"DYER 2", "color":"cyan", "perpx":"0.71172", "perpy":"-0.702463"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 8.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.843837,33.71674]
-      },
-      "properties": {"street":"WARNER", "color":"blue", "perpx":"-0.711107", "perpy":"0.703084"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 8.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.843611,33.716619]
-      },
-      "properties": {"street":"WARNER", "color":"blue", "perpx":"0.71172", "perpy":"-0.702463"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 9.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833996,33.73212]
-      },
-      "properties": {"street":"MCFADDEN", "color":"slategray", "perpx":"-0.999946", "perpy":"-0.010425"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 9.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833555,33.732101]
-      },
-      "properties": {"street":"MCFADDEN", "color":"slategray", "perpx":"0.999932", "perpy":"-0.011627"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 10",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.83402,33.734422]
-      },
-      "properties": {"street":"MCFADDEN", "color":"red", "perpx":"-0.999946", "perpy":"-0.010425"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 10",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833528,33.734423]
-      },
-      "properties": {"street":"MCFADDEN", "color":"red", "perpx":"0.999787", "perpy":"0.020634"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 10.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833908,33.739982]
-      },
-      "properties": {"street":"S OF 5", "color":"salmon", "perpx":"-0.999756", "perpy":"0.022109"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 10.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.83368,33.739982]
-      },
-      "properties": {"street":"S OF 5", "color":"salmon", "perpx":"0.999923", "perpy":"0.012439"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 10.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833876,33.741429]
-      },
-      "properties": {"street":"N OF 5", "color":"deeppink", "perpx":"-0.987616", "perpy":"0.156888"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 10.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.833698,33.741429]
-      },
-      "properties": {"street":"N OF 5", "color":"deeppink", "perpx":"0.97478", "perpy":"-0.22317"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 12.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.83108,33.767289]
-      },
-      "properties": {"street":"SANTA CLARA", "color":"coral", "perpx":"-0.999999", "perpy":"-0.001368"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 12.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.830905,33.767287]
-      },
-      "properties": {"street":"SANTA CLARA", "color":"coral", "perpx":"0.999999", "perpy":"0.001196"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 12.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831088,33.773138]
-      },
-      "properties": {"street":"FAIRHAVEN", "color":"orangered", "perpx":"-0.999999", "perpy":"-0.001368"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 12.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.830912,33.773139]
-      },
-      "properties": {"street":"FAIRHAVEN", "color":"orangered", "perpx":"0.999999", "perpy":"0.001196"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831223,33.797729]
-      },
-      "properties": {"street":"Walnut", "color":"yellow", "perpx":"-0.994624", "perpy":"-0.10355"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831045,33.797732]
-      },
-      "properties": {"street":"Walnut", "color":"yellow", "perpx":"0.994412", "perpy":"0.105571"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 14.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831527,33.800649]
-      },
-      "properties": {"street":"COLLINS", "color":"khaki", "perpx":"-0.994624", "perpy":"-0.10355"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 14.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831355,33.800652]
-      },
-      "properties": {"street":"COLLINS", "color":"khaki", "perpx":"0.994412", "perpy":"0.105571"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 15.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.832031,33.809605]
-      },
-      "properties": {"street":"KATELLA 1", "color":"purple", "perpx":"-0.999968", "perpy":"-0.008001"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 15.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831849,33.809608]
-      },
-      "properties": {"street":"KATELLA 1", "color":"purple", "perpx":"0.999767", "perpy":"0.021575"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 S 15.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.832098,33.817979]
-      },
-      "properties": {"street":"TAFT", "color":"slateblue", "perpx":"-1.0", "perpy":"0.000172"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 15.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831919,33.817981]
-      },
-      "properties": {"street":"TAFT", "color":"slateblue", "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 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 S 17.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.835146,33.837162]
-      },
-      "properties": {"street":"LINCOLN 2", "color":"lightgreen", "perpx":"-0.995372", "perpy":"-0.096102"}
-  },
-  {
-  "type": "Feature",
-  "id": "55 N 17.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.834992,33.837111]
-      },
-      "properties": {"street":"LINCOLN 2", "color":"lightgreen", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.830834,33.762898]
-      },
-      "properties": {"street":"17TH 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 15.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831905,33.812203]
-      },
-      "properties": {"street":"KATELLA  2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 3.091",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.905044,33.655481]
-      },
-      "properties": {"street":"VICTORIA2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.860155,33.699873]
-      },
-      "properties": {"street":"MACARTHU2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 N 9.41",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.83503,33.726049]
-      },
-      "properties": {"street":"EDINGER 2", "color":"white", "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":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 10.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.873418,33.779069]
-      },
-      "properties": {"street":"RTE 22 & 5 NB", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 11.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880073,33.786694]
-      },
-      "properties": {"street":"AT CHAPMAN OFF", "color":"salmon", "perpx":"-0.996864", "perpy":"0.079133"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 11.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.879753,33.786905]
-      },
-      "properties": {"street":"CHAPMAN 1", "color":"salmon", "perpx":"0.999529", "perpy":"0.030696"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 12.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878726,33.811089]
-      },
-      "properties": {"street":"DOUGLASS", "color":"deeppink", "perpx":"-0.945662", "perpy":"0.325152"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 12.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.878472,33.811084]
-      },
-      "properties": {"street":"DOUGLASS", "color":"deeppink", "perpx":"0.927151", "perpy":"-0.374688"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 13.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876256,33.825192]
-      },
-      "properties": {"street":"Wagner", "color":"coral", "perpx":"-0.999897", "perpy":"0.01437"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 13.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875981,33.825188]
-      },
-      "properties": {"street":"Wagner", "color":"coral", "perpx":"0.999993", "perpy":"-0.00368"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876232,33.832386]
-      },
-      "properties": {"street":"South", "color":"orangered", "perpx":"-0.999935", "perpy":"0.011398"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875965,33.83238]
-      },
-      "properties": {"street":"South", "color":"orangered", "perpx":"0.999995", "perpy":"-0.003244"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 15.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876207,33.842489]
-      },
-      "properties": {"street":"UNDERHILL", "color":"yellow", "perpx":"-0.999986", "perpy":"-0.005368"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 15.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875902,33.842505]
-      },
-      "properties": {"street":"UNDERHILL", "color":"yellow", "perpx":"0.999936", "perpy":"-0.011332"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 15.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876202,33.846832]
-      },
-      "properties": {"street":"LA PALMA", "color":"khaki", "perpx":"-0.996812", "perpy":"0.079791"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 15.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875931,33.846873]
-      },
-      "properties": {"street":"LA PALMA", "color":"khaki", "perpx":"0.996618", "perpy":"-0.082174"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 15.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875855,33.851167]
-      },
-      "properties": {"street":"N of 91", "color":"purple", "perpx":"-0.996812", "perpy":"0.079791"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 15.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875572,33.851227]
-      },
-      "properties": {"street":"N of 91", "color":"purple", "perpx":"0.996618", "perpy":"-0.082174"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 16.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876106,33.857092]
-      },
-      "properties": {"street":"LA JOLLA", "color":"slateblue", "perpx":"-0.960098", "perpy":"-0.279663"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 16.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875678,33.857169]
-      },
-      "properties": {"street":"LA JOLLA", "color":"slateblue", "perpx":"0.947346", "perpy":"0.320213"}
-  },
-  {
-  "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 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 S 18.85",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.881094,33.896472]
-      },
-      "properties": {"street":"Bastanchury", "color":"lightgreen", "perpx":"-0.99801", "perpy":"-0.063058"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 18.85",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880822,33.896472]
-      },
-      "properties": {"street":"Bastanchury", "color":"lightgreen", "perpx":"0.997832", "perpy":"0.065812"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 19.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.881325,33.900128]
-      },
-      "properties": {"street":"ROLLING HILLS", "color":"cyan", "perpx":"-0.99801", "perpy":"-0.063058"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 19.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.881063,33.900126]
-      },
-      "properties": {"street":"ROLLING  HILLS", "color":"cyan", "perpx":"0.997832", "perpy":"0.065812"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 S 22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875322,33.940956]
-      },
-      "properties": {"street":"TONNER", "color":"blue", "perpx":"-0.636543", "perpy":"0.771242"}
-  },
-  {
-  "type": "Feature",
-  "id": "57 N 22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.875138,33.940872]
-      },
-      "properties": {"street":"TONNER", "color":"blue", "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 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.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.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.879807,33.788781]
-      },
-      "properties": {"street":"CHAPMAN 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876479,33.816586]
-      },
-      "properties": {"street":"BALL 1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.87605,33.819435]
-      },
-      "properties": {"street":"BALL 2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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 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.41",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880503,33.87562]
-      },
-      "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 17.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880294,33.879813]
-      },
-      "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 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 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 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 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 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 S 20.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880298,33.92289]
-      },
-      "properties": {"street":"LAMBERT", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.879881,33.929701]
-      },
-      "properties": {"street":"LAMBERT", "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 S 22.06",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.874675,33.94149]
-      },
-      "properties": {"street":"TONNER", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 10.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.674915,33.545627]
-      },
-      "properties": {"street":"CAPISTRANO", "color":"red", "perpx":"-0.969543", "perpy":"-0.244923"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 10.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.674552,33.545677]
-      },
-      "properties": {"street":"CAPISTRANO", "color":"red", "perpx":"0.971174", "perpy":"0.238373"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 10.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.676025,33.550021]
-      },
-      "properties": {"street":"SORRENTO", "color":"salmon", "perpx":"-0.942619", "perpy":"-0.333871"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 10.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.675644,33.550126]
-      },
-      "properties": {"street":"SORRENTO", "color":"salmon", "perpx":"0.940629", "perpy":"0.339435"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 11.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.677553,33.554335]
-      },
-      "properties": {"street":"CABOT", "color":"deeppink", "perpx":"-0.942619", "perpy":"-0.333871"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 11.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.677239,33.554546]
-      },
-      "properties": {"street":"CABOT", "color":"deeppink", "perpx":"0.940629", "perpy":"0.339435"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 11.64",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.683347,33.557463]
-      },
-      "properties": {"street":"GREENFIELD 1", "color":"coral", "perpx":"-0.204557", "perpy":"-0.978855"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 11.64",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.683209,33.557803]
-      },
-      "properties": {"street":"GREENFIELD 1", "color":"coral", "perpx":"0.198325", "perpy":"0.980136"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 11.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.686199,33.558059]
-      },
-      "properties": {"street":"GREENFIELD 1", "color":"orangered", "perpx":"-0.204557", "perpy":"-0.978855"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 11.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.68611,33.55839]
-      },
-      "properties": {"street":"GREENFIELD 1", "color":"orangered", "perpx":"0.198325", "perpy":"0.980136"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.689492,33.558786]
-      },
-      "properties": {"street":"GREENFIELD 2", "color":"yellow", "perpx":"-0.452101", "perpy":"-0.891967"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.689417,33.559105]
-      },
-      "properties": {"street":"GREENFIELD 2", "color":"yellow", "perpx":"0.471098", "perpy":"0.882081"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 12.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.69095,33.559525]
-      },
-      "properties": {"street":"GREENFIELD 2", "color":"khaki", "perpx":"-0.452101", "perpy":"-0.891967"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 12.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.690855,33.559873]
-      },
-      "properties": {"street":"GREENFIELD 2", "color":"khaki", "perpx":"0.471098", "perpy":"0.882081"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 12.31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.693516,33.56161]
-      },
-      "properties": {"street":"ROCKRIDGE", "color":"purple", "perpx":"-0.799245", "perpy":"-0.601005"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 12.31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.693351,33.562029]
-      },
-      "properties": {"street":"ROCKRIDGE", "color":"purple", "perpx":"0.802439", "perpy":"0.596734"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 12.52",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.695429,33.564154]
-      },
-      "properties": {"street":"WESTRIDGE", "color":"slateblue", "perpx":"-0.799245", "perpy":"-0.601005"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 12.52",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.695254,33.564588]
-      },
-      "properties": {"street":"WESTRIDGE", "color":"slateblue", "perpx":"0.701895", "perpy":"0.712281"}
-  },
-  {
-  "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 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 S 13.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.702926,33.570836]
-      },
-      "properties": {"street":"PACIFIC PARK", "color":"lightgreen", "perpx":"-0.631459", "perpy":"-0.775409"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 13.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.702528,33.571095]
-      },
-      "properties": {"street":"PACIFIC PARK", "color":"lightgreen", "perpx":"0.63793", "perpy":"0.770095"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 13.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.703734,33.571494]
-      },
-      "properties": {"street":"PACIFIC PARK", "color":"cyan", "perpx":"-0.587164", "perpy":"-0.809468"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 13.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.703268,33.571708]
-      },
-      "properties": {"street":"PACIFIC PARK", "color":"cyan", "perpx":"0.577247", "perpy":"0.816569"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 13.38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.706028,33.573158]
-      },
-      "properties": {"street":"LA PAZ  1", "color":"blue", "perpx":"-0.587164", "perpy":"-0.809468"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 13.38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.705711,33.573435]
-      },
-      "properties": {"street":"LA PAZ  1", "color":"blue", "perpx":"0.577247", "perpy":"0.816569"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 13.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.71075,33.575244]
-      },
-      "properties": {"street":"ALICIA", "color":"slategray", "perpx":"-0.354891", "perpy":"-0.934908"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 13.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.710558,33.575554]
-      },
-      "properties": {"street":"ALICIA", "color":"slategray", "perpx":"0.357106", "perpy":"0.934064"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 13.96",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.714799,33.576781]
-      },
-      "properties": {"street":"ALISO 1", "color":"red", "perpx":"-0.354891", "perpy":"-0.934908"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 13.96",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.714614,33.577091]
-      },
-      "properties": {"street":"ALISO 1", "color":"red", "perpx":"0.4066", "perpy":"0.913606"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.721195,33.580299]
-      },
-      "properties": {"street":"ALISO 3", "color":"salmon", "perpx":"-0.578216", "perpy":"-0.815884"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 14.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720958,33.580619]
-      },
-      "properties": {"street":"ALISO 3", "color":"salmon", "perpx":"0.580052", "perpy":"0.81458"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 14.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.725184,33.583126]
-      },
-      "properties": {"street":"ALISO 4", "color":"deeppink", "perpx":"-0.56863", "perpy":"-0.822593"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 14.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724921,33.583441]
-      },
-      "properties": {"street":"ALISO 4", "color":"deeppink", "perpx":"0.578216", "perpy":"0.815884"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 14.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.728504,33.585421]
-      },
-      "properties": {"street":"LAGUNA HILLS", "color":"coral", "perpx":"-0.332032", "perpy":"-0.943268"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 14.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72822,33.585779]
-      },
-      "properties": {"street":"LAGUNA HILLS", "color":"coral", "perpx":"0.329384", "perpy":"0.944196"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 15.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.733325,33.587118]
-      },
-      "properties": {"street":"GLENWOOD 1", "color":"orangered", "perpx":"-0.332032", "perpy":"-0.943268"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 15.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.733096,33.58748]
-      },
-      "properties": {"street":"GLENWOOD 1", "color":"orangered", "perpx":"0.329384", "perpy":"0.944196"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 15.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.740964,33.587924]
-      },
-      "properties": {"street":"EL TORO 1", "color":"yellow", "perpx":"-0.173867", "perpy":"-0.984769"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 15.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.740639,33.588223]
-      },
-      "properties": {"street":"EL TORO 1", "color":"yellow", "perpx":"0.158104", "perpy":"0.987422"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 15.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744385,33.588528]
-      },
-      "properties": {"street":"EL TORO 1", "color":"khaki", "perpx":"-0.317685", "perpy":"-0.948196"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 15.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744024,33.588765]
-      },
-      "properties": {"street":"EL TORO 1", "color":"khaki", "perpx":"0.32185", "perpy":"0.946791"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 15.96",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.745361,33.588855]
-      },
-      "properties": {"street":"EL TORO 2", "color":"purple", "perpx":"-0.317685", "perpy":"-0.948196"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 15.96",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744983,33.589091]
-      },
-      "properties": {"street":"EL TORO 2", "color":"purple", "perpx":"0.321018", "perpy":"0.947073"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 16.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.750156,33.590342]
-      },
-      "properties": {"street":"EL TORO 3", "color":"slateblue", "perpx":"-0.192332", "perpy":"-0.98133"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 16.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.749665,33.590678]
-      },
-      "properties": {"street":"EL TORO 3", "color":"slateblue", "perpx":"0.321018", "perpy":"0.947073"}
-  },
-  {
-  "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 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 S 16.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.756043,33.591203]
-      },
-      "properties": {"street":"EL TORO 4", "color":"lightgreen", "perpx":"-0.141421", "perpy":"-0.989949"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 16.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.755743,33.59165]
-      },
-      "properties": {"street":"EL TORO 4", "color":"lightgreen", "perpx":"0.151183", "perpy":"0.988506"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 16.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.761968,33.593514]
-      },
-      "properties": {"street":"RTE 133 3", "color":"cyan", "perpx":"-0.569484", "perpy":"-0.822002"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 16.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.76171,33.593909]
-      },
-      "properties": {"street":"RTE 133 3", "color":"cyan", "perpx":"0.57864", "perpy":"0.815583"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 17.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.764927,33.595564]
-      },
-      "properties": {"street":"RTE 133 4", "color":"blue", "perpx":"-0.569484", "perpy":"-0.822002"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 17.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.764653,33.595997]
-      },
-      "properties": {"street":"RTE 133 4", "color":"blue", "perpx":"0.57864", "perpy":"0.815583"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 17.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.771217,33.59849]
-      },
-      "properties": {"street":"S OF PM 18", "color":"slategray", "perpx":"-0.12791", "perpy":"-0.991786"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 17.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.770961,33.598966]
-      },
-      "properties": {"street":"S OF PM 18", "color":"slategray", "perpx":"0.126344", "perpy":"0.991986"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 17.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.776885,33.599221]
-      },
-      "properties": {"street":"AT PM 18", "color":"red", "perpx":"-0.12791", "perpy":"-0.991786"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 17.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.776669,33.599693]
-      },
-      "properties": {"street":"AT PM 18", "color":"red", "perpx":"0.126344", "perpy":"0.991986"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 18.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.78232,33.601523]
-      },
-      "properties": {"street":"WILDLIFE", "color":"salmon", "perpx":"-0.168311", "perpy":"-0.985734"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 18.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.782151,33.601969]
-      },
-      "properties": {"street":"WILDLIFE", "color":"salmon", "perpx":"0.16463", "perpy":"0.986355"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 18.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.787181,33.602353]
-      },
-      "properties": {"street":"CATALINA 1", "color":"deeppink", "perpx":"-0.168311", "perpy":"-0.985734"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 18.59",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.786992,33.602777]
-      },
-      "properties": {"street":"CATALINA 1", "color":"deeppink", "perpx":"0.16463", "perpy":"0.986355"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 19.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.801595,33.607237]
-      },
-      "properties": {"street":"CATALINA 2", "color":"coral", "perpx":"-0.309175", "perpy":"-0.951005"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 19.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.801253,33.607825]
-      },
-      "properties": {"street":"CATALINA 2", "color":"coral", "perpx":"0.300702", "perpy":"0.953718"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 19.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.806455,33.608817]
-      },
-      "properties": {"street":"CATALINA 3", "color":"orangered", "perpx":"-0.309175", "perpy":"-0.951005"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 19.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.806039,33.609334]
-      },
-      "properties": {"street":"CATALINA 3", "color":"orangered", "perpx":"0.300702", "perpy":"0.953718"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 20.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.813251,33.610123]
-      },
-      "properties": {"street":"SAND CANYON 1", "color":"yellow", "perpx":"-0.472863", "perpy":"-0.881136"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 20.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.812765,33.610446]
-      },
-      "properties": {"street":"SAND CANYON 1", "color":"yellow", "perpx":"0.469891", "perpy":"0.882724"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 20.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.816184,33.611697]
-      },
-      "properties": {"street":"SAND CANYON 2", "color":"khaki", "perpx":"-0.472863", "perpy":"-0.881136"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 20.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.815658,33.611986]
-      },
-      "properties": {"street":"SAND CANYON 2", "color":"khaki", "perpx":"0.469891", "perpy":"0.882724"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 20.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.8183,33.614005]
-      },
-      "properties": {"street":"SAND CANYON 3", "color":"purple", "perpx":"-0.879015", "perpy":"-0.476793"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 20.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.817786,33.614224]
-      },
-      "properties": {"street":"SAND CANYON 3", "color":"purple", "perpx":"0.871209", "perpy":"0.490912"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 20.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.819745,33.616669]
-      },
-      "properties": {"street":"SAND CANYON 4", "color":"slateblue", "perpx":"-0.795225", "perpy":"-0.606314"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 20.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.819255,33.616831]
-      },
-      "properties": {"street":"SAND CANYON 4", "color":"slateblue", "perpx":"0.796595", "perpy":"0.604514"}
-  },
-  {
-  "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 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 S 21.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828338,33.623005]
-      },
-      "properties": {"street":"NEWPORT COAST 1", "color":"lightgreen", "perpx":"-0.61327", "perpy":"-0.789873"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 21.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828171,33.623392]
-      },
-      "properties": {"street":"NEWPORT COAST 1", "color":"lightgreen", "perpx":"0.622803", "perpy":"0.782378"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 21.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.832171,33.625981]
-      },
-      "properties": {"street":"NEWPORT COAST 2", "color":"cyan", "perpx":"-0.61327", "perpy":"-0.789873"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 21.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831907,33.626366]
-      },
-      "properties": {"street":"NEWPORT COAST 2", "color":"cyan", "perpx":"0.622803", "perpy":"0.782378"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 22.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.837662,33.629475]
-      },
-      "properties": {"street":"S OF BONITA", "color":"blue", "perpx":"-0.283058", "perpy":"-0.959103"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 22.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.837358,33.629759]
-      },
-      "properties": {"street":"S OF BONITA", "color":"blue", "perpx":"0.284483", "perpy":"0.958681"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 22.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.842609,33.630935]
-      },
-      "properties": {"street":"BONITA 1", "color":"slategray", "perpx":"-0.294979", "perpy":"-0.955504"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 22.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.842241,33.631208]
-      },
-      "properties": {"street":"BONITA 1", "color":"slategray", "perpx":"0.292278", "perpy":"0.956333"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 22.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.847497,33.632444]
-      },
-      "properties": {"street":"BONITA 2", "color":"red", "perpx":"-0.294979", "perpy":"-0.955504"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 22.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.847113,33.632697]
-      },
-      "properties": {"street":"BONITA 2", "color":"red", "perpx":"0.292278", "perpy":"0.956333"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.853396,33.635399]
-      },
-      "properties": {"street":"N OF BONITA", "color":"salmon", "perpx":"-0.600727", "perpy":"-0.799454"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.852976,33.635664]
-      },
-      "properties": {"street":"N OF BONITA", "color":"salmon", "perpx":"0.589389", "perpy":"0.80785"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 23.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.857266,33.638307]
-      },
-      "properties": {"street":"BISON 1", "color":"deeppink", "perpx":"-0.780647", "perpy":"-0.624972"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 23.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.856881,33.638513]
-      },
-      "properties": {"street":"BISON 1", "color":"deeppink", "perpx":"0.800308", "perpy":"0.599589"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 23.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.86032,33.643454]
-      },
-      "properties": {"street":"BISON 2", "color":"coral", "perpx":"-0.974437", "perpy":"-0.22466"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 23.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.859875,33.643656]
-      },
-      "properties": {"street":"BISON 2", "color":"coral", "perpx":"0.976131", "perpy":"0.217185"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 24.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.860978,33.646308]
-      },
-      "properties": {"street":"MACARTHUR 2", "color":"orangered", "perpx":"-0.977116", "perpy":"-0.212707"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 24.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.860508,33.646501]
-      },
-      "properties": {"street":"MACARTHUR 2", "color":"orangered", "perpx":"0.976131", "perpy":"0.217185"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 24.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.861933,33.650695]
-      },
-      "properties": {"street":"UNIVERSITY SOUT", "color":"yellow", "perpx":"-0.977116", "perpy":"-0.212707"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 24.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.8614,33.650823]
-      },
-      "properties": {"street":"UNIVERSITY SOUT", "color":"yellow", "perpx":"0.853282", "perpy":"0.52145"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 24.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.864335,33.65462]
-      },
-      "properties": {"street":"JAMBOREE 1", "color":"khaki", "perpx":"-0.633861", "perpy":"-0.773447"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 24.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.864027,33.654806]
-      },
-      "properties": {"street":"JAMBOREE 1", "color":"khaki", "perpx":"0.635445", "perpy":"0.772146"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 24.78",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.865011,33.655174]
-      },
-      "properties": {"street":"JAMBOREE 2", "color":"purple", "perpx":"-0.633861", "perpy":"-0.773447"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 24.78",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.86475,33.655401]
-      },
-      "properties": {"street":"JAMBOREE 2", "color":"purple", "perpx":"0.635445", "perpy":"0.772146"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 25.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.871215,33.659515]
-      },
-      "properties": {"street":"ORCHID", "color":"slateblue", "perpx":"-0.566542", "perpy":"-0.824033"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 25.25",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.870921,33.659804]
-      },
-      "properties": {"street":"ORCHID", "color":"slateblue", "perpx":"0.565437", "perpy":"0.824792"}
-  },
-  {
-  "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 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 S 26.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.88342,33.669908]
-      },
-      "properties": {"street":"S OF 55", "color":"lightgreen", "perpx":"-0.750726", "perpy":"-0.660614"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 26.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.883175,33.67012]
-      },
-      "properties": {"street":"S OF 55", "color":"lightgreen", "perpx":"0.756677", "perpy":"0.653789"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 26.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.887584,33.67464]
-      },
-      "properties": {"street":"N OF 55", "color":"cyan", "perpx":"-0.742508", "perpy":"-0.669837"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 26.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.887299,33.674893]
-      },
-      "properties": {"street":"N OF 55", "color":"cyan", "perpx":"0.76071", "perpy":"0.649092"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 27.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.892743,33.68058]
-      },
-      "properties": {"street":"BEAR 1", "color":"blue", "perpx":"-0.749261", "perpy":"-0.662275"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 27.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.892318,33.680652]
-      },
-      "properties": {"street":"BEAR 1", "color":"blue", "perpx":"0.737613", "perpy":"0.675223"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 27.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.894753,33.682854]
-      },
-      "properties": {"street":"BEAR 2", "color":"slategray", "perpx":"-0.749261", "perpy":"-0.662275"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 27.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.894515,33.683052]
-      },
-      "properties": {"street":"BEAR 2", "color":"slategray", "perpx":"0.737613", "perpy":"0.675223"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 S 27.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.898045,33.686456]
-      },
-      "properties": {"street":"FAIRVIEW", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "73 N 27.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.897754,33.686594]
-      },
-      "properties": {"street":"FAIRVIEW", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.713695,33.576682]
-      },
-      "properties": {"street":"ALICIA", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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": "74 W 0.241",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.654477,33.503721]
-      },
-      "properties": {"street":"Rancho Viejo", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 0.241",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.654478,33.503721]
-      },
-      "properties": {"street":"Rancho Viejo", "color":"red", "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":"salmon", "perpx":"-0.490721", "perpy":"0.871317"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 0.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.647923,33.508745]
-      },
-      "properties": {"street":"74 EB SUNDANCE DRIVE", "color":"salmon", "perpx":"0.490721", "perpy":"-0.871317"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 1.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.644505,33.51067]
-      },
-      "properties": {"street":"CALLE ENTRADERO", "color":"deeppink", "perpx":"-0.409922", "perpy":"0.912121"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 1.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.644505,33.51067]
-      },
-      "properties": {"street":"CALLE ENTRADERO", "color":"deeppink", "perpx":"0.490721", "perpy":"-0.871317"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 1.277",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.640482,33.512478]
-      },
-      "properties": {"street":"Via Cordova", "color":"coral", "perpx":"-0.409922", "perpy":"0.912121"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 1.277",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.640482,33.512477]
-      },
-      "properties": {"street":"Via Cordova", "color":"coral", "perpx":"0.250148", "perpy":"-0.968208"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 3.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.606729,33.522498]
-      },
-      "properties": {"street":"LOCATION 15", "color":"orangered", "perpx":"0.434354", "perpy":"0.900742"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 3.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.60673,33.522498]
-      },
-      "properties": {"street":"LOCATION 15", "color":"orangered", "perpx":"-0.434313", "perpy":"-0.900762"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 3.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.598125,33.518349]
-      },
-      "properties": {"street":"LOCATION 16", "color":"yellow", "perpx":"0.277019", "perpy":"0.960865"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 3.98",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.598125,33.518349]
-      },
-      "properties": {"street":"LOCATION 16", "color":"yellow", "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":"khaki", "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":"khaki", "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":"purple", "perpx":"-0.66599", "perpy":"0.74596"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 5.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.565581,33.515135]
-      },
-      "properties": {"street":"LOCATION 18", "color":"purple", "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":"slateblue", "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":"slateblue", "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 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 W 7.33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.551809,33.530443]
-      },
-      "properties": {"street":"LOCATION 21", "color":"lightgreen", "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":"lightgreen", "perpx":"0.918082", "perpy":"-0.396391"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.548729,33.539611]
-      },
-      "properties": {"street":"NICHOLS INSTITUTE", "color":"cyan", "perpx":"-0.98967", "perpy":"0.143363"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.54873,33.539611]
-      },
-      "properties": {"street":"NICHOLS INSTITUTE", "color":"cyan", "perpx":"0.98967", "perpy":"-0.143363"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 8.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.548667,33.540039]
-      },
-      "properties": {"street":"LOCATION 22", "color":"blue", "perpx":"-0.996885", "perpy":"-0.078874"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 8.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.548668,33.540039]
-      },
-      "properties": {"street":"LOCATION 22", "color":"blue", "perpx":"0.996899", "perpy":"0.078698"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 8.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.549113,33.545676]
-      },
-      "properties": {"street":"LOCATION 23", "color":"slategray", "perpx":"-0.996885", "perpy":"-0.078874"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 8.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.549113,33.545676]
-      },
-      "properties": {"street":"LOCATION 23", "color":"slategray", "perpx":"0.996899", "perpy":"0.078698"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 9.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.546105,33.56355]
-      },
-      "properties": {"street":"LOCATION 24", "color":"red", "perpx":"-0.920786", "perpy":"0.390067"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 9.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.546105,33.56355]
-      },
-      "properties": {"street":"LOCATION 24", "color":"red", "perpx":"0.920786", "perpy":"-0.390067"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 W 10.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.544319,33.567766]
-      },
-      "properties": {"street":"LOCATION 25", "color":"salmon", "perpx":"-0.920786", "perpy":"0.390067"}
-  },
-  {
-  "type": "Feature",
-  "id": "74 E 10.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.544319,33.567766]
-      },
-      "properties": {"street":"LOCATION 25", "color":"salmon", "perpx":"0.920786", "perpy":"-0.390067"}
-  },
-  {
-  "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": "91 W 0.45",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.972391,33.856235]
-      },
-      "properties": {"street":"MAGNOLIA", "color":"red", "perpx":"-0.045438", "perpy":"-0.998967"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 0.45",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.034919,33.85912]
-      },
-      "properties": {"street":"MAGNOLIA", "color":"red", "perpx":"-0.383803", "perpy":"-0.923415"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 0.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.967351,33.854549]
-      },
-      "properties": {"street":"GILBERT", "color":"salmon", "perpx":"-0.028816", "perpy":"-0.999585"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 0.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.967371,33.854376]
-      },
-      "properties": {"street":"GILBERT", "color":"salmon", "perpx":"-0.057735", "perpy":"-0.998332"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.026045,33.856241]
-      },
-      "properties": {"street":"VALLEY VIEW", "color":"deeppink", "perpx":"0.03527", "perpy":"0.999378"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.026091,33.856083]
-      },
-      "properties": {"street":"VALLEY VIEW", "color":"deeppink", "perpx":"-0.035152", "perpy":"-0.999382"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 1.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.961157,33.853951]
-      },
-      "properties": {"street":"BROOKHURST", "color":"coral", "perpx":"-0.034899", "perpy":"-0.999391"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 1.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.961156,33.853799]
-      },
-      "properties": {"street":"BROOKHURST", "color":"coral", "perpx":"-0.035152", "perpy":"-0.999382"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 1.32",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.020493,33.856023]
-      },
-      "properties": {"street":"HOLDER", "color":"orangered", "perpx":"-0.034899", "perpy":"-0.999391"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 1.32",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.020532,33.855843]
-      },
-      "properties": {"street":"HOLDER", "color":"orangered", "perpx":"-0.030437", "perpy":"-0.999537"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 1.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.008835,33.856125]
-      },
-      "properties": {"street":"KNOTT 2", "color":"yellow", "perpx":"0.029813", "perpy":"0.999556"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 1.99",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.008847,33.855926]
-      },
-      "properties": {"street":"KNOTT 2", "color":"yellow", "perpx":"-0.02939", "perpy":"-0.999568"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 2.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.943925,33.854189]
-      },
-      "properties": {"street":"EUCLID", "color":"khaki", "perpx":"0.029813", "perpy":"0.999556"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 2.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.943921,33.854017]
-      },
-      "properties": {"street":"EUCLID", "color":"khaki", "perpx":"-0.02939", "perpy":"-0.999568"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 2.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.001703,33.856174]
-      },
-      "properties": {"street":"BEACH 1", "color":"purple", "perpx":"-0.000863", "perpy":"1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 2.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.938876,33.854029]
-      },
-      "properties": {"street":"EUCLID", "color":"purple", "perpx":"0.032946", "perpy":"0.999457"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.991257,33.85622]
-      },
-      "properties": {"street":"E OF STANTON", "color":"slateblue", "perpx":"0.035533", "perpy":"0.999368"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.991253,33.856035]
-      },
-      "properties": {"street":"E OF STANTON", "color":"slateblue", "perpx":"-0.036012", "perpy":"-0.999351"}
-  },
-  {
-  "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 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 W 3.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.984356,33.856869]
-      },
-      "properties": {"street":"W OF 5", "color":"lightgreen", "perpx":"-0.05087", "perpy":"-0.998705"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 3.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.984237,33.856265]
-      },
-      "properties": {"street":"W OF 5", "color":"lightgreen", "perpx":"0.044312", "perpy":"0.999018"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 3.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.912686,33.853895]
-      },
-      "properties": {"street":"LEMON", "color":"cyan", "perpx":"-0.00639", "perpy":"0.99998"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 3.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.912688,33.853681]
-      },
-      "properties": {"street":"LEMON", "color":"cyan", "perpx":"0.01578", "perpy":"-0.999875"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 4.18",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.907991,33.853925]
-      },
-      "properties": {"street":"EAST", "color":"blue", "perpx":"-0.00639", "perpy":"0.99998"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 4.18",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.907999,33.853755]
-      },
-      "properties": {"street":"EAST", "color":"blue", "perpx":"0.004058", "perpy":"-0.999992"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 4.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.897729,33.854035]
-      },
-      "properties": {"street":"ACACIA", "color":"slategray", "perpx":"-0.017239", "perpy":"0.999851"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 4.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.897738,33.853874]
-      },
-      "properties": {"street":"ACACIA", "color":"slategray", "perpx":"0.011516", "perpy":"-0.999934"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 4.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.897207,33.854044]
-      },
-      "properties": {"street":"ACACIA", "color":"red", "perpx":"-0.04484", "perpy":"0.998994"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 4.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.897217,33.85388]
-      },
-      "properties": {"street":"ACACIA", "color":"red", "perpx":"0.011516", "perpy":"-0.999934"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 5.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.891303,33.854309]
-      },
-      "properties": {"street":"STATE COLLEGE", "color":"salmon", "perpx":"0.073866", "perpy":"0.997268"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 5.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.891311,33.854108]
-      },
-      "properties": {"street":"STATE COLLEGE", "color":"salmon", "perpx":"-0.031896", "perpy":"-0.999491"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 5.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.885106,33.85385]
-      },
-      "properties": {"street":"PLACENTIA", "color":"deeppink", "perpx":"0.073866", "perpy":"0.997268"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 5.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.885166,33.853485]
-      },
-      "properties": {"street":"PLACENTIA", "color":"deeppink", "perpx":"-0.197993", "perpy":"-0.980203"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 6.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.87661,33.850258]
-      },
-      "properties": {"street":"W OF 57", "color":"coral", "perpx":"0.417273", "perpy":"0.908781"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 6.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.876605,33.850044]
-      },
-      "properties": {"street":"W OF 57", "color":"coral", "perpx":"-0.41458", "perpy":"-0.910013"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 6.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.872819,33.848505]
-      },
-      "properties": {"street":"E OF 57", "color":"orangered", "perpx":"0.397217", "perpy":"0.917725"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 6.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.872812,33.848316]
-      },
-      "properties": {"street":"E OF 57", "color":"orangered", "perpx":"-0.41458", "perpy":"-0.910013"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 6.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.864265,33.84645]
-      },
-      "properties": {"street":"LA PALMA", "color":"yellow", "perpx":"0.184041", "perpy":"0.982919"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 6.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.864299,33.846226]
-      },
-      "properties": {"street":"LA PALMA", "color":"yellow", "perpx":"0.171763", "perpy":"-0.985138"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 7.86",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.846854,33.850205]
-      },
-      "properties": {"street":"GROVE", "color":"khaki", "perpx":"-0.13485", "perpy":"0.990866"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 7.86",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.846936,33.849953]
-      },
-      "properties": {"street":"GROVE", "color":"khaki", "perpx":"0.143226", "perpy":"-0.98969"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 8.36",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.838448,33.851349]
-      },
-      "properties": {"street":"TUSTIN", "color":"purple", "perpx":"-0.13485", "perpy":"0.990866"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 8.36",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.838568,33.851164]
-      },
-      "properties": {"street":"TUSTIN", "color":"purple", "perpx":"0.143226", "perpy":"-0.98969"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 10.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.814374,33.851107]
-      },
-      "properties": {"street":"LAKEVIEW 2", "color":"slateblue", "perpx":"-0.654394", "perpy":"0.756154"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 10.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.814133,33.850874]
-      },
-      "properties": {"street":"LAKEVIEW2", "color":"slateblue", "perpx":"0.613864", "perpy":"-0.789412"}
-  },
-  {
-  "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 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 W 11.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.791255,33.854451]
-      },
-      "properties": {"street":"IMPERIAL1", "color":"lightgreen", "perpx":"-0.168785", "perpy":"0.985653"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 11.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.791214,33.854193]
-      },
-      "properties": {"street":"IMPERIAL1", "color":"lightgreen", "perpx":"0.257772", "perpy":"-0.966206"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 12.175",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.780816,33.858773]
-      },
-      "properties": {"street":"E OF IMPERIAL", "color":"cyan", "perpx":"-0.438994", "perpy":"0.89849"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 12.175",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.780743,33.858505]
-      },
-      "properties": {"street":"E OF IMPERIAL", "color":"cyan", "perpx":"0.43844", "perpy":"-0.898761"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 12.762",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.772007,33.863077]
-      },
-      "properties": {"street":"MIDPOINT", "color":"blue", "perpx":"-0.437889", "perpy":"0.899029"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 12.762",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.771912,33.862813]
-      },
-      "properties": {"street":"MIDPOINT", "color":"blue", "perpx":"0.436887", "perpy":"-0.899516"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 13.349",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.763191,33.867371]
-      },
-      "properties": {"street":"W OF SCALES", "color":"slategray", "perpx":"-0.437889", "perpy":"0.899029"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 13.349",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.763071,33.867107]
-      },
-      "properties": {"street":"W OF SCALES", "color":"slategray", "perpx":"0.436887", "perpy":"-0.899516"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 14.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744997,33.870661]
-      },
-      "properties": {"street":"WEIR CNYN2", "color":"red", "perpx":"-0.177649", "perpy":"0.984094"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 14.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744781,33.870278]
-      },
-      "properties": {"street":"WEIR CNYN1", "color":"red", "perpx":"0.155667", "perpy":"-0.98781"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 15.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.733445,33.870372]
-      },
-      "properties": {"street":"East OF WEIR", "color":"salmon", "perpx":"0.048587", "perpy":"0.998819"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 15.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.73308,33.869894]
-      },
-      "properties": {"street":"East OF WEIR", "color":"salmon", "perpx":"-0.101912", "perpy":"-0.994793"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 15.793",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722277,33.867126]
-      },
-      "properties": {"street":"West OF GYPSUM", "color":"deeppink", "perpx":"0.08815", "perpy":"0.996107"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 15.793",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722179,33.866822]
-      },
-      "properties": {"street":"West OF GYPSUM", "color":"deeppink", "perpx":"-0.008286", "perpy":"-0.999966"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 17.044",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.701993,33.871439]
-      },
-      "properties": {"street":"E OF GYPSUM", "color":"coral", "perpx":"-0.129654", "perpy":"0.991559"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 17.044",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.701858,33.871104]
-      },
-      "properties": {"street":"E OF GYPSUM", "color":"coral", "perpx":"0.417464", "perpy":"-0.908693"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 18",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.686605,33.872075]
-      },
-      "properties": {"street":"W of COAL", "color":"orangered", "perpx":"0.402928", "perpy":"0.915232"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 18",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.68647,33.871539]
-      },
-      "properties": {"street":"W of COAL", "color":"orangered", "perpx":"-0.376251", "perpy":"-0.926518"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 W 18.435",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.680194,33.869436]
-      },
-      "properties": {"street":"E OF COAL", "color":"yellow", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "91 E 18.435",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.68015,33.869165]
-      },
-      "properties": {"street":"E OF COAL", "color":"yellow", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.035622,33.85962]
-      },
-      "properties": {"street":"ORANGETHORPE", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 1.37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.95679,33.853902]
-      },
-      "properties": {"street":"BROOKHURST", "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 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 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 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 E 10.27",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.811988,33.852542]
-      },
-      "properties": {"street":"LAKEVIEW2", "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.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.794734,33.854393]
-      },
-      "properties": {"street":"IMPERIAL1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.74891,33.869973]
-      },
-      "properties": {"street":"WEIR CNYN1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 W 17.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.689053,33.873131]
-      },
-      "properties": {"street":"COAL", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 W 3.87",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.976502,33.857654]
-      },
-      "properties": {"street":"MAGNOLIA", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 5.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.887676,33.853992]
-      },
-      "properties": {"street":"STATE COLLEGE", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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.42",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.870973,33.847706]
-      },
-      "properties": {"street":"LA PALMA", "color":"white", "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 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 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 9.95",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.816135,33.849591]
-      },
-      "properties": {"street":"LAKEVIEW1", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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": "133 S 5.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.756718,33.616804]
-      },
-      "properties": {"street":"LOCATION 37", "color":"red", "perpx":"-0.951762", "perpy":"0.306837"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 5.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.756717,33.616805]
-      },
-      "properties": {"street":"LOCATION 29", "color":"red", "perpx":"0.975925", "perpy":"-0.218108"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.7553,33.66184]
-      },
-      "properties": {"street":"BARRANCA2", "color":"salmon", "perpx":"-0.952044", "perpy":"0.305962"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.754967,33.661697]
-      },
-      "properties": {"street":"BARRANCA1", "color":"salmon", "perpx":"0.851313", "perpy":"-0.524659"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 9.37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753428,33.667665]
-      },
-      "properties": {"street":"S OF 5", "color":"deeppink", "perpx":"-0.952044", "perpy":"0.305962"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 9.37",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753044,33.667495]
-      },
-      "properties": {"street":"S OF 5", "color":"deeppink", "perpx":"0.976143", "perpy":"-0.217128"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 9.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753623,33.673029]
-      },
-      "properties": {"street":"N OF 5", "color":"coral", "perpx":"-0.974264", "perpy":"0.225409"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 9.77",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.753243,33.672836]
-      },
-      "properties": {"street":"N OF 5", "color":"coral", "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":"orangered", "perpx":"-0.974264", "perpy":"0.225409"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 10.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.752421,33.676181]
-      },
-      "properties": {"street":"MARINE WAY", "color":"orangered", "perpx":"0.971108", "perpy":"-0.23864"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 10.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.74924,33.68106]
-      },
-      "properties": {"street":"N OF MARINE", "color":"yellow", "perpx":"-0.764221", "perpy":"0.644955"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 10.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.748819,33.680812]
-      },
-      "properties": {"street":"N OF MARINE", "color":"yellow", "perpx":"0.780739", "perpy":"-0.624857"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 10.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.747277,33.683386]
-      },
-      "properties": {"street":"S OF PM 11", "color":"khaki", "perpx":"-0.764221", "perpy":"0.644955"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 10.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.746935,33.683166]
-      },
-      "properties": {"street":"S OF PM 11", "color":"khaki", "perpx":"0.780739", "perpy":"-0.624857"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 11.08",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744014,33.687243]
-      },
-      "properties": {"street":"AT PM 11", "color":"purple", "perpx":"-0.767026", "perpy":"0.641617"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 11.08",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.743737,33.687048]
-      },
-      "properties": {"street":"AT PM 11", "color":"purple", "perpx":"0.766025", "perpy":"-0.642811"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 11.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.741328,33.690454]
-      },
-      "properties": {"street":"N OF PM 11", "color":"slateblue", "perpx":"-0.764252", "perpy":"0.644918"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 11.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.741045,33.690256]
-      },
-      "properties": {"street":"N OF PM 11", "color":"slateblue", "perpx":"0.764276", "perpy":"-0.64489"}
-  },
-  {
-  "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 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 S 12.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.734303,33.698681]
-      },
-      "properties": {"street":"IRVINE BLVD 3", "color":"lightgreen", "perpx":"-0.679098", "perpy":"0.734047"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 12.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.733959,33.698464]
-      },
-      "properties": {"street":"IRVINE BLVD 3", "color":"lightgreen", "perpx":"0.72056", "perpy":"-0.693393"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 12.42",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.730095,33.702574]
-      },
-      "properties": {"street":"S OF PORTOLA", "color":"cyan", "perpx":"-0.679098", "perpy":"0.734047"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 12.42",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72971,33.70238]
-      },
-      "properties": {"street":"S OF PORTOLA", "color":"cyan", "perpx":"0.731326", "perpy":"-0.682028"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 13.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72449,33.710914]
-      },
-      "properties": {"street":"ORANGE 1", "color":"blue", "perpx":"-0.898001", "perpy":"0.439993"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 13.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724497,33.709447]
-      },
-      "properties": {"street":"ORANGE 1", "color":"blue", "perpx":"0.889028", "perpy":"-0.457853"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 S 13.42",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722121,33.715749]
-      },
-      "properties": {"street":"ORANGE 2", "color":"slategray", "perpx":"-0.898001", "perpy":"0.439993"}
-  },
-  {
-  "type": "Feature",
-  "id": "133 N 13.42",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.721749,33.71555]
-      },
-      "properties": {"street":"ORANGE 2", "color":"slategray", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "142 W 0.753",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.85227,33.90979]
-      },
-      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"red", "perpx":"-0.843501", "perpy":"0.537127"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 0.753",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.85227,33.90979]
-      },
-      "properties": {"street":"IMPERIAL HWY & VALEN", "color":"red", "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":"salmon", "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":"salmon", "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":"deeppink", "perpx":"-0.998431", "perpy":"0.055999"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 1.41",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.847872,33.918427]
-      },
-      "properties": {"street":"BRIRCH ST & VALENCIA", "color":"deeppink", "perpx":"0.99709", "perpy":"-0.076235"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 1.768",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.847455,33.923881]
-      },
-      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"coral", "perpx":"-0.141421", "perpy":"0.989949"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 1.768",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.847455,33.923881]
-      },
-      "properties": {"street":"CRAB CNYN & VELLAENC", "color":"coral", "perpx":"-0.116472", "perpy":"-0.993194"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 2.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.839661,33.922967]
-      },
-      "properties": {"street":"LOCATION 44", "color":"orangered", "perpx":"0.277876", "perpy":"0.960617"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 2.11",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.839661,33.922967]
-      },
-      "properties": {"street":"LOCATION 44", "color":"orangered", "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":"yellow", "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":"yellow", "perpx":"-0.277876", "perpy":"-0.960617"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 2.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828619,33.921188]
-      },
-      "properties": {"street":"CALL BOX 484", "color":"khaki", "perpx":"0.288898", "perpy":"0.95736"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 2.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.828619,33.921188]
-      },
-      "properties": {"street":"CALL BOX 484", "color":"khaki", "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":"purple", "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":"purple", "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":"slateblue", "perpx":"-0.307112", "perpy":"0.951673"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 3.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.816185,33.922015]
-      },
-      "properties": {"street":"LOCATION 46", "color":"slateblue", "perpx":"0.307112", "perpy":"-0.951673"}
-  },
-  {
-  "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 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 W 3.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.812984,33.92304]
-      },
-      "properties": {"street":"LOCATION 47", "color":"lightgreen", "perpx":"-0.295298", "perpy":"0.955405"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 3.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.812985,33.92304]
-      },
-      "properties": {"street":"LOCATION 47", "color":"lightgreen", "perpx":"0.295298", "perpy":"-0.955405"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 4.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.80695,33.924905]
-      },
-      "properties": {"street":"LOCATION 48", "color":"cyan", "perpx":"-0.295298", "perpy":"0.955405"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 4.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.806951,33.924905]
-      },
-      "properties": {"street":"LOCATION 48", "color":"cyan", "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":"blue", "perpx":"-0.750334", "perpy":"0.661059"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 4.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.797865,33.929088]
-      },
-      "properties": {"street":"CALL BOX 481", "color":"blue", "perpx":"0.753367", "perpy":"-0.6576"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 4.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.797554,33.929442]
-      },
-      "properties": {"street":"CALL BOX 481", "color":"slategray", "perpx":"-0.750334", "perpy":"0.661059"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 4.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.797555,33.929441]
-      },
-      "properties": {"street":"CALL BOX 481", "color":"slategray", "perpx":"0.750397", "perpy":"-0.660988"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 W 5.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.791973,33.937043]
-      },
-      "properties": {"street":"LOCATION 51", "color":"red", "perpx":"-0.981109", "perpy":"0.193458"}
-  },
-  {
-  "type": "Feature",
-  "id": "142 E 5.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.791973,33.937043]
-      },
-      "properties": {"street":"LOCATION 51", "color":"red", "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":"salmon", "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":"salmon", "perpx":"0.981109", "perpy":"-0.193458"}
-  },
-  {
-  "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 2.61",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.831553,33.922131]
-      },
-      "properties": {"street":"LOCATION 45", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.78641,33.942293]
-      },
-      "properties": {"street":"LOCATION 52", "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":"red", "perpx":"-0.933905", "perpy":"-0.357521"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 17.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.599074,33.63353]
-      },
-      "properties": {"street":"ANTONIO 2", "color":"red", "perpx":"0.94076", "perpy":"0.339073"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 17.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.600017,33.634852]
-      },
-      "properties": {"street":"SOLAR ANTONIO 2", "color":"salmon", "perpx":"-0.933905", "perpy":"-0.357521"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 17.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.599584,33.634945]
-      },
-      "properties": {"street":"SOLAR ANTONIO 2", "color":"salmon", "perpx":"0.894427", "perpy":"0.447214"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 18.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.605479,33.645513]
-      },
-      "properties": {"street":"SANTA MARGUERITA", "color":"deeppink", "perpx":"-0.899199", "perpy":"-0.437539"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 18.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.605062,33.645877]
-      },
-      "properties": {"street":"SANTA MARGUERITA", "color":"deeppink", "perpx":"0.90141", "perpy":"0.432966"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 18.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.606132,33.646855]
-      },
-      "properties": {"street":"TRABUCO CREEK", "color":"coral", "perpx":"-0.899199", "perpy":"-0.437539"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 18.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.605721,33.647249]
-      },
-      "properties": {"street":"TRABUCO CREEK", "color":"coral", "perpx":"0.90141", "perpy":"0.432966"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 19.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.612415,33.651498]
-      },
-      "properties": {"street":"MELINDA", "color":"orangered", "perpx":"-0.198462", "perpy":"-0.980109"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 19.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.612216,33.651938]
-      },
-      "properties": {"street":"MELINDA", "color":"orangered", "perpx":"0.193918", "perpy":"0.981018"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 19.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.620208,33.653076]
-      },
-      "properties": {"street":"LOS ALISOS 1", "color":"yellow", "perpx":"-0.333218", "perpy":"-0.94285"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 19.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.620027,33.653482]
-      },
-      "properties": {"street":"LOS ALISOS 1", "color":"yellow", "perpx":"0.32691", "perpy":"0.945056"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 19.86",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.621818,33.653645]
-      },
-      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"khaki", "perpx":"-0.376202", "perpy":"-0.926538"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 19.86",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.621643,33.654041]
-      },
-      "properties": {"street":"SOLAR LOS ALISOS 1", "color":"khaki", "perpx":"0.323887", "perpy":"0.946096"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 20.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.632465,33.657968]
-      },
-      "properties": {"street":"UPPER OSO", "color":"purple", "perpx":"-0.376202", "perpy":"-0.926538"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 20.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.632286,33.658363]
-      },
-      "properties": {"street":"UPPER OSO", "color":"purple", "perpx":"0.410703", "perpy":"0.911769"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 21.61",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.647927,33.666554]
-      },
-      "properties": {"street":"PORTOLA S 1", "color":"slateblue", "perpx":"-0.342636", "perpy":"-0.939468"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 21.61",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.647778,33.666889]
-      },
-      "properties": {"street":"PORTOLA S 1", "color":"slateblue", "perpx":"0.3701", "perpy":"0.928992"}
-  },
-  {
-  "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 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 S 22.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.664862,33.673218]
-      },
-      "properties": {"street":"SOLAR LAKE FOREST", "color":"lightgreen", "perpx":"-0.371493", "perpy":"-0.928436"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 22.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.664667,33.673571]
-      },
-      "properties": {"street":"SOLAR LAKE FOREST", "color":"lightgreen", "perpx":"0.383214", "perpy":"0.92366"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 22.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.666424,33.673843]
-      },
-      "properties": {"street":"BAKE", "color":"cyan", "perpx":"-0.418678", "perpy":"-0.908135"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 22.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.666212,33.674212]
-      },
-      "properties": {"street":"BAKE", "color":"cyan", "perpx":"0.42005", "perpy":"0.907501"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 22.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.667938,33.674541]
-      },
-      "properties": {"street":"SOLAR BAKE", "color":"blue", "perpx":"-0.418678", "perpy":"-0.908135"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 22.91",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.66772,33.67491]
-      },
-      "properties": {"street":"SOLAR BAKE", "color":"blue", "perpx":"0.42005", "perpy":"0.907501"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.671674,33.677298]
-      },
-      "properties": {"street":"ALTON 1", "color":"slategray", "perpx":"-0.779725", "perpy":"-0.626123"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 23.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.671424,33.677671]
-      },
-      "properties": {"street":"ALTON 1", "color":"slategray", "perpx":"0.787657", "perpy":"0.616114"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 23.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672636,33.678496]
-      },
-      "properties": {"street":"SOLAR ALTON 1", "color":"red", "perpx":"-0.779725", "perpy":"-0.626123"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 23.3",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.672365,33.678874]
-      },
-      "properties": {"street":"SOLAR ALTON 1", "color":"red", "perpx":"0.787657", "perpy":"0.616114"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 23.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.674584,33.681564]
-      },
-      "properties": {"street":"ALTON 2", "color":"salmon", "perpx":"-0.800996", "perpy":"-0.59867"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 23.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.67436,33.681906]
-      },
-      "properties": {"street":"ALTON 2", "color":"salmon", "perpx":"0.8", "perpy":"0.6"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 23.65",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.675593,33.682914]
-      },
-      "properties": {"street":"SOLAR ALTON 2", "color":"deeppink", "perpx":"-0.800996", "perpy":"-0.59867"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 23.65",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.675368,33.68325]
-      },
-      "properties": {"street":"SOLAR ALTON 2", "color":"deeppink", "perpx":"0.8", "perpy":"0.6"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 24.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.681883,33.688049]
-      },
-      "properties": {"street":"N OF ALTON", "color":"coral", "perpx":"-0.574042", "perpy":"-0.818826"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 24.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.681661,33.688336]
-      },
-      "properties": {"street":"N OF ALTON", "color":"coral", "perpx":"0.567343", "perpy":"0.823482"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 24.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.683211,33.68898]
-      },
-      "properties": {"street":"SOLAR N OF ALTON", "color":"orangered", "perpx":"-0.574042", "perpy":"-0.818826"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 24.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.682992,33.689253]
-      },
-      "properties": {"street":"SOLAR N OF ALTON", "color":"orangered", "perpx":"0.567343", "perpy":"0.823482"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 24.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.690369,33.694005]
-      },
-      "properties": {"street":"SOUTH OF PORTOLA", "color":"yellow", "perpx":"-0.481939", "perpy":"-0.876205"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 24.8",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.690124,33.694263]
-      },
-      "properties": {"street":"SOUTH OF PORTOLA", "color":"yellow", "perpx":"0.483192", "perpy":"0.875514"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 25.15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.695456,33.696803]
-      },
-      "properties": {"street":"PORTOLA N2", "color":"khaki", "perpx":"-0.435805", "perpy":"-0.900041"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 25.15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.695163,33.697044]
-      },
-      "properties": {"street":"PORTOLA N2", "color":"khaki", "perpx":"0.436189", "perpy":"0.899855"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 25.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.699698,33.698857]
-      },
-      "properties": {"street":"TOMATO 1", "color":"purple", "perpx":"-0.432673", "perpy":"-0.901551"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 25.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.699355,33.699076]
-      },
-      "properties": {"street":"TOMATO 1", "color":"purple", "perpx":"0.434917", "perpy":"0.900471"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 25.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.701217,33.699586]
-      },
-      "properties": {"street":"SOLAR TOMATO 1", "color":"slateblue", "perpx":"-0.432673", "perpy":"-0.901551"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 25.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.700854,33.6998]
-      },
-      "properties": {"street":"SOLAR TOMATO 1", "color":"slateblue", "perpx":"0.434917", "perpy":"0.900471"}
-  },
-  {
-  "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 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 S 26.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.714477,33.705842]
-      },
-      "properties": {"street":"SOLAR TOMATO 4", "color":"lightgreen", "perpx":"-0.480566", "perpy":"-0.876958"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 26.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.713947,33.705999]
-      },
-      "properties": {"street":"SOLAR TOMATO 4", "color":"lightgreen", "perpx":"0.487943", "perpy":"0.872876"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 26.58",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717092,33.707275]
-      },
-      "properties": {"street":"133-1", "color":"cyan", "perpx":"-0.712032", "perpy":"-0.702147"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 26.58",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.716523,33.707439]
-      },
-      "properties": {"street":"133-1", "color":"cyan", "perpx":"0.690231", "perpy":"0.723589"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 26.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719081,33.709292]
-      },
-      "properties": {"street":"133-2", "color":"blue", "perpx":"-0.712032", "perpy":"-0.702147"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 26.76",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718562,33.709384]
-      },
-      "properties": {"street":"133-2", "color":"blue", "perpx":"0.690231", "perpy":"0.723589"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720884,33.714276]
-      },
-      "properties": {"street":"133-3", "color":"slategray", "perpx":"-0.999239", "perpy":"0.039011"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720349,33.714309]
-      },
-      "properties": {"street":"133-3", "color":"slategray", "perpx":"0.999048", "perpy":"-0.043617"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720827,33.715736]
-      },
-      "properties": {"street":"SOLAR 133-3", "color":"red", "perpx":"-0.999239", "perpy":"0.039011"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.22",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720286,33.715752]
-      },
-      "properties": {"street":"SOLAR 133-3", "color":"red", "perpx":"0.999048", "perpy":"-0.043617"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72046,33.718798]
-      },
-      "properties": {"street":"BEE CANYON", "color":"salmon", "perpx":"-0.99165", "perpy":"0.128962"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719917,33.718783]
-      },
-      "properties": {"street":"BEE CANYON", "color":"salmon", "perpx":"0.991505", "perpy":"-0.130067"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72027,33.720259]
-      },
-      "properties": {"street":"SOLAR BEE CANYON", "color":"deeppink", "perpx":"-0.99165", "perpy":"0.128962"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.53",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719726,33.720239]
-      },
-      "properties": {"street":"SOLAR BEE CANYON", "color":"deeppink", "perpx":"0.991505", "perpy":"-0.130067"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.74",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719567,33.723287]
-      },
-      "properties": {"street":"N OF 133", "color":"coral", "perpx":"-0.98462", "perpy":"0.174712"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.74",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719302,33.723299]
-      },
-      "properties": {"street":"N OF 133", "color":"coral", "perpx":"0.991174", "perpy":"-0.132564"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 27.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719309,33.724741]
-      },
-      "properties": {"street":"SOLAR N OF 133", "color":"orangered", "perpx":"-0.98462", "perpy":"0.174712"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 27.84",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719107,33.724757]
-      },
-      "properties": {"street":"SOLAR N OF 133", "color":"orangered", "perpx":"0.991174", "perpy":"-0.132564"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 28.09",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718803,33.728394]
-      },
-      "properties": {"street":"S OF JEFFREY", "color":"yellow", "perpx":"-0.991031", "perpy":"0.13363"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 28.09",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.71867,33.728406]
-      },
-      "properties": {"street":"S OF JEFFREY", "color":"yellow", "perpx":"0.991789", "perpy":"-0.127885"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 28.19",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718606,33.729855]
-      },
-      "properties": {"street":"SOLAR S OF JEFFREY", "color":"khaki", "perpx":"-0.991631", "perpy":"0.129107"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 28.19",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718482,33.729864]
-      },
-      "properties": {"street":"SOLAR S OF JEFFREY", "color":"khaki", "perpx":"0.991828", "perpy":"-0.127583"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 28.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.71813,33.733511]
-      },
-      "properties": {"street":"N OF JEFFREY", "color":"purple", "perpx":"-0.991631", "perpy":"0.129107"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 28.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718013,33.73351]
-      },
-      "properties": {"street":"N OF JEFFREY", "color":"purple", "perpx":"0.991828", "perpy":"-0.127583"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 28.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717633,33.73777]
-      },
-      "properties": {"street":"N OF HAUL ROAD", "color":"slateblue", "perpx":"-0.992127", "perpy":"-0.125239"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 28.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.71751,33.737751]
-      },
-      "properties": {"street":"N OF HAUL ROAD", "color":"slateblue", "perpx":"0.99277", "perpy":"0.120036"}
-  },
-  {
-  "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 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 S 29.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.721164,33.746148]
-      },
-      "properties": {"street":"S OF CULVER S", "color":"lightgreen", "perpx":"-0.534518", "perpy":"-0.845157"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 29.34",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720909,33.746087]
-      },
-      "properties": {"street":"S OF CULVER S", "color":"lightgreen", "perpx":"0.544008", "perpy":"0.83908"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 29.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.726132,33.74929]
-      },
-      "properties": {"street":"N OF CULVER S", "color":"cyan", "perpx":"-0.530397", "perpy":"-0.84775"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 29.69",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.725783,33.749247]
-      },
-      "properties": {"street":"N OF CULVER S", "color":"cyan", "perpx":"0.51441", "perpy":"0.857544"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.730537,33.752046]
-      },
-      "properties": {"street":"CULVER-CULVER 1", "color":"blue", "perpx":"-0.773985", "perpy":"-0.633203"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.730214,33.751905]
-      },
-      "properties": {"street":"CULVER-CULVER 1", "color":"blue", "perpx":"0.749117", "perpy":"0.662437"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.73154,33.753272]
-      },
-      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"slategray", "perpx":"-0.773985", "perpy":"-0.633203"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.731261,33.753089]
-      },
-      "properties": {"street":"SOLAR CUL-CULVER 1", "color":"slategray", "perpx":"0.749117", "perpy":"0.662437"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30.33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732805,33.756517]
-      },
-      "properties": {"street":"CULVER-CULVER 2", "color":"red", "perpx":"-0.999994", "perpy":"0.00336"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30.33",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732601,33.756276]
-      },
-      "properties": {"street":"CULVER-CULVER 2", "color":"red", "perpx":"0.999169", "perpy":"0.040755"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.7328,33.758005]
-      },
-      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"salmon", "perpx":"-0.999994", "perpy":"0.00336"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30.43",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732661,33.757747]
-      },
-      "properties": {"street":"SOLAR CUL-CULVER 2", "color":"salmon", "perpx":"0.999169", "perpy":"0.040755"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732284,33.762314]
-      },
-      "properties": {"street":"S OF CULVER N", "color":"deeppink", "perpx":"-0.986194", "perpy":"-0.165595"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732107,33.76201]
-      },
-      "properties": {"street":"S OF CULVER N", "color":"deeppink", "perpx":"0.994307", "perpy":"0.106557"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 30.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732531,33.763785]
-      },
-      "properties": {"street":"SOLAR S OF CULVER N", "color":"coral", "perpx":"-0.986194", "perpy":"-0.165595"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 30.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732264,33.763475]
-      },
-      "properties": {"street":"SOLAR S OF CULVER N", "color":"coral", "perpx":"0.994307", "perpy":"0.106557"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 31.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.734012,33.766637]
-      },
-      "properties": {"street":"N OF CULVER N", "color":"orangered", "perpx":"-0.712957", "perpy":"-0.701208"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 31.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.733568,33.766355]
-      },
-      "properties": {"street":"N OF CULVER N", "color":"orangered", "perpx":"0.738172", "perpy":"0.674612"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 31.13",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.735146,33.76779]
-      },
-      "properties": {"street":"SOLAR N OF CULVER N", "color":"yellow", "perpx":"-0.712957", "perpy":"-0.701208"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 31.13",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.73464,33.767528]
-      },
-      "properties": {"street":"SOLAR N OF CULVER N", "color":"yellow", "perpx":"0.738172", "perpy":"0.674612"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 31.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.739531,33.770618]
-      },
-      "properties": {"street":"S OF EOC OC", "color":"khaki", "perpx":"-0.547969", "perpy":"-0.836499"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 31.44",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.738882,33.770424]
-      },
-      "properties": {"street":"S OF EOC OC", "color":"khaki", "perpx":"0.546231", "perpy":"0.837634"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 31.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.74094,33.771541]
-      },
-      "properties": {"street":"SOLAR S OF EOC OC", "color":"purple", "perpx":"-0.550286", "perpy":"-0.834976"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 31.54",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.740279,33.771335]
-      },
-      "properties": {"street":"SOLAR S OF EOC OC", "color":"purple", "perpx":"0.572437", "perpy":"0.819949"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 31.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.745706,33.774682]
-      },
-      "properties": {"street":"CHAPMAN 1", "color":"slateblue", "perpx":"-0.550286", "perpy":"-0.834976"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 31.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744897,33.774559]
-      },
-      "properties": {"street":"CHAPMAN 1", "color":"slateblue", "perpx":"0.572437", "perpy":"0.819949"}
-  },
-  {
-  "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 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 S 32.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.748089,33.781773]
-      },
-      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lightgreen", "perpx":"-0.997214", "perpy":"0.074589"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 32.39",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.747519,33.781469]
-      },
-      "properties": {"street":"SOLAR CHAPMAN 2", "color":"lightgreen", "perpx":"0.997824", "perpy":"-0.065933"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 32.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.745698,33.786034]
-      },
-      "properties": {"street":"CHAPMAN 3", "color":"cyan", "perpx":"-0.656814", "perpy":"0.754052"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 32.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.745126,33.785685]
-      },
-      "properties": {"street":"CHAPMAN 3", "color":"cyan", "perpx":"0.6879", "perpy":"-0.725806"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 32.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.744465,33.787108]
-      },
-      "properties": {"street":"SOLAR CHAPMAN 3", "color":"blue", "perpx":"-0.536155", "perpy":"0.84412"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 32.81",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.743958,33.786792]
-      },
-      "properties": {"street":"SOLAR CHAPMAN 3", "color":"blue", "perpx":"0.563196", "perpy":"-0.826323"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 32.97",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.74219,33.788553]
-      },
-      "properties": {"street":"CHAPMAN 4", "color":"slategray", "perpx":"-0.536155", "perpy":"0.84412"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 32.97",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.741766,33.788286]
-      },
-      "properties": {"street":"CHAPMAN 4", "color":"slategray", "perpx":"0.563196", "perpy":"-0.826323"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 33.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.73675,33.791961]
-      },
-      "properties": {"street":"N OF CHAPMAN", "color":"red", "perpx":"-0.511805", "perpy":"0.859102"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 33.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.736347,33.791626]
-      },
-      "properties": {"street":"N OF CHAPMAN", "color":"red", "perpx":"0.530321", "perpy":"-0.847797"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 33.45",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.735293,33.792829]
-      },
-      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"salmon", "perpx":"-0.511805", "perpy":"0.859102"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 33.45",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.734929,33.792513]
-      },
-      "properties": {"street":"SOLAR N OF CHAPMAN", "color":"salmon", "perpx":"0.530321", "perpy":"-0.847797"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 33.68",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.732055,33.794954]
-      },
-      "properties": {"street":"S OF SANT CREEK", "color":"deeppink", "perpx":"-0.521007", "perpy":"0.853552"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 33.68",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.731726,33.794622]
-      },
-      "properties": {"street":"S OF SANT CREEK", "color":"deeppink", "perpx":"0.51738", "perpy":"-0.855756"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 33.78",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.730574,33.795858]
-      },
-      "properties": {"street":"SOLAR S OF SANT CK", "color":"coral", "perpx":"-0.634504", "perpy":"0.77292"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 33.78",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.730244,33.795518]
-      },
-      "properties": {"street":"SOLAR S OF SANT CK", "color":"coral", "perpx":"0.632614", "perpy":"-0.774467"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 34.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.727285,33.798558]
-      },
-      "properties": {"street":"N OF SANT CR1", "color":"orangered", "perpx":"-0.634504", "perpy":"0.77292"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 34.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72693,33.798225]
-      },
-      "properties": {"street":"N OF SANT CR1", "color":"orangered", "perpx":"0.632614", "perpy":"-0.774467"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 34.38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.725304,33.803726]
-      },
-      "properties": {"street":"N OF SANT CR2", "color":"yellow", "perpx":"-0.931918", "perpy":"0.36267"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 34.38",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.724852,33.803371]
-      },
-      "properties": {"street":"N OF SANT CR2", "color":"yellow", "perpx":"0.937209", "perpy":"-0.348768"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 34.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.72335,33.808747]
-      },
-      "properties": {"street":"S OF OAK", "color":"khaki", "perpx":"-0.84356", "perpy":"0.537034"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 34.72",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722969,33.808431]
-      },
-      "properties": {"street":"S OF OAK", "color":"khaki", "perpx":"0.843058", "perpy":"-0.537823"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 34.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722474,33.810123]
-      },
-      "properties": {"street":"SOLAR S OF OAK", "color":"purple", "perpx":"-0.828928", "perpy":"0.559356"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 34.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.722088,33.809812]
-      },
-      "properties": {"street":"SOLAR S OF OAK", "color":"purple", "perpx":"0.825697", "perpy":"-0.564113"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 35.08",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.720094,33.81365]
-      },
-      "properties": {"street":"N OF OAK", "color":"slateblue", "perpx":"-0.915178", "perpy":"0.40305"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 35.08",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.719677,33.813341]
-      },
-      "properties": {"street":"N OF OAK", "color":"slateblue", "perpx":"0.916423", "perpy":"-0.400211"}
-  },
-  {
-  "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 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 S 35.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717155,33.824805]
-      },
-      "properties": {"street":"WINDY RIDGE 1", "color":"lightgreen", "perpx":"-0.999904", "perpy":"-0.013843"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 35.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.715964,33.824439]
-      },
-      "properties": {"street":"WINDY RIDGE 1", "color":"lightgreen", "perpx":"0.994559", "perpy":"0.104175"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 36.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717224,33.829789]
-      },
-      "properties": {"street":"WINDY RIDGE 2", "color":"cyan", "perpx":"-0.990694", "perpy":"-0.136107"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 36.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.716485,33.829413]
-      },
-      "properties": {"street":"WINDY RIDGE 2", "color":"cyan", "perpx":"0.986289", "perpy":"0.165028"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 36.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.718159,33.840335]
-      },
-      "properties": {"street":"W R WILDLIFE", "color":"blue", "perpx":"-0.985859", "perpy":"0.167575"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 36.82",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717671,33.839984]
-      },
-      "properties": {"street":"W R WILDLIFE", "color":"blue", "perpx":"0.987599", "perpy":"-0.156997"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 37.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717372,33.844965]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 1", "color":"slategray", "perpx":"-0.999815", "perpy":"0.019254"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 37.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.716931,33.844639]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 1", "color":"slategray", "perpx":"0.999335", "perpy":"-0.036462"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 37.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717261,33.850729]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 2", "color":"red", "perpx":"-0.999815", "perpy":"0.019254"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 37.49",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.71672,33.850422]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 2", "color":"red", "perpx":"0.999335", "perpy":"-0.036462"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 37.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717346,33.856811]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 3", "color":"salmon", "perpx":"-0.999884", "perpy":"-0.015214"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 37.88",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.716773,33.856526]
-      },
-      "properties": {"street":"N OF W R WILDLIFE 3", "color":"salmon", "perpx":"0.997345", "perpy":"-0.072816"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 S 38.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.717429,33.862266]
-      },
-      "properties": {"street":"S OF 91", "color":"deeppink", "perpx":"-0.999884", "perpy":"-0.015214"}
-  },
-  {
-  "type": "Feature",
-  "id": "241 N 38.23",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.716374,33.861991]
-      },
-      "properties": {"street":"241N TO 91E ADVANCE", "color":"deeppink", "perpx":"0.960705", "perpy":"0.277572"}
-  },
-  {
-  "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 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 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 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 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 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 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 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 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 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 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 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 S 0.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.800638,33.7124]
-      },
-      "properties": {"street":"JAMBOREE", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 0.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.800349,33.712252]
-      },
-      "properties": {"street":"JAMBOREE", "color":"red", "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":"salmon", "perpx":"-0.497099", "perpy":"0.867694"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 0.5",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.795181,33.717083]
-      },
-      "properties": {"street":"S OF 5", "color":"salmon", "perpx":"0.493349", "perpy":"-0.869832"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 0.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.789693,33.720604]
-      },
-      "properties": {"street":"EL CAMINO REAL", "color":"deeppink", "perpx":"-0.497099", "perpy":"0.867694"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 0.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.789435,33.720342]
-      },
-      "properties": {"street":"EL CAMINO REAL", "color":"deeppink", "perpx":"0.493349", "perpy":"-0.869832"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 1.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.782999,33.723902]
-      },
-      "properties": {"street":"IRVINE BLVD 1", "color":"coral", "perpx":"-0.601686", "perpy":"0.798733"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 1.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.782735,33.72367]
-      },
-      "properties": {"street":"IRVINE BLVD 1", "color":"coral", "perpx":"0.607612", "perpy":"-0.794234"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 1.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.777924,33.727725]
-      },
-      "properties": {"street":"IRVINE BLVD 2", "color":"orangered", "perpx":"-0.601686", "perpy":"0.798733"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 1.75",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.777645,33.727564]
-      },
-      "properties": {"street":"IRVINE BLVD 2", "color":"orangered", "perpx":"0.607612", "perpy":"-0.794234"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 2.24",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.773023,33.733529]
-      },
-      "properties": {"street":"IRVINE RANCH FSTRK", "color":"yellow", "perpx":"-0.769852", "perpy":"0.638223"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 2.24",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.772751,33.733387]
-      },
-      "properties": {"street":"IRVINE RANCH FSTRK", "color":"yellow", "perpx":"0.766466", "perpy":"-0.642285"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 2.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.768378,33.739132]
-      },
-      "properties": {"street":"PORTOLA  1", "color":"khaki", "perpx":"-0.910548", "perpy":"0.413404"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 2.71",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.768065,33.738979]
-      },
-      "properties": {"street":"PORTOLA  1", "color":"khaki", "perpx":"0.904237", "perpy":"-0.42703"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 3.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.765643,33.745156]
-      },
-      "properties": {"street":"PORTOLA 2", "color":"purple", "perpx":"-0.982145", "perpy":"0.188125"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 3.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.765231,33.74498]
-      },
-      "properties": {"street":"PORTOLA 2", "color":"purple", "perpx":"0.983838", "perpy":"-0.179058"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 3.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.764687,33.750147]
-      },
-      "properties": {"street":"PORTOLA 3", "color":"slateblue", "perpx":"-0.984863", "perpy":"0.173336"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 3.51",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.764319,33.749991]
-      },
-      "properties": {"street":"PORTOLA 3", "color":"slateblue", "perpx":"0.984423", "perpy":"-0.175816"}
-  },
-  {
-  "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 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 S 4.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.761762,33.758827]
-      },
-      "properties": {"street":"S OF UTILITY", "color":"lightgreen", "perpx":"-0.884264", "perpy":"0.466987"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 4.14",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.76135,33.758685]
-      },
-      "properties": {"street":"S OF UTILITY", "color":"lightgreen", "perpx":"0.885102", "perpy":"-0.465397"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 4.46",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.759498,33.763114]
-      },
-      "properties": {"street":"N OF UTILITY", "color":"cyan", "perpx":"-0.980989", "perpy":"0.194064"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 4.46",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.759099,33.762966]
-      },
-      "properties": {"street":"N OF UTILITY", "color":"cyan", "perpx":"0.980133", "perpy":"-0.198343"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.758825,33.766516]
-      },
-      "properties": {"street":"HANDY 1", "color":"blue", "perpx":"-0.999193", "perpy":"0.040173"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 4.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.758414,33.766351]
-      },
-      "properties": {"street":"HANDY 1", "color":"blue", "perpx":"0.999501", "perpy":"-0.031586"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 4.93",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.758692,33.769824]
-      },
-      "properties": {"street":"HANDY 2", "color":"slategray", "perpx":"-0.997492", "perpy":"0.070782"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 4.93",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.75831,33.769642]
-      },
-      "properties": {"street":"HANDY 2", "color":"slategray", "perpx":"0.997022", "perpy":"-0.077121"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 5.27",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.758346,33.7747]
-      },
-      "properties": {"street":"HANDY 3", "color":"red", "perpx":"-0.997492", "perpy":"0.070782"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 5.27",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.757935,33.77449]
-      },
-      "properties": {"street":"HANDY 3", "color":"red", "perpx":"0.997022", "perpy":"-0.077121"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 S 5.64",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.75529,33.779357]
-      },
-      "properties": {"street":"CHAPMAN", "color":"salmon", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "261 N 5.64",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.75497,33.779145]
-      },
-      "properties": {"street":"CHAPMAN", "color":"salmon", "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": "405 S 0.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.741301,33.646186]
-      },
-      "properties": {"street":"N OF 5", "color":"red", "perpx":"-0.284825", "perpy":"-0.958579"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 0.6",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.741156,33.646486]
-      },
-      "properties": {"street":"N OF 5", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 1.57",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.757205,33.650789]
-      },
-      "properties": {"street":"N OF 133", "color":"salmon", "perpx":"-0.197097", "perpy":"-0.980384"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 1.57",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.757101,33.651141]
-      },
-      "properties": {"street":"N OF 133", "color":"salmon", "perpx":"0.202053", "perpy":"0.979375"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 1.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.759896,33.65133]
-      },
-      "properties": {"street":"AT 133", "color":"deeppink", "perpx":"-0.146685", "perpy":"-0.989183"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 1.73",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.759796,33.651697]
-      },
-      "properties": {"street":"AT 133 N405 to S133", "color":"deeppink", "perpx":"0.147572", "perpy":"0.989051"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 1.93",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.763315,33.651837]
-      },
-      "properties": {"street":"S OF 133", "color":"coral", "perpx":"-0.209415", "perpy":"-0.977827"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 1.93",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.763194,33.652204]
-      },
-      "properties": {"street":"S OF 133", "color":"coral", "perpx":"0.206915", "perpy":"0.978359"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 2.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.770361,33.653346]
-      },
-      "properties": {"street":"LAGUNA CANYON RD", "color":"orangered", "perpx":"-0.209415", "perpy":"-0.977827"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 2.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.770173,33.65368]
-      },
-      "properties": {"street":"LAGUNA CANYON RD", "color":"orangered", "perpx":"0.206915", "perpy":"0.978359"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 3.31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.784273,33.660957]
-      },
-      "properties": {"street":"N OF SAND CANYON", "color":"yellow", "perpx":"-0.484045", "perpy":"-0.875043"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 3.31",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.784046,33.661319]
-      },
-      "properties": {"street":"N OF SAND CANYON", "color":"yellow", "perpx":"0.480131", "perpy":"0.877197"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 4.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.796283,33.663404]
-      },
-      "properties": {"street":"JEFFREY 2", "color":"khaki", "perpx":"-0.144931", "perpy":"-0.989442"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 4.03",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.796176,33.663798]
-      },
-      "properties": {"street":"JEFFREY 2", "color":"khaki", "perpx":"0.142134", "perpy":"0.989847"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 5.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.81298,33.666093]
-      },
-      "properties": {"street":"YALE", "color":"purple", "perpx":"-0.29192", "perpy":"-0.956443"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 5.01",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.812902,33.666407]
-      },
-      "properties": {"street":"YALE", "color":"purple", "perpx":"0.267568", "perpy":"0.963539"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 5.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.813632,33.666292]
-      },
-      "properties": {"street":"SPRUCE", "color":"slateblue", "perpx":"-0.29192", "perpy":"-0.956443"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 5.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.813561,33.66659]
-      },
-      "properties": {"street":"SPRUCE", "color":"slateblue", "perpx":"0.267568", "perpy":"0.963539"}
-  },
-  {
-  "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 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 S 8.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.86423,33.685751]
-      },
-      "properties": {"street":"AIRPORT", "color":"lightgreen", "perpx":"-0.358185", "perpy":"-0.933651"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 8.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.864081,33.686072]
-      },
-      "properties": {"street":"AIRPORT", "color":"lightgreen", "perpx":"0.321527", "perpy":"0.9469"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 8.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.865648,33.686295]
-      },
-      "properties": {"street":"HOV 55S to 405S", "color":"cyan", "perpx":"-0.259554", "perpy":"-0.965729"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 8.35",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.865527,33.686563]
-      },
-      "properties": {"street":"HOV AT 55N FLYOVER**", "color":"cyan", "perpx":"0.271933", "perpy":"0.962316"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 8.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.866474,33.686517]
-      },
-      "properties": {"street":"RED HILL", "color":"blue", "perpx":"-0.259554", "perpy":"-0.965729"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 8.4",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.866348,33.686795]
-      },
-      "properties": {"street":"RED HILL", "color":"blue", "perpx":"0.126754", "perpy":"0.991934"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 9.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880276,33.687254]
-      },
-      "properties": {"street":"AVE. OF ART", "color":"slategray", "perpx":"0.000508", "perpy":"-1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 9.2",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.880139,33.687519]
-      },
-      "properties": {"street":"AVE. OF ART", "color":"slategray", "perpx":"0.000886", "perpy":"1.0"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 9.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.892435,33.687337]
-      },
-      "properties": {"street":"BEAR", "color":"red", "perpx":"-0.013748", "perpy":"-0.999905"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 9.9",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.8923,33.687569]
-      },
-      "properties": {"street":"BEAR", "color":"red", "perpx":"0.032807", "perpy":"0.999462"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 10.48",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.902507,33.687582]
-      },
-      "properties": {"street":"N OF 73", "color":"salmon", "perpx":"-0.028158", "perpy":"-0.999603"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 10.48",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.902375,33.687846]
-      },
-      "properties": {"street":"N OF 73", "color":"salmon", "perpx":"0.024682", "perpy":"0.999695"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 12.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.930222,33.693448]
-      },
-      "properties": {"street":"HAMPSHIRE", "color":"deeppink", "perpx":"-0.385484", "perpy":"-0.922714"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 12.16",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.930032,33.693692]
-      },
-      "properties": {"street":"HAMPSHIRE", "color":"deeppink", "perpx":"0.384478", "perpy":"0.923134"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.969386,33.717709]
-      },
-      "properties": {"street":"405 TEST", "color":"coral", "perpx":"-0.644821", "perpy":"-0.764334"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 15",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.969162,33.717879]
-      },
-      "properties": {"street":"405 TEST", "color":"coral", "perpx":"0.643037", "perpy":"0.765835"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 23.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.083482,33.77433]
-      },
-      "properties": {"street":"S OF 7TH ST", "color":"orangered", "perpx":"-0.111511", "perpy":"-0.993763"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 23.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.083341,33.774556]
-      },
-      "properties": {"street":"S OF 7TH ST", "color":"orangered", "perpx":"0.026307", "perpy":"0.999654"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 23.19",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.084694,33.774466]
-      },
-      "properties": {"street":"N OF 7TH ST", "color":"yellow", "perpx":"-0.224563", "perpy":"-0.974459"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 23.19",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.084559,33.774676]
-      },
-      "properties": {"street":"N OF 7TH ST", "color":"yellow", "perpx":"0.114396", "perpy":"0.993435"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 23.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.089913,33.778421]
-      },
-      "properties": {"street":"SALMON", "color":"khaki", "perpx":"-0.946836", "perpy":"-0.321715"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 23.62",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.089644,33.778545]
-      },
-      "properties": {"street":"SALMON", "color":"khaki", "perpx":"0.941439", "perpy":"0.337182"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 23.92",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.0911,33.782679]
-      },
-      "properties": {"street":"S OF 605", "color":"purple", "perpx":"-0.966235", "perpy":"-0.257663"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 23.92",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.090834,33.782737]
-      },
-      "properties": {"street":"S OF 605", "color":"purple", "perpx":"0.96041", "perpy":"0.278592"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 S 24.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.092624,33.785289]
-      },
-      "properties": {"street":"N OF 605", "color":"slateblue", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "405 N 24.12",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.092441,33.785381]
-      },
-      "properties": {"street":"N OF 605", "color":"slateblue", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 N 13.97",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.956518,33.707312]
-      },
-      "properties": {"street":"BROOKHUR2", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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":"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 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 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 S 16.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.98561,33.72995]
-      },
-      "properties": {"street":"EDINGER", "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 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 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 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 17.66",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.003642,33.743534]
-      },
-      "properties": {"street":"BOLSA", "color":"white", "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 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.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 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 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 19.05",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.020707,33.757778]
-      },
-      "properties": {"street":"WESTMINSTER", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 3.04",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.780107,33.659163]
-      },
-      "properties": {"street":"SAND CANYON", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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 S 6.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.830554,33.671983]
-      },
-      "properties": {"street":"HARVARD", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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 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.7",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-117.871466,33.687449]
-      },
-      "properties": {"street":"ANTON", "color":"white", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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 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 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 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": "605 S 1.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.084891,33.799259]
-      },
-      "properties": {"street":"N OF 405", "color":"red", "perpx":"-0.712287", "perpy":"0.701888"}
-  },
-  {
-  "type": "Feature",
-  "id": "605 N 1.1",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.084562,33.799174]
-      },
-      "properties": {"street":"N OF 405", "color":"red", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "type": "Feature",
-  "id": "605 S 1.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.083136,33.80104]
-      },
-      "properties": {"street":"KATELLA 1", "color":"salmon", "perpx":"-0.712287", "perpy":"0.701888"}
-  },
-  {
-  "type": "Feature",
-  "id": "605 N 1.26",
-    "geometry":
-      {
-      "type": "Point",
-      "coordinates": [-118.082822,33.80097]
-      },
-      "properties": {"street":"KATELLA 1", "color":"salmon", "perpx":"0", "perpy":"0"}
-  },
-  {
-  "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"}
-  }
- ]
-}
