Changeset 364 in tmcsimulator


Ignore:
Timestamp:
04/11/2019 01:24:25 PM (7 years ago)
Author:
jdalbey
Message:

Parse incidents from script to replace PopulateIncidents?.js. Fade event colors. EInotebook v0.3.

Location:
trunk/webapps
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/webapps/EInotebook/index.html

    r363 r364  
    11<html> 
    22  <head> 
    3     <title>Electronic Instructor Notebook v0.2</title> 
     3    <title>Electronic Instructor Notebook v0.3</title> 
    44    <meta name="apple-mobile-web-app-capable" content="yes"> 
    55    <meta name="viewport" content="width=device-width; initial-scale=1.0; user-scalable=0;"> 
     
    2020    <script type="text/javascript" src="scripts/Incidents.js"></script> 
    2121    <script type="text/javascript" src="scripts/LoadEvents.js"></script>  
    22     <script type="text/javascript" src="scripts/PopulateIncidents.js"></script> 
     22    <!--script type="text/javascript" src="scripts/PopulateIncidents.js"></script--> 
    2323    <!--script type="text/javascript" src="scripts/PopulateEvents.js"></script--> 
    2424    <script type="text/javascript" src="summary/summary.js"></script>  
  • trunk/webapps/EInotebook/scripts/Event.js

    r363 r364  
    4646    // Color constants (TODO: assign incident numbers dynamically) 
    4747    var incidentColor = { 
    48 187: "PowderBlue",     
    49 188: "#afcfaf",        // DarkSeaGreen 
    50 189: "#ffe680",        // CornSilk 
    51 190: "MistyRose",  
    52 191: "Moccasin", 
    53 181: "PowderBlue" } 
     48187: "#d8f0f3",        // PowderBlue 
     49188: "#dfecdf",        // DarkSeaGreen 
     50189: "#fff5cc",        // CornSilk 
     51190: "#ffe8e6",        // MistyRose 
     52191: "#ffffcc",       // Dark Orange 
     53181: "#d8f0f3" } 
    5454 
    5555         
  • trunk/webapps/EInotebook/scripts/LoadEvents.js

    r363 r364  
    1  
     1/* author: jdalbey    date: 4/10/2019 */ 
    22 
    33// Parse the entire Incident XML Script file  
     
    1515        var currEvt = eventTags[i]; 
    1616        // local variable declarations 
    17         var timeFields; var evtTime; var incidentNum; var cadProp; var telProp; 
     17        var timeFields; var evtTime; var incidentNum; var incidentTitle; var cadProp; var telProp; 
    1818        var proparray = new Array(); 
    1919        var evalarray = new Array(); 
     
    3232                        break; 
    3333                    case "INCIDENT": 
    34                         incidentNum = Number(currEvt.childNodes[child].attributes["LogNum"].value);  
     34                        incidentNum = Number(currEvt.childNodes[child].attributes["LogNum"].value); 
     35                        incidentTitle =  currEvt.childNodes[child].textContent; 
    3536                        break; 
    3637                    case "GENERAL_INFO":   
     
    4041                        we load events.)  Creating an event (below) requires that the incident has already 
    4142                        been created. */ 
     43                        var desc = currEvt.childNodes[child].getElementsByTagName("TEXT")[0].textContent; 
     44                        var theIncident = new Incident(evtTime, incidentNum, incidentTitle, desc); 
     45                        incidents.add(theIncident); 
    4246                        break; 
    4347                    case "CAD_DATA":  
  • trunk/webapps/highway_status.json

    r361 r364  
    198198       }, 
    199199   "properties":  
     200       {"street": "ALICIA 1", "color": "yellow", "perpx": "0", "perpy": "0"} 
     201},   
     202{ 
     203   "type": "Feature", 
     204   "id": "5 N 17.63", 
     205   "geometry": 
     206       { 
     207        "type": "Point", 
     208        "coordinates": [-117.692734,33.606025] 
     209       }, 
     210   "properties":  
     211       {"street": "ALICIA 2", "color": "yellow", "perpx": "0", "perpy": "0"} 
     212},   
     213{ 
     214   "type": "Feature", 
     215   "id": "5 N 18.61", 
     216   "geometry": 
     217       { 
     218        "type": "Point", 
     219        "coordinates": [-117.706467,33.613883] 
     220       }, 
     221   "properties":  
     222       {"street": "EL TORO 1", "color": "red", "perpx": "0.647648", "perpy": "0.761939"} 
     223},   
     224{ 
     225   "type": "Feature", 
     226   "id": "5 N 20", 
     227   "geometry": 
     228       { 
     229        "type": "Point", 
     230        "coordinates": [-117.721491,33.629553] 
     231       }, 
     232   "properties":  
     233       {"street": "LAKE FOR2", "color": "red", "perpx": "0", "perpy": "0"} 
     234},   
     235{ 
     236   "type": "Feature", 
     237   "id": "5 N 20.24", 
     238   "geometry": 
     239       { 
     240        "type": "Point", 
     241        "coordinates": [-117.724337,33.632102] 
     242       }, 
     243   "properties":  
     244       {"street": "OLDFIELD", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"} 
     245},   
     246{ 
     247   "type": "Feature", 
     248   "id": "5 N 20.59", 
     249   "geometry": 
     250       { 
     251        "type": "Point", 
     252        "coordinates": [-117.72806,33.636144] 
     253       }, 
     254   "properties":  
     255       {"street": "BAKE 1", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"} 
     256},   
     257{ 
     258   "type": "Feature", 
     259   "id": "5 N 20.94", 
     260   "geometry": 
     261       { 
     262        "type": "Point", 
     263        "coordinates": [-117.731437,33.640323] 
     264       }, 
     265   "properties":  
     266       {"street": "BAKE 2", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"} 
     267},   
     268{ 
     269   "type": "Feature", 
     270   "id": "5 N 21.25", 
     271   "geometry": 
     272       { 
     273        "type": "Point", 
     274        "coordinates": [-117.734444,33.644068] 
     275       }, 
     276   "properties":  
     277       {"street": "At 405", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"} 
     278},   
     279{ 
     280   "type": "Feature", 
     281   "id": "5 N 22.1", 
     282   "geometry": 
     283       { 
     284        "type": "Point", 
     285        "coordinates": [-117.742629,33.654371] 
     286       }, 
     287   "properties":  
     288       {"street": "ALTON 2", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"} 
     289},   
     290{ 
     291   "type": "Feature", 
     292   "id": "5 N 22.2", 
     293   "geometry": 
     294       { 
     295        "type": "Point", 
     296        "coordinates": [-117.743597,33.655581] 
     297       }, 
     298   "properties":  
     299       {"street": "ALTON 3", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"} 
     300},   
     301{ 
     302   "type": "Feature", 
     303   "id": "5 N 22.75", 
     304   "geometry": 
     305       { 
     306        "type": "Point", 
     307        "coordinates": [-117.748817,33.662274] 
     308       }, 
     309   "properties":  
     310       {"street": "BARRANCA", "color": "lime", "perpx": "0.770018", "perpy": "0.638022"} 
     311},   
     312{ 
     313   "type": "Feature", 
     314   "id": "5 N 23.05", 
     315   "geometry": 
     316       { 
     317        "type": "Point", 
     318        "coordinates": [-117.751722,33.66578] 
     319       }, 
     320   "properties":  
     321       {"street": "S OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"} 
     322},   
     323{ 
     324   "type": "Feature", 
     325   "id": "5 N 23.2", 
     326   "geometry": 
     327       { 
     328        "type": "Point", 
     329        "coordinates": [-117.753237,33.667646] 
     330       }, 
     331   "properties":  
     332       {"street": "N OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"} 
     333},   
     334{ 
     335   "type": "Feature", 
     336   "id": "5 N 23.5", 
     337   "geometry": 
     338       { 
     339        "type": "Point", 
     340        "coordinates": [-117.755266,33.671657] 
     341       }, 
     342   "properties":  
     343       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "0.972906", "perpy": "0.2312"} 
     344},   
     345{ 
     346   "type": "Feature", 
     347   "id": "5 N 24.05", 
     348   "geometry": 
     349       { 
     350        "type": "Point", 
     351        "coordinates": [-117.759083,33.67881] 
     352       }, 
     353   "properties":  
     354       {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"} 
     355},   
     356{ 
     357   "type": "Feature", 
     358   "id": "5 N 24.5", 
     359   "geometry": 
     360       { 
     361        "type": "Point", 
     362        "coordinates": [-117.76413,33.68378] 
     363       }, 
     364   "properties":  
     365       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"} 
     366},   
     367{ 
     368   "type": "Feature", 
     369   "id": "5 N 25.08", 
     370   "geometry": 
     371       { 
     372        "type": "Point", 
     373        "coordinates": [-117.768954,33.691182] 
     374       }, 
     375   "properties":  
     376       {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     377},   
     378{ 
     379   "type": "Feature", 
     380   "id": "5 N 25.15", 
     381   "geometry": 
     382       { 
     383        "type": "Point", 
     384        "coordinates": [-117.769532,33.692068] 
     385       }, 
     386   "properties":  
     387       {"street": "JEFFREY 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     388},   
     389{ 
     390   "type": "Feature", 
     391   "id": "5 N 25.8", 
     392   "geometry": 
     393       { 
     394        "type": "Point", 
     395        "coordinates": [-117.774934,33.700287] 
     396       }, 
     397   "properties":  
     398       {"street": "YALE", "color": "lime", "perpx": "0.835661", "perpy": "0.549245"} 
     399},   
     400{ 
     401   "type": "Feature", 
     402   "id": "5 N 26.56", 
     403   "geometry": 
     404       { 
     405        "type": "Point", 
     406        "coordinates": [-117.781713,33.709761] 
     407       }, 
     408   "properties":  
     409       {"street": "CULVER 1", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"} 
     410},   
     411{ 
     412   "type": "Feature", 
     413   "id": "5 N 26.81", 
     414   "geometry": 
     415       { 
     416        "type": "Point", 
     417        "coordinates": [-117.784619,33.712411] 
     418       }, 
     419   "properties":  
     420       {"street": "CULVER 2", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"} 
     421},   
     422{ 
     423   "type": "Feature", 
     424   "id": "5 N 27.55", 
     425   "geometry": 
     426       { 
     427        "type": "Point", 
     428        "coordinates": [-117.794408,33.719297] 
     429       }, 
     430   "properties":  
     431       {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     432},   
     433{ 
     434   "type": "Feature", 
     435   "id": "5 N 27.56", 
     436   "geometry": 
     437       { 
     438        "type": "Point", 
     439        "coordinates": [-117.794541,33.719391] 
     440       }, 
     441   "properties":  
     442       {"street": "JAMBOREE 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     443},   
     444{ 
     445   "type": "Feature", 
     446   "id": "5 N 28.1", 
     447   "geometry": 
     448       { 
     449        "type": "Point", 
     450        "coordinates": [-117.801722,33.724394] 
     451       }, 
     452   "properties":  
     453       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "0.570509", "perpy": "0.821292"} 
     454},   
     455{ 
     456   "type": "Feature", 
     457   "id": "5 N 29.24", 
     458   "geometry": 
     459       { 
     460        "type": "Point", 
     461        "coordinates": [-117.817068,33.73489] 
     462       }, 
     463   "properties":  
     464       {"street": "RED HILL", "color": "lime", "perpx": "0", "perpy": "0"} 
     465},   
     466{ 
     467   "type": "Feature", 
     468   "id": "5 N 29.79", 
     469   "geometry": 
     470       { 
     471        "type": "Point", 
     472        "coordinates": [-117.825811,33.738115] 
     473       }, 
     474   "properties":  
     475       {"street": "NEWPORT*", "color": "lime", "perpx": "0.29944", "perpy": "0.954115"} 
     476},   
     477{ 
     478   "type": "Feature", 
     479   "id": "5 N 30", 
     480   "geometry": 
     481       { 
     482        "type": "Point", 
     483        "coordinates": [-117.829214,33.739183] 
     484       }, 
     485   "properties":  
     486       {"street": "B ST.", "color": "lime", "perpx": "0", "perpy": "0"} 
     487},   
     488{ 
     489   "type": "Feature", 
     490   "id": "5 N 30.2", 
     491   "geometry": 
     492       { 
     493        "type": "Point", 
     494        "coordinates": [-117.832416,33.740283] 
     495       }, 
     496   "properties":  
     497       {"street": "S OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"} 
     498},   
     499{ 
     500   "type": "Feature", 
     501   "id": "5 N 30.4", 
     502   "geometry": 
     503       { 
     504        "type": "Point", 
     505        "coordinates": [-117.835585,33.741403] 
     506       }, 
     507   "properties":  
     508       {"street": "N OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"} 
     509},   
     510{ 
     511   "type": "Feature", 
     512   "id": "5 N 30.8", 
     513   "geometry": 
     514       { 
     515        "type": "Point", 
     516        "coordinates": [-117.841283,33.744413] 
     517       }, 
     518   "properties":  
     519       {"street": "1ST", "color": "lime", "perpx": "0", "perpy": "0"} 
     520},   
     521{ 
     522   "type": "Feature", 
     523   "id": "5 N 31.23", 
     524   "geometry": 
     525       { 
     526        "type": "Point", 
     527        "coordinates": [-117.844061,33.750124] 
     528       }, 
     529   "properties":  
     530       {"street": "4TH", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"} 
     531},   
     532{ 
     533   "type": "Feature", 
     534   "id": "5 N 31.4", 
     535   "geometry": 
     536       { 
     537        "type": "Point", 
     538        "coordinates": [-117.845939,33.752049] 
     539       }, 
     540   "properties":  
     541       {"street": "CONCORD", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"} 
     542},   
     543{ 
     544   "type": "Feature", 
     545   "id": "5 N 31.6", 
     546   "geometry": 
     547       { 
     548        "type": "Point", 
     549        "coordinates": [-117.848788,33.753753] 
     550       }, 
     551   "properties":  
     552       {"street": "GRAND 1", "color": "lime", "perpx": "0.435561", "perpy": "0.900159"} 
     553},   
     554{ 
     555   "type": "Feature", 
     556   "id": "5 N 31.73", 
     557   "geometry": 
     558       { 
     559        "type": "Point", 
     560        "coordinates": [-117.850781,33.754689] 
     561       }, 
     562   "properties":  
     563       {"street": "GRAND 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     564},   
     565{ 
     566   "type": "Feature", 
     567   "id": "5 N 32.3", 
     568   "geometry": 
     569       { 
     570        "type": "Point", 
     571        "coordinates": [-117.859664,33.758644] 
     572       }, 
     573   "properties":  
     574       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     575},   
     576{ 
     577   "type": "Feature", 
     578   "id": "5 N 32.5", 
     579   "geometry": 
     580       { 
     581        "type": "Point", 
     582        "coordinates": [-117.862379,33.760465] 
     583       }, 
     584   "properties":  
     585       {"street": "17TH 2", "color": "lime", "perpx": "0.753317", "perpy": "0.657658"} 
     586},   
     587{ 
     588   "type": "Feature", 
     589   "id": "5 N 32.6", 
     590   "geometry": 
     591       { 
     592        "type": "Point", 
     593        "coordinates": [-117.863369,33.761599] 
     594       }, 
     595   "properties":  
     596       {"street": "17TH 3", "color": "lime", "perpx": "0", "perpy": "0"} 
     597},   
     598{ 
     599   "type": "Feature", 
     600   "id": "5 S 7.99", 
     601   "geometry": 
     602       { 
     603        "type": "Point", 
     604        "coordinates": [-117.669881,33.481738] 
     605       }, 
     606   "properties":  
     607       {"street": "AEROPUERTO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"} 
     608},   
     609{ 
     610   "type": "Feature", 
     611   "id": "5 S 8.6", 
     612   "geometry": 
     613       { 
     614        "type": "Point", 
     615        "coordinates": [-117.663917,33.489176] 
     616       }, 
     617   "properties":  
     618       {"street": "S JUAN CREEK", "color": "lime", "perpx": "-0.836267", "perpy": "0.548322"} 
     619},   
     620{ 
     621   "type": "Feature", 
     622   "id": "5 S 9.15", 
     623   "geometry": 
     624       { 
     625        "type": "Point", 
     626        "coordinates": [-117.659442,33.496001] 
     627       }, 
     628   "properties":  
     629       {"street": "PLAZA", "color": "lime", "perpx": "-0.971491", "perpy": "0.237077"} 
     630},   
     631{ 
     632   "type": "Feature", 
     633   "id": "5 S 9.4", 
     634   "geometry": 
     635       { 
     636        "type": "Point", 
     637        "coordinates": [-117.658583,33.499521] 
     638       }, 
     639   "properties":  
     640       {"street": "ORTEGA 1", "color": "lime", "perpx": "-0.996721", "perpy": "-0.080919"} 
     641},   
     642{ 
     643   "type": "Feature", 
     644   "id": "5 S 10.1", 
     645   "geometry": 
     646       { 
     647        "type": "Point", 
     648        "coordinates": [-117.661127,33.5093] 
     649       }, 
     650   "properties":  
     651       {"street": "EL HORNO", "color": "lime", "perpx": "-0.918881", "perpy": "-0.394535"} 
     652},   
     653{ 
     654   "type": "Feature", 
     655   "id": "5 S 10.4", 
     656   "geometry": 
     657       { 
     658        "type": "Point", 
     659        "coordinates": [-117.662905,33.513441] 
     660       }, 
     661   "properties":  
     662       {"street": "SERRA PARK", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"} 
     663},   
     664{ 
     665   "type": "Feature", 
     666   "id": "5 S 10.7", 
     667   "geometry": 
     668       { 
     669        "type": "Point", 
     670        "coordinates": [-117.664664,33.517588] 
     671       }, 
     672   "properties":  
     673       {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"} 
     674},   
     675{ 
     676   "type": "Feature", 
     677   "id": "5 S 11.37", 
     678   "geometry": 
     679       { 
     680        "type": "Point", 
     681        "coordinates": [-117.668912,33.526418] 
     682       }, 
     683   "properties":  
     684       {"street": "TRABUCO", "color": "lime", "perpx": "-0.878964", "perpy": "-0.476887"} 
     685},   
     686{ 
     687   "type": "Feature", 
     688   "id": "5 S 11.91", 
     689   "geometry": 
     690       { 
     691        "type": "Point", 
     692        "coordinates": [-117.674919,33.53231] 
     693       }, 
     694   "properties":  
     695       {"street": "WILDWOOD", "color": "lime", "perpx": "-0.999508", "perpy": "0.03137"} 
     696},   
     697{ 
     698   "type": "Feature", 
     699   "id": "5 S 12.4", 
     700   "geometry": 
     701       { 
     702        "type": "Point", 
     703        "coordinates": [-117.674695,33.539447] 
     704       }, 
     705   "properties":  
     706       {"street": "S of 73", "color": "lime", "perpx": "0", "perpy": "0"} 
     707},   
     708{ 
     709   "type": "Feature", 
     710   "id": "5 S 12.8", 
     711   "geometry": 
     712       { 
     713        "type": "Point", 
     714        "coordinates": [-117.673404,33.545217] 
     715       }, 
     716   "properties":  
     717       {"street": "AVERY 1", "color": "lime", "perpx": "-0.993564", "perpy": "0.113275"} 
     718},   
     719{ 
     720   "type": "Feature", 
     721   "id": "5 S 13.6", 
     722   "geometry": 
     723       { 
     724        "type": "Point", 
     725        "coordinates": [-117.673131,33.556667] 
     726       }, 
     727   "properties":  
     728       {"street": "CROWN VA1", "color": "lime", "perpx": "-0.999988", "perpy": "0.004899"} 
     729},   
     730{ 
     731   "type": "Feature", 
     732   "id": "5 S 15.03", 
     733   "geometry": 
     734       { 
     735        "type": "Point", 
     736        "coordinates": [-117.671983,33.577397] 
     737       }, 
     738   "properties":  
     739       {"street": "OSO PARK1", "color": "lime", "perpx": "-0.999891", "perpy": "0.014798"} 
     740},   
     741{ 
     742   "type": "Feature", 
     743   "id": "5 S 15.3", 
     744   "geometry": 
     745       { 
     746        "type": "Point", 
     747        "coordinates": [-117.671925,33.581316] 
     748       }, 
     749   "properties":  
     750       {"street": "OSO PARK2", "color": "lime", "perpx": "-0.999911", "perpy": "0.013321"} 
     751},   
     752{ 
     753   "type": "Feature", 
     754   "id": "5 S 16.3", 
     755   "geometry": 
     756       { 
     757        "type": "Point", 
     758        "coordinates": [-117.673779,33.595354] 
     759       }, 
     760   "properties":  
     761       {"street": "LA PAZ 1", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"} 
     762},   
     763{ 
     764   "type": "Feature", 
     765   "id": "5 S 16.5", 
     766   "geometry": 
     767       { 
     768        "type": "Point", 
     769        "coordinates": [-117.67615,33.597607] 
     770       }, 
     771   "properties":  
     772       {"street": "LA PAZ 2", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"} 
     773},   
     774{ 
     775   "type": "Feature", 
     776   "id": "5 S 17.26", 
     777   "geometry": 
     778       { 
     779        "type": "Point", 
     780        "coordinates": [-117.687691,33.602645] 
     781       }, 
     782   "properties":  
    200783       {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    201784},   
    202785{ 
    203786   "type": "Feature", 
    204    "id": "5 N 17.63", 
    205    "geometry": 
    206        { 
    207         "type": "Point", 
    208         "coordinates": [-117.692734,33.606025] 
    209        }, 
    210    "properties":  
    211        {"street": "ALICIA 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    212 },   
    213 { 
    214    "type": "Feature", 
    215    "id": "5 N 18.61", 
    216    "geometry": 
    217        { 
    218         "type": "Point", 
    219         "coordinates": [-117.706467,33.613883] 
    220        }, 
    221    "properties":  
    222        {"street": "EL TORO 1", "color": "lime", "perpx": "0.647648", "perpy": "0.761939"} 
    223 },   
    224 { 
    225    "type": "Feature", 
    226    "id": "5 N 20", 
    227    "geometry": 
    228        { 
    229         "type": "Point", 
    230         "coordinates": [-117.721491,33.629553] 
     787   "id": "5 S 17.49", 
     788   "geometry": 
     789       { 
     790        "type": "Point", 
     791        "coordinates": [-117.69087,33.604617] 
     792       }, 
     793   "properties":  
     794       {"street": "ALICIA 2", "color": "lime", "perpx": "-0.527137", "perpy": "-0.849781"} 
     795},   
     796{ 
     797   "type": "Feature", 
     798   "id": "5 S 18.5", 
     799   "geometry": 
     800       { 
     801        "type": "Point", 
     802        "coordinates": [-117.705361,33.612561] 
     803       }, 
     804   "properties":  
     805       {"street": "EL TORO 1", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"} 
     806},   
     807{ 
     808   "type": "Feature", 
     809   "id": "5 S 18.7", 
     810   "geometry": 
     811       { 
     812        "type": "Point", 
     813        "coordinates": [-117.707825,33.614654] 
     814       }, 
     815   "properties":  
     816       {"street": "EL TORO 2", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"} 
     817},   
     818{ 
     819   "type": "Feature", 
     820   "id": "5 S 19.8", 
     821   "geometry": 
     822       { 
     823        "type": "Point", 
     824        "coordinates": [-117.719875,33.627286] 
     825       }, 
     826   "properties":  
     827       {"street": "LAKE FOR1", "color": "lime", "perpx": "0", "perpy": "0"} 
     828},   
     829{ 
     830   "type": "Feature", 
     831   "id": "5 S 19.9", 
     832   "geometry": 
     833       { 
     834        "type": "Point", 
     835        "coordinates": [-117.720919,33.628454] 
    231836       }, 
    232837   "properties":  
     
    235840{ 
    236841   "type": "Feature", 
    237    "id": "5 N 20.24", 
    238    "geometry": 
    239        { 
    240         "type": "Point", 
    241         "coordinates": [-117.724337,33.632102] 
    242        }, 
    243    "properties":  
    244        {"street": "OLDFIELD", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"} 
    245 },   
    246 { 
    247    "type": "Feature", 
    248    "id": "5 N 20.59", 
    249    "geometry": 
    250        { 
    251         "type": "Point", 
    252         "coordinates": [-117.72806,33.636144] 
    253        }, 
    254    "properties":  
    255        {"street": "BAKE 1", "color": "lime", "perpx": "0.735536", "perpy": "0.677486"} 
    256 },   
    257 { 
    258    "type": "Feature", 
    259    "id": "5 N 20.94", 
    260    "geometry": 
    261        { 
    262         "type": "Point", 
    263         "coordinates": [-117.731437,33.640323] 
    264        }, 
    265    "properties":  
    266        {"street": "BAKE 2", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"} 
    267 },   
    268 { 
    269    "type": "Feature", 
    270    "id": "5 N 21.25", 
    271    "geometry": 
    272        { 
    273         "type": "Point", 
    274         "coordinates": [-117.734444,33.644068] 
    275        }, 
    276    "properties":  
    277        {"street": "At 405", "color": "lime", "perpx": "0.77975", "perpy": "0.626091"} 
    278 },   
    279 { 
    280    "type": "Feature", 
    281    "id": "5 N 22.1", 
    282    "geometry": 
    283        { 
    284         "type": "Point", 
    285         "coordinates": [-117.742629,33.654371] 
    286        }, 
    287    "properties":  
    288        {"street": "ALTON 2", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"} 
    289 },   
    290 { 
    291    "type": "Feature", 
    292    "id": "5 N 22.2", 
    293    "geometry": 
    294        { 
    295         "type": "Point", 
    296         "coordinates": [-117.743597,33.655581] 
    297        }, 
    298    "properties":  
    299        {"street": "ALTON 3", "color": "lime", "perpx": "0.780869", "perpy": "0.624695"} 
    300 },   
    301 { 
    302    "type": "Feature", 
    303    "id": "5 N 22.75", 
    304    "geometry": 
    305        { 
    306         "type": "Point", 
    307         "coordinates": [-117.748817,33.662274] 
    308        }, 
    309    "properties":  
    310        {"street": "BARRANCA", "color": "lime", "perpx": "0.770018", "perpy": "0.638022"} 
    311 },   
    312 { 
    313    "type": "Feature", 
    314    "id": "5 N 23.05", 
    315    "geometry": 
    316        { 
    317         "type": "Point", 
    318         "coordinates": [-117.751722,33.66578] 
    319        }, 
    320    "properties":  
    321        {"street": "S OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"} 
    322 },   
    323 { 
    324    "type": "Feature", 
    325    "id": "5 N 23.2", 
    326    "geometry": 
    327        { 
    328         "type": "Point", 
    329         "coordinates": [-117.753237,33.667646] 
    330        }, 
    331    "properties":  
    332        {"street": "N OF 133", "color": "lime", "perpx": "0.776343", "perpy": "0.630311"} 
    333 },   
    334 { 
    335    "type": "Feature", 
    336    "id": "5 N 23.5", 
    337    "geometry": 
    338        { 
    339         "type": "Point", 
    340         "coordinates": [-117.755266,33.671657] 
    341        }, 
    342    "properties":  
    343        {"street": "S OF SAND CNYN", "color": "lime", "perpx": "0.972906", "perpy": "0.2312"} 
    344 },   
    345 { 
    346    "type": "Feature", 
    347    "id": "5 N 24.05", 
    348    "geometry": 
    349        { 
    350         "type": "Point", 
    351         "coordinates": [-117.759083,33.67881] 
    352        }, 
    353    "properties":  
    354        {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"} 
    355 },   
    356 { 
    357    "type": "Feature", 
    358    "id": "5 N 24.5", 
    359    "geometry": 
    360        { 
    361         "type": "Point", 
    362         "coordinates": [-117.76413,33.68378] 
    363        }, 
    364    "properties":  
    365        {"street": "N OF SAND CNYN", "color": "lime", "perpx": "0.701651", "perpy": "0.712521"} 
    366 },   
    367 { 
    368    "type": "Feature", 
    369    "id": "5 N 25.08", 
    370    "geometry": 
    371        { 
    372         "type": "Point", 
    373         "coordinates": [-117.768954,33.691182] 
     842   "id": "5 S 20.24", 
     843   "geometry": 
     844       { 
     845        "type": "Point", 
     846        "coordinates": [-117.724813,33.631989] 
     847       }, 
     848   "properties":  
     849       {"street": "OLDFIELD", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"} 
     850},   
     851{ 
     852   "type": "Feature", 
     853   "id": "5 S 20.59", 
     854   "geometry": 
     855       { 
     856        "type": "Point", 
     857        "coordinates": [-117.728446,33.635959] 
     858       }, 
     859   "properties":  
     860       {"street": "BAKE 1", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"} 
     861},   
     862{ 
     863   "type": "Feature", 
     864   "id": "5 S 20.95", 
     865   "geometry": 
     866       { 
     867        "type": "Point", 
     868        "coordinates": [-117.731896,33.640308] 
     869       }, 
     870   "properties":  
     871       {"street": "BAKE 2", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"} 
     872},   
     873{ 
     874   "type": "Feature", 
     875   "id": "5 S 21.25", 
     876   "geometry": 
     877       { 
     878        "type": "Point", 
     879        "coordinates": [-117.734722,33.643978] 
     880       }, 
     881   "properties":  
     882       {"street": "At 405", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"} 
     883},   
     884{ 
     885   "type": "Feature", 
     886   "id": "5 S 22.1", 
     887   "geometry": 
     888       { 
     889        "type": "Point", 
     890        "coordinates": [-117.74294,33.654255] 
     891       }, 
     892   "properties":  
     893       {"street": "ALTON 1", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"} 
     894},   
     895{ 
     896   "type": "Feature", 
     897   "id": "5 S 22.14", 
     898   "geometry": 
     899       { 
     900        "type": "Point", 
     901        "coordinates": [-117.743323,33.654741] 
     902       }, 
     903   "properties":  
     904       {"street": "ALTON 2", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"} 
     905},   
     906{ 
     907   "type": "Feature", 
     908   "id": "5 S 22.75", 
     909   "geometry": 
     910       { 
     911        "type": "Point", 
     912        "coordinates": [-117.749253,33.662021] 
     913       }, 
     914   "properties":  
     915       {"street": "BARRANCA", "color": "lime", "perpx": "-0.788481", "perpy": "-0.615059"} 
     916},   
     917{ 
     918   "type": "Feature", 
     919   "id": "5 S 23.05", 
     920   "geometry": 
     921       { 
     922        "type": "Point", 
     923        "coordinates": [-117.75203,33.665581] 
     924       }, 
     925   "properties":  
     926       {"street": "S OF 133", "color": "lime", "perpx": "-0.781645", "perpy": "-0.623724"} 
     927},   
     928{ 
     929   "type": "Feature", 
     930   "id": "5 S 23.1", 
     931   "geometry": 
     932       { 
     933        "type": "Point", 
     934        "coordinates": [-117.7525,33.66617] 
     935       }, 
     936   "properties":  
     937       {"street": "N OF 133", "color": "lime", "perpx": "0", "perpy": "0"} 
     938},   
     939{ 
     940   "type": "Feature", 
     941   "id": "5 S 23.5", 
     942   "geometry": 
     943       { 
     944        "type": "Point", 
     945        "coordinates": [-117.755616,33.6716] 
     946       }, 
     947   "properties":  
     948       {"street": "S OF SAND CNYN", "color": "lime", "perpx": "-0.975596", "perpy": "-0.219572"} 
     949},   
     950{ 
     951   "type": "Feature", 
     952   "id": "5 S 23.69", 
     953   "geometry": 
     954       { 
     955        "type": "Point", 
     956        "coordinates": [-117.756223,33.674297] 
     957       }, 
     958   "properties":  
     959       {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"} 
     960},   
     961{ 
     962   "type": "Feature", 
     963   "id": "5 S 24.05", 
     964   "geometry": 
     965       { 
     966        "type": "Point", 
     967        "coordinates": [-117.759362,33.67863] 
     968       }, 
     969   "properties":  
     970       {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"} 
     971},   
     972{ 
     973   "type": "Feature", 
     974   "id": "5 S 24.5", 
     975   "geometry": 
     976       { 
     977        "type": "Point", 
     978        "coordinates": [-117.764425,33.683599] 
     979       }, 
     980   "properties":  
     981       {"street": "N OF SAND CNYN", "color": "lime", "perpx": "-0.835705", "perpy": "-0.549178"} 
     982},   
     983{ 
     984   "type": "Feature", 
     985   "id": "5 S 24.84", 
     986   "geometry": 
     987       { 
     988        "type": "Point", 
     989        "coordinates": [-117.767277,33.687939] 
    374990       }, 
    375991   "properties":  
     
    378994{ 
    379995   "type": "Feature", 
    380    "id": "5 N 25.15", 
    381    "geometry": 
    382        { 
    383         "type": "Point", 
    384         "coordinates": [-117.769532,33.692068] 
    385        }, 
    386    "properties":  
    387        {"street": "JEFFREY 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    388 },   
    389 { 
    390    "type": "Feature", 
    391    "id": "5 N 25.8", 
    392    "geometry": 
    393        { 
    394         "type": "Point", 
    395         "coordinates": [-117.774934,33.700287] 
    396        }, 
    397    "properties":  
    398        {"street": "YALE", "color": "lime", "perpx": "0.835661", "perpy": "0.549245"} 
    399 },   
    400 { 
    401    "type": "Feature", 
    402    "id": "5 N 26.56", 
    403    "geometry": 
    404        { 
    405         "type": "Point", 
    406         "coordinates": [-117.781713,33.709761] 
    407        }, 
    408    "properties":  
    409        {"street": "CULVER 1", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"} 
    410 },   
    411 { 
    412    "type": "Feature", 
    413    "id": "5 N 26.81", 
    414    "geometry": 
    415        { 
    416         "type": "Point", 
    417         "coordinates": [-117.784619,33.712411] 
    418        }, 
    419    "properties":  
    420        {"street": "CULVER 2", "color": "lime", "perpx": "0.673811", "perpy": "0.738904"} 
    421 },   
    422 { 
    423    "type": "Feature", 
    424    "id": "5 N 27.55", 
    425    "geometry": 
    426        { 
    427         "type": "Point", 
    428         "coordinates": [-117.794408,33.719297] 
     996   "id": "5 S 25.8", 
     997   "geometry": 
     998       { 
     999        "type": "Point", 
     1000        "coordinates": [-117.775267,33.700148] 
     1001       }, 
     1002   "properties":  
     1003       {"street": "YALE", "color": "lime", "perpx": "-0.828715", "perpy": "-0.559671"} 
     1004},   
     1005{ 
     1006   "type": "Feature", 
     1007   "id": "5 S 26.35", 
     1008   "geometry": 
     1009       { 
     1010        "type": "Point", 
     1011        "coordinates": [-117.779935,33.70706] 
     1012       }, 
     1013   "properties":  
     1014       {"street": "CULVER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     1015},   
     1016{ 
     1017   "type": "Feature", 
     1018   "id": "5 S 26.66", 
     1019   "geometry": 
     1020       { 
     1021        "type": "Point", 
     1022        "coordinates": [-117.783134,33.710634] 
     1023       }, 
     1024   "properties":  
     1025       {"street": "CULVER 2", "color": "lime", "perpx": "-0.654674", "perpy": "-0.755912"} 
     1026},   
     1027{ 
     1028   "type": "Feature", 
     1029   "id": "5 S 27.43", 
     1030   "geometry": 
     1031       { 
     1032        "type": "Point", 
     1033        "coordinates": [-117.793071,33.717966] 
    4291034       }, 
    4301035   "properties":  
     
    4331038{ 
    4341039   "type": "Feature", 
    435    "id": "5 N 27.56", 
    436    "geometry": 
    437        { 
    438         "type": "Point", 
    439         "coordinates": [-117.794541,33.719391] 
    440        }, 
    441    "properties":  
    442        {"street": "JAMBOREE 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    443 },   
    444 { 
    445    "type": "Feature", 
    446    "id": "5 N 28.1", 
    447    "geometry": 
    448        { 
    449         "type": "Point", 
    450         "coordinates": [-117.801722,33.724394] 
    451        }, 
    452    "properties":  
    453        {"street": "TUSTIN RANCH", "color": "lime", "perpx": "0.570509", "perpy": "0.821292"} 
    454 },   
    455 { 
    456    "type": "Feature", 
    457    "id": "5 N 29.24", 
    458    "geometry": 
    459        { 
    460         "type": "Point", 
    461         "coordinates": [-117.817068,33.73489] 
    462        }, 
    463    "properties":  
    464        {"street": "RED HILL", "color": "lime", "perpx": "0", "perpy": "0"} 
    465 },   
    466 { 
    467    "type": "Feature", 
    468    "id": "5 N 29.79", 
    469    "geometry": 
    470        { 
    471         "type": "Point", 
    472         "coordinates": [-117.825811,33.738115] 
    473        }, 
    474    "properties":  
    475        {"street": "NEWPORT*", "color": "lime", "perpx": "0.29944", "perpy": "0.954115"} 
    476 },   
    477 { 
    478    "type": "Feature", 
    479    "id": "5 N 30", 
    480    "geometry": 
    481        { 
    482         "type": "Point", 
    483         "coordinates": [-117.829214,33.739183] 
    484        }, 
    485    "properties":  
    486        {"street": "B ST.", "color": "lime", "perpx": "0", "perpy": "0"} 
    487 },   
    488 { 
    489    "type": "Feature", 
    490    "id": "5 N 30.2", 
    491    "geometry": 
    492        { 
    493         "type": "Point", 
    494         "coordinates": [-117.832416,33.740283] 
    495        }, 
    496    "properties":  
    497        {"street": "S OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"} 
    498 },   
    499 { 
    500    "type": "Feature", 
    501    "id": "5 N 30.4", 
    502    "geometry": 
    503        { 
    504         "type": "Point", 
    505         "coordinates": [-117.835585,33.741403] 
    506        }, 
    507    "properties":  
    508        {"street": "N OF 55", "color": "lime", "perpx": "0.333225", "perpy": "0.942847"} 
    509 },   
    510 { 
    511    "type": "Feature", 
    512    "id": "5 N 30.8", 
    513    "geometry": 
    514        { 
    515         "type": "Point", 
    516         "coordinates": [-117.841283,33.744413] 
    517        }, 
    518    "properties":  
    519        {"street": "1ST", "color": "lime", "perpx": "0", "perpy": "0"} 
    520 },   
    521 { 
    522    "type": "Feature", 
    523    "id": "5 N 31.23", 
    524    "geometry": 
    525        { 
    526         "type": "Point", 
    527         "coordinates": [-117.844061,33.750124] 
    528        }, 
    529    "properties":  
    530        {"street": "4TH", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"} 
    531 },   
    532 { 
    533    "type": "Feature", 
    534    "id": "5 N 31.4", 
    535    "geometry": 
    536        { 
    537         "type": "Point", 
    538         "coordinates": [-117.845939,33.752049] 
    539        }, 
    540    "properties":  
    541        {"street": "CONCORD", "color": "lime", "perpx": "0.715791", "perpy": "0.698315"} 
    542 },   
    543 { 
    544    "type": "Feature", 
    545    "id": "5 N 31.6", 
    546    "geometry": 
    547        { 
    548         "type": "Point", 
    549         "coordinates": [-117.848788,33.753753] 
    550        }, 
    551    "properties":  
    552        {"street": "GRAND 1", "color": "lime", "perpx": "0.435561", "perpy": "0.900159"} 
    553 },   
    554 { 
    555    "type": "Feature", 
    556    "id": "5 N 31.73", 
    557    "geometry": 
    558        { 
    559         "type": "Point", 
    560         "coordinates": [-117.850781,33.754689] 
    561        }, 
    562    "properties":  
    563        {"street": "GRAND 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    564 },   
    565 { 
    566    "type": "Feature", 
    567    "id": "5 N 32.3", 
    568    "geometry": 
    569        { 
    570         "type": "Point", 
    571         "coordinates": [-117.859664,33.758644] 
     1040   "id": "5 S 27.7", 
     1041   "geometry": 
     1042       { 
     1043        "type": "Point", 
     1044        "coordinates": [-117.796638,33.72047] 
     1045       }, 
     1046   "properties":  
     1047       {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.574555", "perpy": "-0.818466"} 
     1048},   
     1049{ 
     1050   "type": "Feature", 
     1051   "id": "5 S 28.1", 
     1052   "geometry": 
     1053       { 
     1054        "type": "Point", 
     1055        "coordinates": [-117.801999,33.724136] 
     1056       }, 
     1057   "properties":  
     1058       {"street": "TUSTIN RANCH", "color": "lime", "perpx": "-0.556796", "perpy": "-0.83065"} 
     1059},   
     1060{ 
     1061   "type": "Feature", 
     1062   "id": "5 S 29.02", 
     1063   "geometry": 
     1064       { 
     1065        "type": "Point", 
     1066        "coordinates": [-117.814369,33.732587] 
     1067       }, 
     1068   "properties":  
     1069       {"street": "RED HILL", "color": "lime", "perpx": "-0.566824", "perpy": "-0.823839"} 
     1070},   
     1071{ 
     1072   "type": "Feature", 
     1073   "id": "5 S 29.7", 
     1074   "geometry": 
     1075       { 
     1076        "type": "Point", 
     1077        "coordinates": [-117.824499,33.737386] 
     1078       }, 
     1079   "properties":  
     1080       {"street": "NEWPORT*", "color": "lime", "perpx": "0", "perpy": "0"} 
     1081},   
     1082{ 
     1083   "type": "Feature", 
     1084   "id": "5 S 29.9", 
     1085   "geometry": 
     1086       { 
     1087        "type": "Point", 
     1088        "coordinates": [-117.827716,33.738432] 
     1089       }, 
     1090   "properties":  
     1091       {"street": "B ST", "color": "lime", "perpx": "0", "perpy": "0"} 
     1092},   
     1093{ 
     1094   "type": "Feature", 
     1095   "id": "5 S 30.2", 
     1096   "geometry": 
     1097       { 
     1098        "type": "Point", 
     1099        "coordinates": [-117.832494,33.740098] 
     1100       }, 
     1101   "properties":  
     1102       {"street": "S OF 55*", "color": "lime", "perpx": "-0.326161", "perpy": "-0.945314"} 
     1103},   
     1104{ 
     1105   "type": "Feature", 
     1106   "id": "5 S 30.4", 
     1107   "geometry": 
     1108       { 
     1109        "type": "Point", 
     1110        "coordinates": [-117.835743,33.741219] 
     1111       }, 
     1112   "properties":  
     1113       {"street": "N OF 55", "color": "lime", "perpx": "-0.33389", "perpy": "-0.942612"} 
     1114},   
     1115{ 
     1116   "type": "Feature", 
     1117   "id": "5 S 30.9", 
     1118   "geometry": 
     1119       { 
     1120        "type": "Point", 
     1121        "coordinates": [-117.842538,33.745553] 
     1122       }, 
     1123   "properties":  
     1124       {"street": "1ST", "color": "lime", "perpx": "-0.927915", "perpy": "-0.372793"} 
     1125},   
     1126{ 
     1127   "type": "Feature", 
     1128   "id": "5 S 31.23", 
     1129   "geometry": 
     1130       { 
     1131        "type": "Point", 
     1132        "coordinates": [-117.844652,33.749928] 
     1133       }, 
     1134   "properties":  
     1135       {"street": "4TH", "color": "lime", "perpx": "-0.697138", "perpy": "-0.716937"} 
     1136},   
     1137{ 
     1138   "type": "Feature", 
     1139   "id": "5 S 31.4", 
     1140   "geometry": 
     1141       { 
     1142        "type": "Point", 
     1143        "coordinates": [-117.846535,33.751759] 
     1144       }, 
     1145   "properties":  
     1146       {"street": "CONCORD", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"} 
     1147},   
     1148{ 
     1149   "type": "Feature", 
     1150   "id": "5 S 31.6", 
     1151   "geometry": 
     1152       { 
     1153        "type": "Point", 
     1154        "coordinates": [-117.849326,33.753388] 
     1155       }, 
     1156   "properties":  
     1157       {"street": "GRAND 1", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"} 
     1158},   
     1159{ 
     1160   "type": "Feature", 
     1161   "id": "5 S 31.9", 
     1162   "geometry": 
     1163       { 
     1164        "type": "Point", 
     1165        "coordinates": [-117.853795,33.755475] 
     1166       }, 
     1167   "properties":  
     1168       {"street": "GRAND 2", "color": "lime", "perpx": "-0.382512", "perpy": "-0.923951"} 
     1169},   
     1170{ 
     1171   "type": "Feature", 
     1172   "id": "5 S 32.25", 
     1173   "geometry": 
     1174       { 
     1175        "type": "Point", 
     1176        "coordinates": [-117.859225,33.757943] 
     1177       }, 
     1178   "properties":  
     1179       {"street": "17TH 1", "color": "lime", "perpx": "-0.583453", "perpy": "-0.812147"} 
     1180},   
     1181{ 
     1182   "type": "Feature", 
     1183   "id": "5 S 33", 
     1184   "geometry": 
     1185       { 
     1186        "type": "Point", 
     1187        "coordinates": [-117.866976,33.766429] 
     1188       }, 
     1189   "properties":  
     1190       {"street": "MAIN 1", "color": "lime", "perpx": "-0.855987", "perpy": "-0.516997"} 
     1191},   
     1192{ 
     1193   "type": "Feature", 
     1194   "id": "5 S 33.2", 
     1195   "geometry": 
     1196       { 
     1197        "type": "Point", 
     1198        "coordinates": [-117.868373,33.768742] 
     1199       }, 
     1200   "properties":  
     1201       {"street": "MAIN 2", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"} 
     1202},   
     1203{ 
     1204   "type": "Feature", 
     1205   "id": "5 S 33.3", 
     1206   "geometry": 
     1207       { 
     1208        "type": "Point", 
     1209        "coordinates": [-117.869238,33.770032] 
     1210       }, 
     1211   "properties":  
     1212       {"street": "BROADWAY", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"} 
     1213},   
     1214{ 
     1215   "type": "Feature", 
     1216   "id": "5 S 33.8", 
     1217   "geometry": 
     1218       { 
     1219        "type": "Point", 
     1220        "coordinates": [-117.874337,33.776289] 
     1221       }, 
     1222   "properties":  
     1223       {"street": "S OF 22", "color": "lime", "perpx": "-0.780234", "perpy": "-0.625487"} 
     1224},   
     1225 
     1226{ 
     1227   "type": "Feature", 
     1228   "id": "55 N 4.58", 
     1229   "geometry": 
     1230       { 
     1231        "type": "Point", 
     1232        "coordinates": [-117.888101,33.671785] 
     1233       }, 
     1234   "properties":  
     1235       {"street": "BRISTOL", "color": "lime", "perpx": "0.612685", "perpy": "-0.790327"} 
     1236},   
     1237{ 
     1238   "type": "Feature", 
     1239   "id": "55 N 4.7", 
     1240   "geometry": 
     1241       { 
     1242        "type": "Point", 
     1243        "coordinates": [-117.886575,33.672968] 
     1244       }, 
     1245   "properties":  
     1246       {"street": "BAKER 1", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
     1247},   
     1248{ 
     1249   "type": "Feature", 
     1250   "id": "55 N 5.06", 
     1251   "geometry": 
     1252       { 
     1253        "type": "Point", 
     1254        "coordinates": [-117.882208,33.676702] 
     1255       }, 
     1256   "properties":  
     1257       {"street": "BAKER 2", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
     1258},   
     1259{ 
     1260   "type": "Feature", 
     1261   "id": "55 N 5.51", 
     1262   "geometry": 
     1263       { 
     1264        "type": "Point", 
     1265        "coordinates": [-117.877327,33.681801] 
     1266       }, 
     1267   "properties":  
     1268       {"street": "PAULARINO 1", "color": "yellow", "perpx": "0.73612", "perpy": "-0.676851"} 
     1269},   
     1270{ 
     1271   "type": "Feature", 
     1272   "id": "55 N 5.87", 
     1273   "geometry": 
     1274       { 
     1275        "type": "Point", 
     1276        "coordinates": [-117.873498,33.685939] 
     1277       }, 
     1278   "properties":  
     1279       {"street": "PAULARINO 2", "color": "yellow", "perpx": "0.719864", "perpy": "-0.694115"} 
     1280},   
     1281{ 
     1282   "type": "Feature", 
     1283   "id": "55 N 6.94", 
     1284   "geometry": 
     1285       { 
     1286        "type": "Point", 
     1287        "coordinates": [-117.861831,33.698026] 
     1288       }, 
     1289   "properties":  
     1290       {"street": "MACARTHU1", "color": "lime", "perpx": "0.740557", "perpy": "-0.671994"} 
     1291},   
     1292{ 
     1293   "type": "Feature", 
     1294   "id": "55 N 7.1", 
     1295   "geometry": 
     1296       { 
     1297        "type": "Point", 
     1298        "coordinates": [-117.860155,33.699873] 
     1299       }, 
     1300   "properties":  
     1301       {"street": "MACARTHU2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1302},   
     1303{ 
     1304   "type": "Feature", 
     1305   "id": "55 N 7.85", 
     1306   "geometry": 
     1307       { 
     1308        "type": "Point", 
     1309        "coordinates": [-117.85183,33.708364] 
     1310       }, 
     1311   "properties":  
     1312       {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     1313},   
     1314{ 
     1315   "type": "Feature", 
     1316   "id": "55 N 8.12", 
     1317   "geometry": 
     1318       { 
     1319        "type": "Point", 
     1320        "coordinates": [-117.848847,33.711314] 
     1321       }, 
     1322   "properties":  
     1323       {"street": "DYER 2", "color": "lime", "perpx": "0.71172", "perpy": "-0.702463"} 
     1324},   
     1325{ 
     1326   "type": "Feature", 
     1327   "id": "55 N 9.41", 
     1328   "geometry": 
     1329       { 
     1330        "type": "Point", 
     1331        "coordinates": [-117.83503,33.726049] 
     1332       }, 
     1333   "properties":  
     1334       {"street": "EDINGER 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1335},   
     1336{ 
     1337   "type": "Feature", 
     1338   "id": "55 N 9.84", 
     1339   "geometry": 
     1340       { 
     1341        "type": "Point", 
     1342        "coordinates": [-117.833555,33.732101] 
     1343       }, 
     1344   "properties":  
     1345       {"street": "MCFADDEN", "color": "lime", "perpx": "0.999932", "perpy": "-0.011627"} 
     1346},   
     1347{ 
     1348   "type": "Feature", 
     1349   "id": "55 N 10.2", 
     1350   "geometry": 
     1351       { 
     1352        "type": "Point", 
     1353        "coordinates": [-117.833583,33.737088] 
     1354       }, 
     1355   "properties":  
     1356       {"street": "N OF 5 OFF", "color": "lime", "perpx": "0", "perpy": "0"} 
     1357},   
     1358{ 
     1359   "type": "Feature", 
     1360   "id": "55 N 10.4", 
     1361   "geometry": 
     1362       { 
     1363        "type": "Point", 
     1364        "coordinates": [-117.83368,33.739982] 
     1365       }, 
     1366   "properties":  
     1367       {"street": "S OF 5", "color": "lime", "perpx": "0.999923", "perpy": "0.012439"} 
     1368},   
     1369{ 
     1370   "type": "Feature", 
     1371   "id": "55 N 10.5", 
     1372   "geometry": 
     1373       { 
     1374        "type": "Point", 
     1375        "coordinates": [-117.833698,33.741429] 
     1376       }, 
     1377   "properties":  
     1378       {"street": "N OF 5", "color": "lime", "perpx": "0.97478", "perpy": "-0.22317"} 
     1379},   
     1380{ 
     1381   "type": "Feature", 
     1382   "id": "55 N 11.1", 
     1383   "geometry": 
     1384       { 
     1385        "type": "Point", 
     1386        "coordinates": [-117.831768,33.749859] 
     1387       }, 
     1388   "properties":  
     1389       {"street": "FOURTH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1390},   
     1391{ 
     1392   "type": "Feature", 
     1393   "id": "55 N 11.74", 
     1394   "geometry": 
     1395       { 
     1396        "type": "Point", 
     1397        "coordinates": [-117.830994,33.759105] 
    5721398       }, 
    5731399   "properties":  
     
    5761402{ 
    5771403   "type": "Feature", 
    578    "id": "5 N 32.5", 
    579    "geometry": 
    580        { 
    581         "type": "Point", 
    582         "coordinates": [-117.862379,33.760465] 
    583        }, 
    584    "properties":  
    585        {"street": "17TH 2", "color": "lime", "perpx": "0.753317", "perpy": "0.657658"} 
    586 },   
    587 { 
    588    "type": "Feature", 
    589    "id": "5 N 32.6", 
    590    "geometry": 
    591        { 
    592         "type": "Point", 
    593         "coordinates": [-117.863369,33.761599] 
    594        }, 
    595    "properties":  
    596        {"street": "17TH 3", "color": "lime", "perpx": "0", "perpy": "0"} 
    597 },   
    598 { 
    599    "type": "Feature", 
    600    "id": "5 S 7.99", 
    601    "geometry": 
    602        { 
    603         "type": "Point", 
    604         "coordinates": [-117.669881,33.481738] 
    605        }, 
    606    "properties":  
    607        {"street": "AEROPUERTO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"} 
    608 },   
    609 { 
    610    "type": "Feature", 
    611    "id": "5 S 8.6", 
    612    "geometry": 
    613        { 
    614         "type": "Point", 
    615         "coordinates": [-117.663917,33.489176] 
    616        }, 
    617    "properties":  
    618        {"street": "S JUAN CREEK", "color": "lime", "perpx": "-0.836267", "perpy": "0.548322"} 
    619 },   
    620 { 
    621    "type": "Feature", 
    622    "id": "5 S 9.15", 
    623    "geometry": 
    624        { 
    625         "type": "Point", 
    626         "coordinates": [-117.659442,33.496001] 
    627        }, 
    628    "properties":  
    629        {"street": "PLAZA", "color": "lime", "perpx": "-0.971491", "perpy": "0.237077"} 
    630 },   
    631 { 
    632    "type": "Feature", 
    633    "id": "5 S 9.4", 
    634    "geometry": 
    635        { 
    636         "type": "Point", 
    637         "coordinates": [-117.658583,33.499521] 
    638        }, 
    639    "properties":  
    640        {"street": "ORTEGA 1", "color": "lime", "perpx": "-0.996721", "perpy": "-0.080919"} 
    641 },   
    642 { 
    643    "type": "Feature", 
    644    "id": "5 S 10.1", 
    645    "geometry": 
    646        { 
    647         "type": "Point", 
    648         "coordinates": [-117.661127,33.5093] 
    649        }, 
    650    "properties":  
    651        {"street": "EL HORNO", "color": "lime", "perpx": "-0.918881", "perpy": "-0.394535"} 
    652 },   
    653 { 
    654    "type": "Feature", 
    655    "id": "5 S 10.4", 
    656    "geometry": 
    657        { 
    658         "type": "Point", 
    659         "coordinates": [-117.662905,33.513441] 
    660        }, 
    661    "properties":  
    662        {"street": "SERRA PARK", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"} 
    663 },   
    664 { 
    665    "type": "Feature", 
    666    "id": "5 S 10.7", 
    667    "geometry": 
    668        { 
    669         "type": "Point", 
    670         "coordinates": [-117.664664,33.517588] 
    671        }, 
    672    "properties":  
    673        {"street": "JUNIPERO SERRA", "color": "lime", "perpx": "-0.920608", "perpy": "-0.390487"} 
    674 },   
    675 { 
    676    "type": "Feature", 
    677    "id": "5 S 11.37", 
    678    "geometry": 
    679        { 
    680         "type": "Point", 
    681         "coordinates": [-117.668912,33.526418] 
    682        }, 
    683    "properties":  
    684        {"street": "TRABUCO", "color": "lime", "perpx": "-0.878964", "perpy": "-0.476887"} 
    685 },   
    686 { 
    687    "type": "Feature", 
    688    "id": "5 S 11.91", 
    689    "geometry": 
    690        { 
    691         "type": "Point", 
    692         "coordinates": [-117.674919,33.53231] 
    693        }, 
    694    "properties":  
    695        {"street": "WILDWOOD", "color": "lime", "perpx": "-0.999508", "perpy": "0.03137"} 
    696 },   
    697 { 
    698    "type": "Feature", 
    699    "id": "5 S 12.4", 
    700    "geometry": 
    701        { 
    702         "type": "Point", 
    703         "coordinates": [-117.674695,33.539447] 
    704        }, 
    705    "properties":  
    706        {"street": "S of 73", "color": "lime", "perpx": "0", "perpy": "0"} 
    707 },   
    708 { 
    709    "type": "Feature", 
    710    "id": "5 S 12.8", 
    711    "geometry": 
    712        { 
    713         "type": "Point", 
    714         "coordinates": [-117.673404,33.545217] 
    715        }, 
    716    "properties":  
    717        {"street": "AVERY 1", "color": "lime", "perpx": "-0.993564", "perpy": "0.113275"} 
    718 },   
    719 { 
    720    "type": "Feature", 
    721    "id": "5 S 13.6", 
    722    "geometry": 
    723        { 
    724         "type": "Point", 
    725         "coordinates": [-117.673131,33.556667] 
    726        }, 
    727    "properties":  
    728        {"street": "CROWN VA1", "color": "lime", "perpx": "-0.999988", "perpy": "0.004899"} 
    729 },   
    730 { 
    731    "type": "Feature", 
    732    "id": "5 S 15.03", 
    733    "geometry": 
    734        { 
    735         "type": "Point", 
    736         "coordinates": [-117.671983,33.577397] 
    737        }, 
    738    "properties":  
    739        {"street": "OSO PARK1", "color": "lime", "perpx": "-0.999891", "perpy": "0.014798"} 
    740 },   
    741 { 
    742    "type": "Feature", 
    743    "id": "5 S 15.3", 
    744    "geometry": 
    745        { 
    746         "type": "Point", 
    747         "coordinates": [-117.671925,33.581316] 
    748        }, 
    749    "properties":  
    750        {"street": "OSO PARK2", "color": "lime", "perpx": "-0.999911", "perpy": "0.013321"} 
    751 },   
    752 { 
    753    "type": "Feature", 
    754    "id": "5 S 16.3", 
    755    "geometry": 
    756        { 
    757         "type": "Point", 
    758         "coordinates": [-117.673779,33.595354] 
    759        }, 
    760    "properties":  
    761        {"street": "LA PAZ 1", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"} 
    762 },   
    763 { 
    764    "type": "Feature", 
    765    "id": "5 S 16.5", 
    766    "geometry": 
    767        { 
    768         "type": "Point", 
    769         "coordinates": [-117.67615,33.597607] 
    770        }, 
    771    "properties":  
    772        {"street": "LA PAZ 2", "color": "lime", "perpx": "-0.688838", "perpy": "-0.724915"} 
    773 },   
    774 { 
    775    "type": "Feature", 
    776    "id": "5 S 17.26", 
    777    "geometry": 
    778        { 
    779         "type": "Point", 
    780         "coordinates": [-117.687691,33.602645] 
    781        }, 
    782    "properties":  
    783        {"street": "ALICIA 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    784 },   
    785 { 
    786    "type": "Feature", 
    787    "id": "5 S 17.49", 
    788    "geometry": 
    789        { 
    790         "type": "Point", 
    791         "coordinates": [-117.69087,33.604617] 
    792        }, 
    793    "properties":  
    794        {"street": "ALICIA 2", "color": "lime", "perpx": "-0.527137", "perpy": "-0.849781"} 
    795 },   
    796 { 
    797    "type": "Feature", 
    798    "id": "5 S 18.5", 
    799    "geometry": 
    800        { 
    801         "type": "Point", 
    802         "coordinates": [-117.705361,33.612561] 
    803        }, 
    804    "properties":  
    805        {"street": "EL TORO 1", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"} 
    806 },   
    807 { 
    808    "type": "Feature", 
    809    "id": "5 S 18.7", 
    810    "geometry": 
    811        { 
    812         "type": "Point", 
    813         "coordinates": [-117.707825,33.614654] 
    814        }, 
    815    "properties":  
    816        {"street": "EL TORO 2", "color": "lime", "perpx": "-0.647397", "perpy": "-0.762153"} 
    817 },   
    818 { 
    819    "type": "Feature", 
    820    "id": "5 S 19.8", 
    821    "geometry": 
    822        { 
    823         "type": "Point", 
    824         "coordinates": [-117.719875,33.627286] 
    825        }, 
    826    "properties":  
    827        {"street": "LAKE FOR1", "color": "lime", "perpx": "0", "perpy": "0"} 
    828 },   
    829 { 
    830    "type": "Feature", 
    831    "id": "5 S 19.9", 
    832    "geometry": 
    833        { 
    834         "type": "Point", 
    835         "coordinates": [-117.720919,33.628454] 
    836        }, 
    837    "properties":  
    838        {"street": "LAKE FOR2", "color": "lime", "perpx": "0", "perpy": "0"} 
    839 },   
    840 { 
    841    "type": "Feature", 
    842    "id": "5 S 20.24", 
    843    "geometry": 
    844        { 
    845         "type": "Point", 
    846         "coordinates": [-117.724813,33.631989] 
    847        }, 
    848    "properties":  
    849        {"street": "OLDFIELD", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"} 
    850 },   
    851 { 
    852    "type": "Feature", 
    853    "id": "5 S 20.59", 
    854    "geometry": 
    855        { 
    856         "type": "Point", 
    857         "coordinates": [-117.728446,33.635959] 
    858        }, 
    859    "properties":  
    860        {"street": "BAKE 1", "color": "lime", "perpx": "-0.737725", "perpy": "-0.675102"} 
    861 },   
    862 { 
    863    "type": "Feature", 
    864    "id": "5 S 20.95", 
    865    "geometry": 
    866        { 
    867         "type": "Point", 
    868         "coordinates": [-117.731896,33.640308] 
    869        }, 
    870    "properties":  
    871        {"street": "BAKE 2", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"} 
    872 },   
    873 { 
    874    "type": "Feature", 
    875    "id": "5 S 21.25", 
    876    "geometry": 
    877        { 
    878         "type": "Point", 
    879         "coordinates": [-117.734722,33.643978] 
    880        }, 
    881    "properties":  
    882        {"street": "At 405", "color": "lime", "perpx": "-0.792319", "perpy": "-0.610107"} 
    883 },   
    884 { 
    885    "type": "Feature", 
    886    "id": "5 S 22.1", 
    887    "geometry": 
    888        { 
    889         "type": "Point", 
    890         "coordinates": [-117.74294,33.654255] 
    891        }, 
    892    "properties":  
    893        {"street": "ALTON 1", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"} 
    894 },   
    895 { 
    896    "type": "Feature", 
    897    "id": "5 S 22.14", 
    898    "geometry": 
    899        { 
    900         "type": "Point", 
    901         "coordinates": [-117.743323,33.654741] 
    902        }, 
    903    "properties":  
    904        {"street": "ALTON 2", "color": "lime", "perpx": "-0.78542", "perpy": "-0.618963"} 
    905 },   
    906 { 
    907    "type": "Feature", 
    908    "id": "5 S 22.75", 
    909    "geometry": 
    910        { 
    911         "type": "Point", 
    912         "coordinates": [-117.749253,33.662021] 
    913        }, 
    914    "properties":  
    915        {"street": "BARRANCA", "color": "lime", "perpx": "-0.788481", "perpy": "-0.615059"} 
    916 },   
    917 { 
    918    "type": "Feature", 
    919    "id": "5 S 23.05", 
    920    "geometry": 
    921        { 
    922         "type": "Point", 
    923         "coordinates": [-117.75203,33.665581] 
    924        }, 
    925    "properties":  
    926        {"street": "S OF 133", "color": "lime", "perpx": "-0.781645", "perpy": "-0.623724"} 
    927 },   
    928 { 
    929    "type": "Feature", 
    930    "id": "5 S 23.1", 
    931    "geometry": 
    932        { 
    933         "type": "Point", 
    934         "coordinates": [-117.7525,33.66617] 
    935        }, 
    936    "properties":  
    937        {"street": "N OF 133", "color": "lime", "perpx": "0", "perpy": "0"} 
    938 },   
    939 { 
    940    "type": "Feature", 
    941    "id": "5 S 23.5", 
    942    "geometry": 
    943        { 
    944         "type": "Point", 
    945         "coordinates": [-117.755616,33.6716] 
    946        }, 
    947    "properties":  
    948        {"street": "S OF SAND CNYN", "color": "lime", "perpx": "-0.975596", "perpy": "-0.219572"} 
    949 },   
    950 { 
    951    "type": "Feature", 
    952    "id": "5 S 23.69", 
    953    "geometry": 
    954        { 
    955         "type": "Point", 
    956         "coordinates": [-117.756223,33.674297] 
    957        }, 
    958    "properties":  
    959        {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"} 
    960 },   
    961 { 
    962    "type": "Feature", 
    963    "id": "5 S 24.05", 
    964    "geometry": 
    965        { 
    966         "type": "Point", 
    967         "coordinates": [-117.759362,33.67863] 
    968        }, 
    969    "properties":  
    970        {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.809826", "perpy": "-0.58667"} 
    971 },   
    972 { 
    973    "type": "Feature", 
    974    "id": "5 S 24.5", 
    975    "geometry": 
    976        { 
    977         "type": "Point", 
    978         "coordinates": [-117.764425,33.683599] 
    979        }, 
    980    "properties":  
    981        {"street": "N OF SAND CNYN", "color": "lime", "perpx": "-0.835705", "perpy": "-0.549178"} 
    982 },   
    983 { 
    984    "type": "Feature", 
    985    "id": "5 S 24.84", 
    986    "geometry": 
    987        { 
    988         "type": "Point", 
    989         "coordinates": [-117.767277,33.687939] 
    990        }, 
    991    "properties":  
    992        {"street": "JEFFREY 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    993 },   
    994 { 
    995    "type": "Feature", 
    996    "id": "5 S 25.8", 
    997    "geometry": 
    998        { 
    999         "type": "Point", 
    1000         "coordinates": [-117.775267,33.700148] 
    1001        }, 
    1002    "properties":  
    1003        {"street": "YALE", "color": "lime", "perpx": "-0.828715", "perpy": "-0.559671"} 
    1004 },   
    1005 { 
    1006    "type": "Feature", 
    1007    "id": "5 S 26.35", 
    1008    "geometry": 
    1009        { 
    1010         "type": "Point", 
    1011         "coordinates": [-117.779935,33.70706] 
    1012        }, 
    1013    "properties":  
    1014        {"street": "CULVER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1015 },   
    1016 { 
    1017    "type": "Feature", 
    1018    "id": "5 S 26.66", 
    1019    "geometry": 
    1020        { 
    1021         "type": "Point", 
    1022         "coordinates": [-117.783134,33.710634] 
    1023        }, 
    1024    "properties":  
    1025        {"street": "CULVER 2", "color": "lime", "perpx": "-0.654674", "perpy": "-0.755912"} 
    1026 },   
    1027 { 
    1028    "type": "Feature", 
    1029    "id": "5 S 27.43", 
    1030    "geometry": 
    1031        { 
    1032         "type": "Point", 
    1033         "coordinates": [-117.793071,33.717966] 
    1034        }, 
    1035    "properties":  
    1036        {"street": "JAMBOREE 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1037 },   
    1038 { 
    1039    "type": "Feature", 
    1040    "id": "5 S 27.7", 
    1041    "geometry": 
    1042        { 
    1043         "type": "Point", 
    1044         "coordinates": [-117.796638,33.72047] 
    1045        }, 
    1046    "properties":  
    1047        {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.574555", "perpy": "-0.818466"} 
    1048 },   
    1049 { 
    1050    "type": "Feature", 
    1051    "id": "5 S 28.1", 
    1052    "geometry": 
    1053        { 
    1054         "type": "Point", 
    1055         "coordinates": [-117.801999,33.724136] 
    1056        }, 
    1057    "properties":  
    1058        {"street": "TUSTIN RANCH", "color": "lime", "perpx": "-0.556796", "perpy": "-0.83065"} 
    1059 },   
    1060 { 
    1061    "type": "Feature", 
    1062    "id": "5 S 29.02", 
    1063    "geometry": 
    1064        { 
    1065         "type": "Point", 
    1066         "coordinates": [-117.814369,33.732587] 
    1067        }, 
    1068    "properties":  
    1069        {"street": "RED HILL", "color": "lime", "perpx": "-0.566824", "perpy": "-0.823839"} 
    1070 },   
    1071 { 
    1072    "type": "Feature", 
    1073    "id": "5 S 29.7", 
    1074    "geometry": 
    1075        { 
    1076         "type": "Point", 
    1077         "coordinates": [-117.824499,33.737386] 
    1078        }, 
    1079    "properties":  
    1080        {"street": "NEWPORT*", "color": "lime", "perpx": "0", "perpy": "0"} 
    1081 },   
    1082 { 
    1083    "type": "Feature", 
    1084    "id": "5 S 29.9", 
    1085    "geometry": 
    1086        { 
    1087         "type": "Point", 
    1088         "coordinates": [-117.827716,33.738432] 
    1089        }, 
    1090    "properties":  
    1091        {"street": "B ST", "color": "lime", "perpx": "0", "perpy": "0"} 
    1092 },   
    1093 { 
    1094    "type": "Feature", 
    1095    "id": "5 S 30.2", 
    1096    "geometry": 
    1097        { 
    1098         "type": "Point", 
    1099         "coordinates": [-117.832494,33.740098] 
    1100        }, 
    1101    "properties":  
    1102        {"street": "S OF 55*", "color": "lime", "perpx": "-0.326161", "perpy": "-0.945314"} 
    1103 },   
    1104 { 
    1105    "type": "Feature", 
    1106    "id": "5 S 30.4", 
    1107    "geometry": 
    1108        { 
    1109         "type": "Point", 
    1110         "coordinates": [-117.835743,33.741219] 
    1111        }, 
    1112    "properties":  
    1113        {"street": "N OF 55", "color": "lime", "perpx": "-0.33389", "perpy": "-0.942612"} 
    1114 },   
    1115 { 
    1116    "type": "Feature", 
    1117    "id": "5 S 30.9", 
    1118    "geometry": 
    1119        { 
    1120         "type": "Point", 
    1121         "coordinates": [-117.842538,33.745553] 
    1122        }, 
    1123    "properties":  
    1124        {"street": "1ST", "color": "lime", "perpx": "-0.927915", "perpy": "-0.372793"} 
    1125 },   
    1126 { 
    1127    "type": "Feature", 
    1128    "id": "5 S 31.23", 
    1129    "geometry": 
    1130        { 
    1131         "type": "Point", 
    1132         "coordinates": [-117.844652,33.749928] 
    1133        }, 
    1134    "properties":  
    1135        {"street": "4TH", "color": "lime", "perpx": "-0.697138", "perpy": "-0.716937"} 
    1136 },   
    1137 { 
    1138    "type": "Feature", 
    1139    "id": "5 S 31.4", 
    1140    "geometry": 
    1141        { 
    1142         "type": "Point", 
    1143         "coordinates": [-117.846535,33.751759] 
    1144        }, 
    1145    "properties":  
    1146        {"street": "CONCORD", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"} 
    1147 },   
    1148 { 
    1149    "type": "Feature", 
    1150    "id": "5 S 31.6", 
    1151    "geometry": 
    1152        { 
    1153         "type": "Point", 
    1154         "coordinates": [-117.849326,33.753388] 
    1155        }, 
    1156    "properties":  
    1157        {"street": "GRAND 1", "color": "lime", "perpx": "-0.504083", "perpy": "-0.863655"} 
    1158 },   
    1159 { 
    1160    "type": "Feature", 
    1161    "id": "5 S 31.9", 
    1162    "geometry": 
    1163        { 
    1164         "type": "Point", 
    1165         "coordinates": [-117.853795,33.755475] 
    1166        }, 
    1167    "properties":  
    1168        {"street": "GRAND 2", "color": "lime", "perpx": "-0.382512", "perpy": "-0.923951"} 
    1169 },   
    1170 { 
    1171    "type": "Feature", 
    1172    "id": "5 S 32.25", 
    1173    "geometry": 
    1174        { 
    1175         "type": "Point", 
    1176         "coordinates": [-117.859225,33.757943] 
    1177        }, 
    1178    "properties":  
    1179        {"street": "17TH 1", "color": "lime", "perpx": "-0.583453", "perpy": "-0.812147"} 
    1180 },   
    1181 { 
    1182    "type": "Feature", 
    1183    "id": "5 S 33", 
    1184    "geometry": 
    1185        { 
    1186         "type": "Point", 
    1187         "coordinates": [-117.866976,33.766429] 
    1188        }, 
    1189    "properties":  
    1190        {"street": "MAIN 1", "color": "lime", "perpx": "-0.855987", "perpy": "-0.516997"} 
    1191 },   
    1192 { 
    1193    "type": "Feature", 
    1194    "id": "5 S 33.2", 
    1195    "geometry": 
    1196        { 
    1197         "type": "Point", 
    1198         "coordinates": [-117.868373,33.768742] 
    1199        }, 
    1200    "properties":  
    1201        {"street": "MAIN 2", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"} 
    1202 },   
    1203 { 
    1204    "type": "Feature", 
    1205    "id": "5 S 33.3", 
    1206    "geometry": 
    1207        { 
    1208         "type": "Point", 
    1209         "coordinates": [-117.869238,33.770032] 
    1210        }, 
    1211    "properties":  
    1212        {"street": "BROADWAY", "color": "lime", "perpx": "-0.830562", "perpy": "-0.556927"} 
    1213 },   
    1214 { 
    1215    "type": "Feature", 
    1216    "id": "5 S 33.8", 
    1217    "geometry": 
    1218        { 
    1219         "type": "Point", 
    1220         "coordinates": [-117.874337,33.776289] 
    1221        }, 
    1222    "properties":  
    1223        {"street": "S OF 22", "color": "lime", "perpx": "-0.780234", "perpy": "-0.625487"} 
     1404   "id": "55 N 12", 
     1405   "geometry": 
     1406       { 
     1407        "type": "Point", 
     1408        "coordinates": [-117.830834,33.762898] 
     1409       }, 
     1410   "properties":  
     1411       {"street": "17TH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1412},   
     1413{ 
     1414   "type": "Feature", 
     1415   "id": "55 N 12.7", 
     1416   "geometry": 
     1417       { 
     1418        "type": "Point", 
     1419        "coordinates": [-117.830912,33.773139] 
     1420       }, 
     1421   "properties":  
     1422       {"street": "FAIRHAVEN", "color": "lime", "perpx": "0.999999", "perpy": "0.001196"} 
     1423},   
     1424{ 
     1425   "type": "Feature", 
     1426   "id": "55 S 4.58", 
     1427   "geometry": 
     1428       { 
     1429        "type": "Point", 
     1430        "coordinates": [-117.888309,33.671928] 
     1431       }, 
     1432   "properties":  
     1433       {"street": "BRISTOL", "color": "lime", "perpx": "-0.612257", "perpy": "0.790659"} 
     1434},   
     1435{ 
     1436   "type": "Feature", 
     1437   "id": "55 S 4.7", 
     1438   "geometry": 
     1439       { 
     1440        "type": "Point", 
     1441        "coordinates": [-117.88678,33.673112] 
     1442       }, 
     1443   "properties":  
     1444       {"street": "BAKER 1", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
     1445},   
     1446{ 
     1447   "type": "Feature", 
     1448   "id": "55 S 5.06", 
     1449   "geometry": 
     1450       { 
     1451        "type": "Point", 
     1452        "coordinates": [-117.882355,33.676789] 
     1453       }, 
     1454   "properties":  
     1455       {"street": "BAKER 2", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
     1456},   
     1457{ 
     1458   "type": "Feature", 
     1459   "id": "55 S 5.51", 
     1460   "geometry": 
     1461       { 
     1462        "type": "Point", 
     1463        "coordinates": [-117.87755,33.681935] 
     1464       }, 
     1465   "properties":  
     1466       {"street": "PAULARINO 1", "color": "lime", "perpx": "-0.722093", "perpy": "0.691796"} 
     1467},   
     1468{ 
     1469   "type": "Feature", 
     1470   "id": "55 S 5.87", 
     1471   "geometry": 
     1472       { 
     1473        "type": "Point", 
     1474        "coordinates": [-117.873635,33.686016] 
     1475       }, 
     1476   "properties":  
     1477       {"street": "PAULARINO 2", "color": "lime", "perpx": "-0.725185", "perpy": "0.688554"} 
     1478},   
     1479{ 
     1480   "type": "Feature", 
     1481   "id": "55 S 6.88", 
     1482   "geometry": 
     1483       { 
     1484        "type": "Point", 
     1485        "coordinates": [-117.862677,33.697495] 
     1486       }, 
     1487   "properties":  
     1488       {"street": "MACARTHU1", "color": "red", "perpx": "-0.710326", "perpy": "0.703873"} 
     1489},   
     1490{ 
     1491   "type": "Feature", 
     1492   "id": "55 S 7.03", 
     1493   "geometry": 
     1494       { 
     1495        "type": "Point", 
     1496        "coordinates": [-117.861041,33.699146] 
     1497       }, 
     1498   "properties":  
     1499       {"street": "MACARTHU2", "color": "red", "perpx": "-0.710326", "perpy": "0.703873"} 
     1500},   
     1501{ 
     1502   "type": "Feature", 
     1503   "id": "55 S 8.12", 
     1504   "geometry": 
     1505       { 
     1506        "type": "Point", 
     1507        "coordinates": [-117.849099,33.711451] 
     1508       }, 
     1509   "properties":  
     1510       {"street": "DYER 2", "color": "red", "perpx": "-0.708914", "perpy": "0.705295"} 
     1511},   
     1512{ 
     1513   "type": "Feature", 
     1514   "id": "55 S 9.19", 
     1515   "geometry": 
     1516       { 
     1517        "type": "Point", 
     1518        "coordinates": [-117.837265,33.723387] 
     1519       }, 
     1520   "properties":  
     1521       {"street": "EDINGER 1", "color": "red", "perpx": "0", "perpy": "0"} 
     1522},   
     1523{ 
     1524   "type": "Feature", 
     1525   "id": "55 S 9.84", 
     1526   "geometry": 
     1527       { 
     1528        "type": "Point", 
     1529        "coordinates": [-117.833996,33.73212] 
     1530       }, 
     1531   "properties":  
     1532       {"street": "MCFADDEN", "color": "yellow", "perpx": "-0.999946", "perpy": "-0.010425"} 
     1533},   
     1534{ 
     1535   "type": "Feature", 
     1536   "id": "55 S 10.4", 
     1537   "geometry": 
     1538       { 
     1539        "type": "Point", 
     1540        "coordinates": [-117.833908,33.739982] 
     1541       }, 
     1542   "properties":  
     1543       {"street": "S OF 5", "color": "lime", "perpx": "-0.999756", "perpy": "0.022109"} 
     1544},   
     1545{ 
     1546   "type": "Feature", 
     1547   "id": "55 S 10.5", 
     1548   "geometry": 
     1549       { 
     1550        "type": "Point", 
     1551        "coordinates": [-117.833876,33.741429] 
     1552       }, 
     1553   "properties":  
     1554       {"street": "N OF 5", "color": "lime", "perpx": "-0.987616", "perpy": "0.156888"} 
     1555},   
     1556{ 
     1557   "type": "Feature", 
     1558   "id": "55 S 11.62", 
     1559   "geometry": 
     1560       { 
     1561        "type": "Point", 
     1562        "coordinates": [-117.831392,33.75738] 
     1563       }, 
     1564   "properties":  
     1565       {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     1566},   
     1567{ 
     1568   "type": "Feature", 
     1569   "id": "55 S 12.7", 
     1570   "geometry": 
     1571       { 
     1572        "type": "Point", 
     1573        "coordinates": [-117.831088,33.773138] 
     1574       }, 
     1575   "properties":  
     1576       {"street": "FAIRHAVEN", "color": "lime", "perpx": "-0.999999", "perpy": "-0.001368"} 
    12241577},   
    12251578 
    12261579{ 
    12271580   "type": "Feature", 
    1228    "id": "55 N 4.58", 
    1229    "geometry": 
    1230        { 
    1231         "type": "Point", 
    1232         "coordinates": [-117.888101,33.671785] 
    1233        }, 
    1234    "properties":  
    1235        {"street": "BRISTOL", "color": "lime", "perpx": "0.612685", "perpy": "-0.790327"} 
    1236 },   
    1237 { 
    1238    "type": "Feature", 
    1239    "id": "55 N 4.7", 
    1240    "geometry": 
    1241        { 
    1242         "type": "Point", 
    1243         "coordinates": [-117.886575,33.672968] 
    1244        }, 
    1245    "properties":  
    1246        {"street": "BAKER 1", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
    1247 },   
    1248 { 
    1249    "type": "Feature", 
    1250    "id": "55 N 5.06", 
    1251    "geometry": 
    1252        { 
    1253         "type": "Point", 
    1254         "coordinates": [-117.882208,33.676702] 
    1255        }, 
    1256    "properties":  
    1257        {"street": "BAKER 2", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
    1258 },   
    1259 { 
    1260    "type": "Feature", 
    1261    "id": "55 N 5.51", 
    1262    "geometry": 
    1263        { 
    1264         "type": "Point", 
    1265         "coordinates": [-117.877327,33.681801] 
    1266        }, 
    1267    "properties":  
    1268        {"street": "PAULARINO 1", "color": "lime", "perpx": "0.73612", "perpy": "-0.676851"} 
    1269 },   
    1270 { 
    1271    "type": "Feature", 
    1272    "id": "55 N 5.87", 
    1273    "geometry": 
    1274        { 
    1275         "type": "Point", 
    1276         "coordinates": [-117.873498,33.685939] 
    1277        }, 
    1278    "properties":  
    1279        {"street": "PAULARINO 2", "color": "lime", "perpx": "0.719864", "perpy": "-0.694115"} 
    1280 },   
    1281 { 
    1282    "type": "Feature", 
    1283    "id": "55 N 6.94", 
    1284    "geometry": 
    1285        { 
    1286         "type": "Point", 
    1287         "coordinates": [-117.861831,33.698026] 
    1288        }, 
    1289    "properties":  
    1290        {"street": "MACARTHU1", "color": "lime", "perpx": "0.740557", "perpy": "-0.671994"} 
    1291 },   
    1292 { 
    1293    "type": "Feature", 
    1294    "id": "55 N 7.1", 
    1295    "geometry": 
    1296        { 
    1297         "type": "Point", 
    1298         "coordinates": [-117.860155,33.699873] 
    1299        }, 
    1300    "properties":  
    1301        {"street": "MACARTHU2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1302 },   
    1303 { 
    1304    "type": "Feature", 
    1305    "id": "55 N 7.85", 
    1306    "geometry": 
    1307        { 
    1308         "type": "Point", 
    1309         "coordinates": [-117.85183,33.708364] 
    1310        }, 
    1311    "properties":  
    1312        {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1313 },   
    1314 { 
    1315    "type": "Feature", 
    1316    "id": "55 N 8.12", 
    1317    "geometry": 
    1318        { 
    1319         "type": "Point", 
    1320         "coordinates": [-117.848847,33.711314] 
    1321        }, 
    1322    "properties":  
    1323        {"street": "DYER 2", "color": "lime", "perpx": "0.71172", "perpy": "-0.702463"} 
    1324 },   
    1325 { 
    1326    "type": "Feature", 
    1327    "id": "55 N 9.41", 
    1328    "geometry": 
    1329        { 
    1330         "type": "Point", 
    1331         "coordinates": [-117.83503,33.726049] 
    1332        }, 
    1333    "properties":  
    1334        {"street": "EDINGER 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1335 },   
    1336 { 
    1337    "type": "Feature", 
    1338    "id": "55 N 9.84", 
    1339    "geometry": 
    1340        { 
    1341         "type": "Point", 
    1342         "coordinates": [-117.833555,33.732101] 
    1343        }, 
    1344    "properties":  
    1345        {"street": "MCFADDEN", "color": "lime", "perpx": "0.999932", "perpy": "-0.011627"} 
    1346 },   
    1347 { 
    1348    "type": "Feature", 
    1349    "id": "55 N 10.2", 
    1350    "geometry": 
    1351        { 
    1352         "type": "Point", 
    1353         "coordinates": [-117.833583,33.737088] 
    1354        }, 
    1355    "properties":  
    1356        {"street": "N OF 5 OFF", "color": "lime", "perpx": "0", "perpy": "0"} 
    1357 },   
    1358 { 
    1359    "type": "Feature", 
    1360    "id": "55 N 10.4", 
    1361    "geometry": 
    1362        { 
    1363         "type": "Point", 
    1364         "coordinates": [-117.83368,33.739982] 
    1365        }, 
    1366    "properties":  
    1367        {"street": "S OF 5", "color": "lime", "perpx": "0.999923", "perpy": "0.012439"} 
    1368 },   
    1369 { 
    1370    "type": "Feature", 
    1371    "id": "55 N 10.5", 
    1372    "geometry": 
    1373        { 
    1374         "type": "Point", 
    1375         "coordinates": [-117.833698,33.741429] 
    1376        }, 
    1377    "properties":  
    1378        {"street": "N OF 5", "color": "lime", "perpx": "0.97478", "perpy": "-0.22317"} 
    1379 },   
    1380 { 
    1381    "type": "Feature", 
    1382    "id": "55 N 11.1", 
    1383    "geometry": 
    1384        { 
    1385         "type": "Point", 
    1386         "coordinates": [-117.831768,33.749859] 
    1387        }, 
    1388    "properties":  
    1389        {"street": "FOURTH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1390 },   
    1391 { 
    1392    "type": "Feature", 
    1393    "id": "55 N 11.74", 
    1394    "geometry": 
    1395        { 
    1396         "type": "Point", 
    1397         "coordinates": [-117.830994,33.759105] 
    1398        }, 
    1399    "properties":  
    1400        {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1401 },   
    1402 { 
    1403    "type": "Feature", 
    1404    "id": "55 N 12", 
    1405    "geometry": 
    1406        { 
    1407         "type": "Point", 
    1408         "coordinates": [-117.830834,33.762898] 
    1409        }, 
    1410    "properties":  
    1411        {"street": "17TH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1412 },   
    1413 { 
    1414    "type": "Feature", 
    1415    "id": "55 N 12.7", 
    1416    "geometry": 
    1417        { 
    1418         "type": "Point", 
    1419         "coordinates": [-117.830912,33.773139] 
    1420        }, 
    1421    "properties":  
    1422        {"street": "FAIRHAVEN", "color": "lime", "perpx": "0.999999", "perpy": "0.001196"} 
    1423 },   
    1424 { 
    1425    "type": "Feature", 
    1426    "id": "55 S 4.58", 
    1427    "geometry": 
    1428        { 
    1429         "type": "Point", 
    1430         "coordinates": [-117.888309,33.671928] 
    1431        }, 
    1432    "properties":  
    1433        {"street": "BRISTOL", "color": "lime", "perpx": "-0.612257", "perpy": "0.790659"} 
    1434 },   
    1435 { 
    1436    "type": "Feature", 
    1437    "id": "55 S 4.7", 
    1438    "geometry": 
    1439        { 
    1440         "type": "Point", 
    1441         "coordinates": [-117.88678,33.673112] 
    1442        }, 
    1443    "properties":  
    1444        {"street": "BAKER 1", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
    1445 },   
    1446 { 
    1447    "type": "Feature", 
    1448    "id": "55 S 5.06", 
    1449    "geometry": 
    1450        { 
    1451         "type": "Point", 
    1452         "coordinates": [-117.882355,33.676789] 
    1453        }, 
    1454    "properties":  
    1455        {"street": "BAKER 2", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
    1456 },   
    1457 { 
    1458    "type": "Feature", 
    1459    "id": "55 S 5.51", 
    1460    "geometry": 
    1461        { 
    1462         "type": "Point", 
    1463         "coordinates": [-117.87755,33.681935] 
    1464        }, 
    1465    "properties":  
    1466        {"street": "PAULARINO 1", "color": "lime", "perpx": "-0.722093", "perpy": "0.691796"} 
    1467 },   
    1468 { 
    1469    "type": "Feature", 
    1470    "id": "55 S 5.87", 
    1471    "geometry": 
    1472        { 
    1473         "type": "Point", 
    1474         "coordinates": [-117.873635,33.686016] 
    1475        }, 
    1476    "properties":  
    1477        {"street": "PAULARINO 2", "color": "lime", "perpx": "-0.725185", "perpy": "0.688554"} 
    1478 },   
    1479 { 
    1480    "type": "Feature", 
    1481    "id": "55 S 6.88", 
    1482    "geometry": 
    1483        { 
    1484         "type": "Point", 
    1485         "coordinates": [-117.862677,33.697495] 
    1486        }, 
    1487    "properties":  
    1488        {"street": "MACARTHU1", "color": "red", "perpx": "-0.710326", "perpy": "0.703873"} 
    1489 },   
    1490 { 
    1491    "type": "Feature", 
    1492    "id": "55 S 7.03", 
    1493    "geometry": 
    1494        { 
    1495         "type": "Point", 
    1496         "coordinates": [-117.861041,33.699146] 
    1497        }, 
    1498    "properties":  
    1499        {"street": "MACARTHU2", "color": "yellow", "perpx": "-0.710326", "perpy": "0.703873"} 
    1500 },   
    1501 { 
    1502    "type": "Feature", 
    1503    "id": "55 S 8.12", 
    1504    "geometry": 
    1505        { 
    1506         "type": "Point", 
    1507         "coordinates": [-117.849099,33.711451] 
    1508        }, 
    1509    "properties":  
    1510        {"street": "DYER 2", "color": "lime", "perpx": "-0.708914", "perpy": "0.705295"} 
    1511 },   
    1512 { 
    1513    "type": "Feature", 
    1514    "id": "55 S 9.19", 
    1515    "geometry": 
    1516        { 
    1517         "type": "Point", 
    1518         "coordinates": [-117.837265,33.723387] 
    1519        }, 
    1520    "properties":  
    1521        {"street": "EDINGER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1522 },   
    1523 { 
    1524    "type": "Feature", 
    1525    "id": "55 S 9.84", 
    1526    "geometry": 
    1527        { 
    1528         "type": "Point", 
    1529         "coordinates": [-117.833996,33.73212] 
    1530        }, 
    1531    "properties":  
    1532        {"street": "MCFADDEN", "color": "lime", "perpx": "-0.999946", "perpy": "-0.010425"} 
    1533 },   
    1534 { 
    1535    "type": "Feature", 
    1536    "id": "55 S 10.4", 
    1537    "geometry": 
    1538        { 
    1539         "type": "Point", 
    1540         "coordinates": [-117.833908,33.739982] 
    1541        }, 
    1542    "properties":  
    1543        {"street": "S OF 5", "color": "lime", "perpx": "-0.999756", "perpy": "0.022109"} 
    1544 },   
    1545 { 
    1546    "type": "Feature", 
    1547    "id": "55 S 10.5", 
    1548    "geometry": 
    1549        { 
    1550         "type": "Point", 
    1551         "coordinates": [-117.833876,33.741429] 
    1552        }, 
    1553    "properties":  
    1554        {"street": "N OF 5", "color": "lime", "perpx": "-0.987616", "perpy": "0.156888"} 
    1555 },   
    1556 { 
    1557    "type": "Feature", 
    1558    "id": "55 S 11.62", 
    1559    "geometry": 
    1560        { 
    1561         "type": "Point", 
    1562         "coordinates": [-117.831392,33.75738] 
    1563        }, 
    1564    "properties":  
    1565        {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    1566 },   
    1567 { 
    1568    "type": "Feature", 
    1569    "id": "55 S 12.7", 
    1570    "geometry": 
    1571        { 
    1572         "type": "Point", 
    1573         "coordinates": [-117.831088,33.773138] 
    1574        }, 
    1575    "properties":  
    1576        {"street": "FAIRHAVEN", "color": "lime", "perpx": "-0.999999", "perpy": "-0.001368"} 
     1581   "id": "73 N 25.25", 
     1582   "geometry": 
     1583       { 
     1584        "type": "Point", 
     1585        "coordinates": [-117.870921,33.659804] 
     1586       }, 
     1587   "properties":  
     1588       {"street": "ORCHID", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
     1589},   
     1590{ 
     1591   "type": "Feature", 
     1592   "id": "73 N 25.7", 
     1593   "geometry": 
     1594       { 
     1595        "type": "Point", 
     1596        "coordinates": [-117.87634,33.663519] 
     1597       }, 
     1598   "properties":  
     1599       {"street": "CAMPUS", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
     1600},   
     1601{ 
     1602   "type": "Feature", 
     1603   "id": "73 N 26.3", 
     1604   "geometry": 
     1605       { 
     1606        "type": "Point", 
     1607        "coordinates": [-117.883175,33.67012] 
     1608       }, 
     1609   "properties":  
     1610       {"street": "S OF 55", "color": "lime", "perpx": "0.756677", "perpy": "0.653789"} 
     1611},   
     1612{ 
     1613   "type": "Feature", 
     1614   "id": "73 N 26.7", 
     1615   "geometry": 
     1616       { 
     1617        "type": "Point", 
     1618        "coordinates": [-117.887299,33.674893] 
     1619       }, 
     1620   "properties":  
     1621       {"street": "N OF 55", "color": "lime", "perpx": "0.76071", "perpy": "0.649092"} 
     1622},   
     1623{ 
     1624   "type": "Feature", 
     1625   "id": "73 N 27.4", 
     1626   "geometry": 
     1627       { 
     1628        "type": "Point", 
     1629        "coordinates": [-117.894515,33.683052] 
     1630       }, 
     1631   "properties":  
     1632       {"street": "BEAR 2", "color": "lime", "perpx": "0.737613", "perpy": "0.675223"} 
     1633},   
     1634{ 
     1635   "type": "Feature", 
     1636   "id": "73 N 27.72", 
     1637   "geometry": 
     1638       { 
     1639        "type": "Point", 
     1640        "coordinates": [-117.897754,33.686594] 
     1641       }, 
     1642   "properties":  
     1643       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
     1644},   
     1645{ 
     1646   "type": "Feature", 
     1647   "id": "73 S 25.25", 
     1648   "geometry": 
     1649       { 
     1650        "type": "Point", 
     1651        "coordinates": [-117.871215,33.659515] 
     1652       }, 
     1653   "properties":  
     1654       {"street": "ORCHID", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
     1655},   
     1656{ 
     1657   "type": "Feature", 
     1658   "id": "73 S 25.7", 
     1659   "geometry": 
     1660       { 
     1661        "type": "Point", 
     1662        "coordinates": [-117.876633,33.66324] 
     1663       }, 
     1664   "properties":  
     1665       {"street": "CAMPUS", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
     1666},   
     1667{ 
     1668   "type": "Feature", 
     1669   "id": "73 S 26.3", 
     1670   "geometry": 
     1671       { 
     1672        "type": "Point", 
     1673        "coordinates": [-117.88342,33.669908] 
     1674       }, 
     1675   "properties":  
     1676       {"street": "S OF 55", "color": "lime", "perpx": "-0.750726", "perpy": "-0.660614"} 
     1677},   
     1678{ 
     1679   "type": "Feature", 
     1680   "id": "73 S 26.7", 
     1681   "geometry": 
     1682       { 
     1683        "type": "Point", 
     1684        "coordinates": [-117.887584,33.67464] 
     1685       }, 
     1686   "properties":  
     1687       {"street": "N OF 55", "color": "lime", "perpx": "-0.742508", "perpy": "-0.669837"} 
     1688},   
     1689{ 
     1690   "type": "Feature", 
     1691   "id": "73 S 27.2", 
     1692   "geometry": 
     1693       { 
     1694        "type": "Point", 
     1695        "coordinates": [-117.892743,33.68058] 
     1696       }, 
     1697   "properties":  
     1698       {"street": "BEAR 1", "color": "lime", "perpx": "-0.749261", "perpy": "-0.662275"} 
     1699},   
     1700{ 
     1701   "type": "Feature", 
     1702   "id": "73 S 27.72", 
     1703   "geometry": 
     1704       { 
     1705        "type": "Point", 
     1706        "coordinates": [-117.898045,33.686456] 
     1707       }, 
     1708   "properties":  
     1709       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
    15771710},   
    15781711 
    15791712{ 
    15801713   "type": "Feature", 
    1581    "id": "73 N 25.25", 
    1582    "geometry": 
    1583        { 
    1584         "type": "Point", 
    1585         "coordinates": [-117.870921,33.659804] 
    1586        }, 
    1587    "properties":  
    1588        {"street": "ORCHID", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
    1589 },   
    1590 { 
    1591    "type": "Feature", 
    1592    "id": "73 N 25.7", 
    1593    "geometry": 
    1594        { 
    1595         "type": "Point", 
    1596         "coordinates": [-117.87634,33.663519] 
    1597        }, 
    1598    "properties":  
    1599        {"street": "CAMPUS", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
    1600 },   
    1601 { 
    1602    "type": "Feature", 
    1603    "id": "73 N 26.3", 
    1604    "geometry": 
    1605        { 
    1606         "type": "Point", 
    1607         "coordinates": [-117.883175,33.67012] 
    1608        }, 
    1609    "properties":  
    1610        {"street": "S OF 55", "color": "lime", "perpx": "0.756677", "perpy": "0.653789"} 
    1611 },   
    1612 { 
    1613    "type": "Feature", 
    1614    "id": "73 N 26.7", 
    1615    "geometry": 
    1616        { 
    1617         "type": "Point", 
    1618         "coordinates": [-117.887299,33.674893] 
    1619        }, 
    1620    "properties":  
    1621        {"street": "N OF 55", "color": "lime", "perpx": "0.76071", "perpy": "0.649092"} 
    1622 },   
    1623 { 
    1624    "type": "Feature", 
    1625    "id": "73 N 27.4", 
    1626    "geometry": 
    1627        { 
    1628         "type": "Point", 
    1629         "coordinates": [-117.894515,33.683052] 
    1630        }, 
    1631    "properties":  
    1632        {"street": "BEAR 2", "color": "lime", "perpx": "0.737613", "perpy": "0.675223"} 
    1633 },   
    1634 { 
    1635    "type": "Feature", 
    1636    "id": "73 N 27.72", 
    1637    "geometry": 
    1638        { 
    1639         "type": "Point", 
    1640         "coordinates": [-117.897754,33.686594] 
    1641        }, 
    1642    "properties":  
    1643        {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
    1644 },   
    1645 { 
    1646    "type": "Feature", 
    1647    "id": "73 S 25.25", 
    1648    "geometry": 
    1649        { 
    1650         "type": "Point", 
    1651         "coordinates": [-117.871215,33.659515] 
    1652        }, 
    1653    "properties":  
    1654        {"street": "ORCHID", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
    1655 },   
    1656 { 
    1657    "type": "Feature", 
    1658    "id": "73 S 25.7", 
    1659    "geometry": 
    1660        { 
    1661         "type": "Point", 
    1662         "coordinates": [-117.876633,33.66324] 
    1663        }, 
    1664    "properties":  
    1665        {"street": "CAMPUS", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
    1666 },   
    1667 { 
    1668    "type": "Feature", 
    1669    "id": "73 S 26.3", 
    1670    "geometry": 
    1671        { 
    1672         "type": "Point", 
    1673         "coordinates": [-117.88342,33.669908] 
    1674        }, 
    1675    "properties":  
    1676        {"street": "S OF 55", "color": "lime", "perpx": "-0.750726", "perpy": "-0.660614"} 
    1677 },   
    1678 { 
    1679    "type": "Feature", 
    1680    "id": "73 S 26.7", 
    1681    "geometry": 
    1682        { 
    1683         "type": "Point", 
    1684         "coordinates": [-117.887584,33.67464] 
    1685        }, 
    1686    "properties":  
    1687        {"street": "N OF 55", "color": "lime", "perpx": "-0.742508", "perpy": "-0.669837"} 
    1688 },   
    1689 { 
    1690    "type": "Feature", 
    1691    "id": "73 S 27.2", 
    1692    "geometry": 
    1693        { 
    1694         "type": "Point", 
    1695         "coordinates": [-117.892743,33.68058] 
    1696        }, 
    1697    "properties":  
    1698        {"street": "BEAR 1", "color": "lime", "perpx": "-0.749261", "perpy": "-0.662275"} 
    1699 },   
    1700 { 
    1701    "type": "Feature", 
    1702    "id": "73 S 27.72", 
    1703    "geometry": 
    1704        { 
    1705         "type": "Point", 
    1706         "coordinates": [-117.898045,33.686456] 
    1707        }, 
    1708    "properties":  
    1709        {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
     1714   "id": "133 N 9", 
     1715   "geometry": 
     1716       { 
     1717        "type": "Point", 
     1718        "coordinates": [-117.754967,33.661697] 
     1719       }, 
     1720   "properties":  
     1721       {"street": "BARRANCA1", "color": "lime", "perpx": "0.851313", "perpy": "-0.524659"} 
     1722},   
     1723{ 
     1724   "type": "Feature", 
     1725   "id": "133 N 9.1", 
     1726   "geometry": 
     1727       { 
     1728        "type": "Point", 
     1729        "coordinates": [-117.753976,33.663305] 
     1730       }, 
     1731   "properties":  
     1732       {"street": "BARRANCA2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1733},   
     1734{ 
     1735   "type": "Feature", 
     1736   "id": "133 N 9.37", 
     1737   "geometry": 
     1738       { 
     1739        "type": "Point", 
     1740        "coordinates": [-117.753044,33.667495] 
     1741       }, 
     1742   "properties":  
     1743       {"street": "S OF 5", "color": "lime", "perpx": "0.976143", "perpy": "-0.217128"} 
     1744},   
     1745{ 
     1746   "type": "Feature", 
     1747   "id": "133 N 9.77", 
     1748   "geometry": 
     1749       { 
     1750        "type": "Point", 
     1751        "coordinates": [-117.753243,33.672836] 
     1752       }, 
     1753   "properties":  
     1754       {"street": "N OF 5", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
     1755},   
     1756{ 
     1757   "type": "Feature", 
     1758   "id": "133 N 10.05", 
     1759   "geometry": 
     1760       { 
     1761        "type": "Point", 
     1762        "coordinates": [-117.752421,33.676181] 
     1763       }, 
     1764   "properties":  
     1765       {"street": "MARINE WAY", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
     1766},   
     1767{ 
     1768   "type": "Feature", 
     1769   "id": "133 N 10.5", 
     1770   "geometry": 
     1771       { 
     1772        "type": "Point", 
     1773        "coordinates": [-117.748819,33.680812] 
     1774       }, 
     1775   "properties":  
     1776       {"street": "N OF MARINE", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
     1777},   
     1778{ 
     1779   "type": "Feature", 
     1780   "id": "133 N 10.73", 
     1781   "geometry": 
     1782       { 
     1783        "type": "Point", 
     1784        "coordinates": [-117.746935,33.683166] 
     1785       }, 
     1786   "properties":  
     1787       {"street": "S OF PM 11", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
     1788},   
     1789{ 
     1790   "type": "Feature", 
     1791   "id": "133 S 9", 
     1792   "geometry": 
     1793       { 
     1794        "type": "Point", 
     1795        "coordinates": [-117.7553,33.66184] 
     1796       }, 
     1797   "properties":  
     1798       {"street": "BARRANCA2", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
     1799},   
     1800{ 
     1801   "type": "Feature", 
     1802   "id": "133 S 9.37", 
     1803   "geometry": 
     1804       { 
     1805        "type": "Point", 
     1806        "coordinates": [-117.753428,33.667665] 
     1807       }, 
     1808   "properties":  
     1809       {"street": "S OF 5", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
     1810},   
     1811{ 
     1812   "type": "Feature", 
     1813   "id": "133 S 9.77", 
     1814   "geometry": 
     1815       { 
     1816        "type": "Point", 
     1817        "coordinates": [-117.753623,33.673029] 
     1818       }, 
     1819   "properties":  
     1820       {"street": "N OF 5", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
     1821},   
     1822{ 
     1823   "type": "Feature", 
     1824   "id": "133 S 10.05", 
     1825   "geometry": 
     1826       { 
     1827        "type": "Point", 
     1828        "coordinates": [-117.752844,33.676396] 
     1829       }, 
     1830   "properties":  
     1831       {"street": "MARINE WAY", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
     1832},   
     1833{ 
     1834   "type": "Feature", 
     1835   "id": "133 S 10.5", 
     1836   "geometry": 
     1837       { 
     1838        "type": "Point", 
     1839        "coordinates": [-117.74924,33.68106] 
     1840       }, 
     1841   "properties":  
     1842       {"street": "N OF MARINE", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
     1843},   
     1844{ 
     1845   "type": "Feature", 
     1846   "id": "133 S 10.73", 
     1847   "geometry": 
     1848       { 
     1849        "type": "Point", 
     1850        "coordinates": [-117.747277,33.683386] 
     1851       }, 
     1852   "properties":  
     1853       {"street": "S OF PM 11", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
    17101854},   
    17111855 
    17121856{ 
    17131857   "type": "Feature", 
    1714    "id": "133 N 9", 
    1715    "geometry": 
    1716        { 
    1717         "type": "Point", 
    1718         "coordinates": [-117.754967,33.661697] 
    1719        }, 
    1720    "properties":  
    1721        {"street": "BARRANCA1", "color": "lime", "perpx": "0.851313", "perpy": "-0.524659"} 
    1722 },   
    1723 { 
    1724    "type": "Feature", 
    1725    "id": "133 N 9.1", 
    1726    "geometry": 
    1727        { 
    1728         "type": "Point", 
    1729         "coordinates": [-117.753976,33.663305] 
    1730        }, 
    1731    "properties":  
    1732        {"street": "BARRANCA2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1733 },   
    1734 { 
    1735    "type": "Feature", 
    1736    "id": "133 N 9.37", 
    1737    "geometry": 
    1738        { 
    1739         "type": "Point", 
    1740         "coordinates": [-117.753044,33.667495] 
    1741        }, 
    1742    "properties":  
    1743        {"street": "S OF 5", "color": "lime", "perpx": "0.976143", "perpy": "-0.217128"} 
    1744 },   
    1745 { 
    1746    "type": "Feature", 
    1747    "id": "133 N 9.77", 
    1748    "geometry": 
    1749        { 
    1750         "type": "Point", 
    1751         "coordinates": [-117.753243,33.672836] 
    1752        }, 
    1753    "properties":  
    1754        {"street": "N OF 5", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
    1755 },   
    1756 { 
    1757    "type": "Feature", 
    1758    "id": "133 N 10.05", 
    1759    "geometry": 
    1760        { 
    1761         "type": "Point", 
    1762         "coordinates": [-117.752421,33.676181] 
    1763        }, 
    1764    "properties":  
    1765        {"street": "MARINE WAY", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
    1766 },   
    1767 { 
    1768    "type": "Feature", 
    1769    "id": "133 N 10.5", 
    1770    "geometry": 
    1771        { 
    1772         "type": "Point", 
    1773         "coordinates": [-117.748819,33.680812] 
    1774        }, 
    1775    "properties":  
    1776        {"street": "N OF MARINE", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
    1777 },   
    1778 { 
    1779    "type": "Feature", 
    1780    "id": "133 N 10.73", 
    1781    "geometry": 
    1782        { 
    1783         "type": "Point", 
    1784         "coordinates": [-117.746935,33.683166] 
    1785        }, 
    1786    "properties":  
    1787        {"street": "S OF PM 11", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
    1788 },   
    1789 { 
    1790    "type": "Feature", 
    1791    "id": "133 S 9", 
    1792    "geometry": 
    1793        { 
    1794         "type": "Point", 
    1795         "coordinates": [-117.7553,33.66184] 
    1796        }, 
    1797    "properties":  
    1798        {"street": "BARRANCA2", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
    1799 },   
    1800 { 
    1801    "type": "Feature", 
    1802    "id": "133 S 9.37", 
    1803    "geometry": 
    1804        { 
    1805         "type": "Point", 
    1806         "coordinates": [-117.753428,33.667665] 
    1807        }, 
    1808    "properties":  
    1809        {"street": "S OF 5", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
    1810 },   
    1811 { 
    1812    "type": "Feature", 
    1813    "id": "133 S 9.77", 
    1814    "geometry": 
    1815        { 
    1816         "type": "Point", 
    1817         "coordinates": [-117.753623,33.673029] 
    1818        }, 
    1819    "properties":  
    1820        {"street": "N OF 5", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
    1821 },   
    1822 { 
    1823    "type": "Feature", 
    1824    "id": "133 S 10.05", 
    1825    "geometry": 
    1826        { 
    1827         "type": "Point", 
    1828         "coordinates": [-117.752844,33.676396] 
    1829        }, 
    1830    "properties":  
    1831        {"street": "MARINE WAY", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
    1832 },   
    1833 { 
    1834    "type": "Feature", 
    1835    "id": "133 S 10.5", 
    1836    "geometry": 
    1837        { 
    1838         "type": "Point", 
    1839         "coordinates": [-117.74924,33.68106] 
    1840        }, 
    1841    "properties":  
    1842        {"street": "N OF MARINE", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
    1843 },   
    1844 { 
    1845    "type": "Feature", 
    1846    "id": "133 S 10.73", 
    1847    "geometry": 
    1848        { 
    1849         "type": "Point", 
    1850         "coordinates": [-117.747277,33.683386] 
    1851        }, 
    1852    "properties":  
    1853        {"street": "S OF PM 11", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
     1858   "id": "261 N 0.04", 
     1859   "geometry": 
     1860       { 
     1861        "type": "Point", 
     1862        "coordinates": [-117.800349,33.712252] 
     1863       }, 
     1864   "properties":  
     1865       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
     1866},   
     1867{ 
     1868   "type": "Feature", 
     1869   "id": "261 N 0.31", 
     1870   "geometry": 
     1871       { 
     1872        "type": "Point", 
     1873        "coordinates": [-117.797696,33.715376] 
     1874       }, 
     1875   "properties":  
     1876       {"street": "WALNUT 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1877},   
     1878{ 
     1879   "type": "Feature", 
     1880   "id": "261 N 0.5", 
     1881   "geometry": 
     1882       { 
     1883        "type": "Point", 
     1884        "coordinates": [-117.795181,33.717083] 
     1885       }, 
     1886   "properties":  
     1887       {"street": "S OF 5", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
     1888},   
     1889{ 
     1890   "type": "Feature", 
     1891   "id": "261 N 0.9", 
     1892   "geometry": 
     1893       { 
     1894        "type": "Point", 
     1895        "coordinates": [-117.789435,33.720342] 
     1896       }, 
     1897   "properties":  
     1898       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
     1899},   
     1900{ 
     1901   "type": "Feature", 
     1902   "id": "261 N 1.35", 
     1903   "geometry": 
     1904       { 
     1905        "type": "Point", 
     1906        "coordinates": [-117.782735,33.72367] 
     1907       }, 
     1908   "properties":  
     1909       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"} 
     1910},   
     1911{ 
     1912   "type": "Feature", 
     1913   "id": "261 S 0.04", 
     1914   "geometry": 
     1915       { 
     1916        "type": "Point", 
     1917        "coordinates": [-117.800638,33.7124] 
     1918       }, 
     1919   "properties":  
     1920       {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
     1921},   
     1922{ 
     1923   "type": "Feature", 
     1924   "id": "261 S 0.5", 
     1925   "geometry": 
     1926       { 
     1927        "type": "Point", 
     1928        "coordinates": [-117.795434,33.717315] 
     1929       }, 
     1930   "properties":  
     1931       {"street": "S OF 5", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
     1932},   
     1933{ 
     1934   "type": "Feature", 
     1935   "id": "261 S 0.9", 
     1936   "geometry": 
     1937       { 
     1938        "type": "Point", 
     1939        "coordinates": [-117.789693,33.720604] 
     1940       }, 
     1941   "properties":  
     1942       {"street": "EL CAMINO REAL", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
     1943},   
     1944{ 
     1945   "type": "Feature", 
     1946   "id": "261 S 1.35", 
     1947   "geometry": 
     1948       { 
     1949        "type": "Point", 
     1950        "coordinates": [-117.782999,33.723902] 
     1951       }, 
     1952   "properties":  
     1953       {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"} 
    18541954},   
    18551955 
    18561956{ 
    18571957   "type": "Feature", 
    1858    "id": "261 N 0.04", 
    1859    "geometry": 
    1860        { 
    1861         "type": "Point", 
    1862         "coordinates": [-117.800349,33.712252] 
    1863        }, 
    1864    "properties":  
    1865        {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
    1866 },   
    1867 { 
    1868    "type": "Feature", 
    1869    "id": "261 N 0.31", 
    1870    "geometry": 
    1871        { 
    1872         "type": "Point", 
    1873         "coordinates": [-117.797696,33.715376] 
    1874        }, 
    1875    "properties":  
    1876        {"street": "WALNUT 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1877 },   
    1878 { 
    1879    "type": "Feature", 
    1880    "id": "261 N 0.5", 
    1881    "geometry": 
    1882        { 
    1883         "type": "Point", 
    1884         "coordinates": [-117.795181,33.717083] 
    1885        }, 
    1886    "properties":  
    1887        {"street": "S OF 5", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
    1888 },   
    1889 { 
    1890    "type": "Feature", 
    1891    "id": "261 N 0.9", 
    1892    "geometry": 
    1893        { 
    1894         "type": "Point", 
    1895         "coordinates": [-117.789435,33.720342] 
    1896        }, 
    1897    "properties":  
    1898        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
    1899 },   
    1900 { 
    1901    "type": "Feature", 
    1902    "id": "261 N 1.35", 
    1903    "geometry": 
    1904        { 
    1905         "type": "Point", 
    1906         "coordinates": [-117.782735,33.72367] 
    1907        }, 
    1908    "properties":  
    1909        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"} 
    1910 },   
    1911 { 
    1912    "type": "Feature", 
    1913    "id": "261 S 0.04", 
    1914    "geometry": 
    1915        { 
    1916         "type": "Point", 
    1917         "coordinates": [-117.800638,33.7124] 
    1918        }, 
    1919    "properties":  
    1920        {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
    1921 },   
    1922 { 
    1923    "type": "Feature", 
    1924    "id": "261 S 0.5", 
    1925    "geometry": 
    1926        { 
    1927         "type": "Point", 
    1928         "coordinates": [-117.795434,33.717315] 
    1929        }, 
    1930    "properties":  
    1931        {"street": "S OF 5", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
    1932 },   
    1933 { 
    1934    "type": "Feature", 
    1935    "id": "261 S 0.9", 
    1936    "geometry": 
    1937        { 
    1938         "type": "Point", 
    1939         "coordinates": [-117.789693,33.720604] 
    1940        }, 
    1941    "properties":  
    1942        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
    1943 },   
    1944 { 
    1945    "type": "Feature", 
    1946    "id": "261 S 1.35", 
    1947    "geometry": 
    1948        { 
    1949         "type": "Point", 
    1950         "coordinates": [-117.782999,33.723902] 
    1951        }, 
    1952    "properties":  
    1953        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"} 
    1954 },   
    1955  
    1956 { 
    1957    "type": "Feature", 
    19581958   "id": "405 N 0.93", 
    19591959   "geometry": 
     
    20402040       }, 
    20412041   "properties":  
    2042        {"street": "JEFFREY 1", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
     2042       {"street": "JEFFREY 1", "color": "yellow", "perpx": "0.142134", "perpy": "0.989847"} 
    20432043},   
    20442044{ 
     
    20512051       }, 
    20522052   "properties":  
    2053        {"street": "JEFFREY 2", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
     2053       {"street": "JEFFREY 2", "color": "yellow", "perpx": "0.142134", "perpy": "0.989847"} 
    20542054},   
    20552055{ 
     
    20622062       }, 
    20632063   "properties":  
    2064        {"street": "YALE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
     2064       {"street": "YALE", "color": "red", "perpx": "0.267568", "perpy": "0.963539"} 
    20652065},   
    20662066{ 
     
    20732073       }, 
    20742074   "properties":  
    2075        {"street": "SPRUCE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
     2075       {"street": "SPRUCE", "color": "red", "perpx": "0.267568", "perpy": "0.963539"} 
    20762076},   
    20772077{ 
     
    20842084       }, 
    20852085   "properties":  
    2086        {"street": "CULVER 1", "color": "lime", "perpx": "0.332642", "perpy": "0.943053"} 
     2086       {"street": "CULVER 1", "color": "red", "perpx": "0.332642", "perpy": "0.943053"} 
    20872087},   
    20882088{ 
     
    20952095       }, 
    20962096   "properties":  
    2097        {"street": "CULVER 2", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
     2097       {"street": "CULVER 2", "color": "red", "perpx": "0.320278", "perpy": "0.947323"} 
    20982098},   
    20992099{ 
     
    21062106       }, 
    21072107   "properties":  
    2108        {"street": "HARVARD", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
     2108       {"street": "HARVARD", "color": "red", "perpx": "0.320278", "perpy": "0.947323"} 
    21092109},   
    21102110{ 
     
    21172117       }, 
    21182118   "properties":  
    2119        {"street": "JAMBOREE1", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
     2119       {"street": "JAMBOREE1", "color": "red", "perpx": "0.400805", "perpy": "0.916164"} 
    21202120},   
    21212121{ 
     
    21282128       }, 
    21292129   "properties":  
    2130        {"street": "JAMBOREE2", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
     2130       {"street": "JAMBOREE2", "color": "red", "perpx": "0.400805", "perpy": "0.916164"} 
    21312131},   
    21322132{ 
     
    21392139       }, 
    21402140   "properties":  
    2141        {"street": "MACARTHUR 1", "color": "lime", "perpx": "0.408917", "perpy": "0.912572"} 
     2141       {"street": "MACARTHUR 1", "color": "red", "perpx": "0.408917", "perpy": "0.912572"} 
    21422142},   
    21432143{ 
     
    21502150       }, 
    21512151   "properties":  
    2152        {"street": "AIRPORT", "color": "lime", "perpx": "0.321527", "perpy": "0.9469"} 
     2152       {"street": "AIRPORT", "color": "red", "perpx": "0.321527", "perpy": "0.9469"} 
    21532153},   
    21542154{ 
     
    21612161       }, 
    21622162   "properties":  
    2163        {"street": "RED HILL", "color": "lime", "perpx": "0.126754", "perpy": "0.991934"} 
     2163       {"street": "RED HILL", "color": "red", "perpx": "0.126754", "perpy": "0.991934"} 
    21642164},   
    21652165{ 
  • trunk/webapps/sim_elapsedtime.json

    r361 r364  
    1 {"elapsedtime":"173"} 
     1{"elapsedtime":"1021"} 
Note: See TracChangeset for help on using the changeset viewer.