Changeset 415 in tmcsimulator


Ignore:
Timestamp:
06/18/2019 10:44:53 AM (7 years ago)
Author:
jdalbey
Message:

einotebook fix to #131

Location:
trunk/webapps
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/webapps/common/js/revision_number.dat

    r413 r415  
    11 
    2     var revisionNumber = "408"; 
     2    var revisionNumber = "414"; 
    33     
  • trunk/webapps/cptms/index.html

    r404 r415  
    163163    var cctv_infowindow; // We create just a single instance of info window. 
    164164 
     165    // Use larger VDS icons if we're being displayed on the video wall 
     166    // at the front of the classroom.  Launch page with any non-blank request parameter 
     167    // to trigger larger icons. 
     168    function initVDSicons() 
     169    { 
     170        var param_string = ''; 
     171 
     172        // get url parameters from the window 
     173        url = window.location.search; // e.g. ?num1=43&num2=23 
     174        // split into separate parameters 
     175        var parts = url.substring(1).split('&'); 
     176        // Extract the first parameter 
     177        param_string = parts[0]; 
     178        // If we have a non-blank parameter 
     179        if(param_string != undefined && param_string.trim() != "") 
     180        { 
     181            // Use large size circle icons 
     182            iconVDSgreen = "images/circle_green_lg.png"; 
     183            iconVDSyellow = "images/circle_yellow.png" 
     184            iconVDSred = "images/circle_red.png" 
     185            iconVDSwhite = "images/circle_white.png" 
     186            //var parts = param_string.split('&'); 
     187        }  
     188    } 
    165189 
    166190    // Initialize the view/hide buttons  
     
    171195        initCMSbutton(); 
    172196        initVDSbutton(); 
     197        initVDSicons(); 
    173198    } 
    174199 
  • trunk/webapps/dynamicdata/highway_status.json

    r413 r415  
    44{ 
    55   "type": "Feature", 
    6    "id": "5 N 0.65", 
    7    "geometry": 
    8        { 
    9         "type": "Point", 
    10         "coordinates": [-117.597992,33.40516] 
    11        }, 
    12    "properties":  
    13        {"street": "S. LUIS REY", "color": "lime", "perpx": "0", "perpy": "0"} 
    14 },   
    15 { 
    16    "type": "Feature", 
    17    "id": "5 N 1.26", 
    18    "geometry": 
    19        { 
    20         "type": "Point", 
    21         "coordinates": [-117.6021,33.413319] 
    22        }, 
    23    "properties":  
    24        {"street": "MAGDALENA", "color": "lime", "perpx": "0.891749", "perpy": "0.45253"} 
    25 },   
    26 { 
    27    "type": "Feature", 
    28    "id": "5 N 1.83", 
    29    "geometry": 
    30        { 
    31         "type": "Point", 
    32         "coordinates": [-117.606498,33.420685] 
    33        }, 
    34    "properties":  
    35        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0", "perpy": "0"} 
    36 },   
    37 { 
    38    "type": "Feature", 
    39    "id": "5 N 2.47", 
    40    "geometry": 
    41        { 
    42         "type": "Point", 
    43         "coordinates": [-117.611817,33.428811] 
    44        }, 
    45    "properties":  
    46        {"street": "PRESIDIO", "color": "lime", "perpx": "0", "perpy": "0"} 
    47 },   
    48 { 
    49    "type": "Feature", 
    50    "id": "5 N 2.8", 
    51    "geometry": 
    52        { 
    53         "type": "Point", 
    54         "coordinates": [-117.615519,33.432425] 
    55        }, 
    56    "properties":  
    57        {"street": "PALIZADA", "color": "lime", "perpx": "0.698551", "perpy": "0.71556"} 
    58 },   
    59 { 
    60    "type": "Feature", 
    61    "id": "5 N 3.23", 
    62    "geometry": 
    63        { 
    64         "type": "Point", 
    65         "coordinates": [-117.619773,33.43749] 
    66        }, 
    67    "properties":  
    68        {"street": "PICO 1", "color": "lime", "perpx": "0.498751", "perpy": "0.866745"} 
    69 },   
    70 { 
    71    "type": "Feature", 
    72    "id": "5 N 3.56", 
    73    "geometry": 
    74        { 
    75         "type": "Point", 
    76         "coordinates": [-117.624486,33.440202] 
    77        }, 
    78    "properties":  
    79        {"street": "PICO 2", "color": "lime", "perpx": "0.498751", "perpy": "0.866745"} 
    80 },   
    81 { 
    82    "type": "Feature", 
    83    "id": "5 N 5.4", 
    84    "geometry": 
    85        { 
    86         "type": "Point", 
    87         "coordinates": [-117.650183,33.455773] 
    88        }, 
    89    "properties":  
    90        {"street": "N OF VAQUERO", "color": "lime", "perpx": "0.393632", "perpy": "0.919268"} 
    91 },   
    92 { 
    93    "type": "Feature", 
    94    "id": "5 N 5.73", 
    95    "geometry": 
    96        { 
    97         "type": "Point", 
    98         "coordinates": [-117.655008,33.458342] 
    99        }, 
    100    "properties":  
    101        {"street": "ESTRELLA1", "color": "lime", "perpx": "0", "perpy": "0"} 
    102 },   
    103 { 
    104    "type": "Feature", 
    105    "id": "5 N 5.89", 
    106    "geometry": 
    107        { 
    108         "type": "Point", 
    109         "coordinates": [-117.657305,33.459637] 
    110        }, 
    111    "properties":  
    112        {"street": "ESTRELLA2", "color": "lime", "perpx": "0", "perpy": "0"} 
    113 },   
    114 { 
    115    "type": "Feature", 
    116    "id": "5 N 6.47", 
    117    "geometry": 
    118        { 
    119         "type": "Point", 
    120         "coordinates": [-117.665509,33.464404] 
    121        }, 
    122    "properties":  
    123        {"street": "SACRAMENTO", "color": "lime", "perpx": "0.523797", "perpy": "0.851843"} 
    124 },   
    125 { 
    126    "type": "Feature", 
    127    "id": "5 N 6.91", 
    128    "geometry": 
    129        { 
    130         "type": "Point", 
    131         "coordinates": [-117.671714,33.468032] 
    132        }, 
    133    "properties":  
    134        {"street": "LAS RAMBLAS", "color": "lime", "perpx": "0", "perpy": "0"} 
    135 },   
    136 { 
    137    "type": "Feature", 
    138    "id": "5 N 7.46", 
    139    "geometry": 
    140        { 
    141         "type": "Point", 
    142         "coordinates": [-117.674271,33.475073] 
    143        }, 
    144    "properties":  
    145        {"street": "CAPISTRANO", "color": "lime", "perpx": "0.816519", "perpy": "-0.577318"} 
    146 },   
    147 { 
    148    "type": "Feature", 
    1496   "id": "5 N 7.99", 
    1507   "geometry": 
     
    741598{ 
    742599   "type": "Feature", 
    743    "id": "5 N 33.2", 
    744    "geometry": 
    745        { 
    746         "type": "Point", 
    747         "coordinates": [-117.86784,33.76901] 
    748        }, 
    749    "properties":  
    750        {"street": "MAIN 2", "color": "lime", "perpx": "0.824993", "perpy": "0.565143"} 
    751 },   
    752 { 
    753    "type": "Feature", 
    754    "id": "5 N 33.8", 
    755    "geometry": 
    756        { 
    757         "type": "Point", 
    758         "coordinates": [-117.873886,33.776455] 
    759        }, 
    760    "properties":  
    761        {"street": "S OF 22", "color": "lime", "perpx": "0.783267", "perpy": "0.621685"} 
    762 },   
    763 { 
    764    "type": "Feature", 
    765    "id": "5 N 34.2", 
    766    "geometry": 
    767        { 
    768         "type": "Point", 
    769         "coordinates": [-117.878226,33.781151] 
    770        }, 
    771    "properties":  
    772        {"street": "LA VETA", "color": "lime", "perpx": "0.58161", "perpy": "0.813468"} 
    773 },   
    774 { 
    775    "type": "Feature", 
    776    "id": "5 N 34.3", 
    777    "geometry": 
    778        { 
    779         "type": "Point", 
    780         "coordinates": [-117.879468,33.782039] 
    781        }, 
    782    "properties":  
    783        {"street": "N OF 57", "color": "lime", "perpx": "0.544875", "perpy": "0.838517"} 
    784 },   
    785 { 
    786    "type": "Feature", 
    787    "id": "5 N 35", 
    788    "geometry": 
    789        { 
    790         "type": "Point", 
    791         "coordinates": [-117.887536,33.789689] 
    792        }, 
    793    "properties":  
    794        {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    795 },   
    796 { 
    797    "type": "Feature", 
    798    "id": "5 N 35.1", 
    799    "geometry": 
    800        { 
    801         "type": "Point", 
    802         "coordinates": [-117.888724,33.790771] 
    803        }, 
    804    "properties":  
    805        {"street": "STATE COLLEGE", "color": "lime", "perpx": "0.673354", "perpy": "0.73932"} 
    806 },   
    807 { 
    808    "type": "Feature", 
    809    "id": "5 N 35.6", 
    810    "geometry": 
    811        { 
    812         "type": "Point", 
    813         "coordinates": [-117.893833,33.795663] 
    814        }, 
    815    "properties":  
    816        {"street": "GENE AUTRY", "color": "lime", "perpx": "0.700471", "perpy": "0.713681"} 
    817 },   
    818 { 
    819    "type": "Feature", 
    820    "id": "5 N 36.4", 
    821    "geometry": 
    822        { 
    823         "type": "Point", 
    824         "coordinates": [-117.902246,33.803764] 
    825        }, 
    826    "properties":  
    827        {"street": "ORANGEWOOD 2", "color": "lime", "perpx": "0.641147", "perpy": "0.767418"} 
    828 },   
    829 { 
    830    "type": "Feature", 
    831    "id": "5 N 36.48", 
    832    "geometry": 
    833        { 
    834         "type": "Point", 
    835         "coordinates": [-117.903814,33.805074] 
    836        }, 
    837    "properties":  
    838        {"street": "KATELLA", "color": "lime", "perpx": "0.614618", "perpy": "0.788825"} 
    839 },   
    840 { 
    841    "type": "Feature", 
    842    "id": "5 N 36.6", 
    843    "geometry": 
    844        { 
    845         "type": "Point", 
    846         "coordinates": [-117.905829,33.806644] 
    847        }, 
    848    "properties":  
    849        {"street": "ANAHEIM 2", "color": "lime", "perpx": "0.614618", "perpy": "0.788825"} 
    850 },   
    851 { 
    852    "type": "Feature", 
    853    "id": "5 N 37", 
    854    "geometry": 
    855        { 
    856         "type": "Point", 
    857         "coordinates": [-117.910643,33.811147] 
    858        }, 
    859    "properties":  
    860        {"street": "S OF HARBOR", "color": "lime", "perpx": "0.690175", "perpy": "0.723642"} 
    861 },   
    862 { 
    863    "type": "Feature", 
    864    "id": "5 N 37.38", 
    865    "geometry": 
    866        { 
    867         "type": "Point", 
    868         "coordinates": [-117.915054,33.815354] 
    869        }, 
    870    "properties":  
    871        {"street": "HARBOR", "color": "lime", "perpx": "0.700541", "perpy": "0.713613"} 
    872 },   
    873 { 
    874    "type": "Feature", 
    875    "id": "5 N 37.7", 
    876    "geometry": 
    877        { 
    878         "type": "Point", 
    879         "coordinates": [-117.918657,33.818891] 
    880        }, 
    881    "properties":  
    882        {"street": "BALL", "color": "lime", "perpx": "0.696671", "perpy": "0.717391"} 
    883 },   
    884 { 
    885    "type": "Feature", 
    886    "id": "5 N 38.1", 
    887    "geometry": 
    888        { 
    889         "type": "Point", 
    890         "coordinates": [-117.923123,33.823323] 
    891        }, 
    892    "properties":  
    893        {"street": "SOUTH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    894 },   
    895 { 
    896    "type": "Feature", 
    897    "id": "5 N 38.9", 
    898    "geometry": 
    899        { 
    900         "type": "Point", 
    901         "coordinates": [-117.931513,33.832016] 
    902        }, 
    903    "properties":  
    904        {"street": "LINCOLN", "color": "lime", "perpx": "0", "perpy": "0"} 
    905 },   
    906 { 
    907    "type": "Feature", 
    908    "id": "5 N 39.3", 
    909    "geometry": 
    910        { 
    911         "type": "Point", 
    912         "coordinates": [-117.938078,33.834815] 
    913        }, 
    914    "properties":  
    915        {"street": "EUCLID 1", "color": "lime", "perpx": "0.36034", "perpy": "0.932821"} 
    916 },   
    917 { 
    918    "type": "Feature", 
    919    "id": "5 N 39.6", 
    920    "geometry": 
    921        { 
    922         "type": "Point", 
    923         "coordinates": [-117.943038,33.836731] 
    924        }, 
    925    "properties":  
    926        {"street": "EUCLID 2", "color": "lime", "perpx": "0.478822", "perpy": "0.877912"} 
    927 },   
    928 { 
    929    "type": "Feature", 
    930    "id": "5 N 40.04", 
    931    "geometry": 
    932        { 
    933         "type": "Point", 
    934         "coordinates": [-117.949259,33.840124] 
    935        }, 
    936    "properties":  
    937        {"street": "CRESCENT", "color": "lime", "perpx": "0.478822", "perpy": "0.877912"} 
    938 },   
    939 { 
    940    "type": "Feature", 
    941    "id": "5 N 40.5", 
    942    "geometry": 
    943        { 
    944         "type": "Point", 
    945         "coordinates": [-117.955716,33.843721] 
    946        }, 
    947    "properties":  
    948        {"street": "BROOKHURST 1", "color": "lime", "perpx": "0.541489", "perpy": "0.840708"} 
    949 },   
    950 { 
    951    "type": "Feature", 
    952    "id": "5 N 40.7", 
    953    "geometry": 
    954        { 
    955         "type": "Point", 
    956         "coordinates": [-117.958388,33.845442] 
    957        }, 
    958    "properties":  
    959        {"street": "BROOKHURST 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    960 },   
    961 { 
    962    "type": "Feature", 
    963    "id": "5 N 40.98", 
    964    "geometry": 
    965        { 
    966         "type": "Point", 
    967         "coordinates": [-117.962444,33.847549] 
    968        }, 
    969    "properties":  
    970        {"street": "LA PALMA", "color": "lime", "perpx": "0.442245", "perpy": "0.896895"} 
    971 },   
    972 { 
    973    "type": "Feature", 
    974    "id": "5 N 43.01", 
    975    "geometry": 
    976        { 
    977         "type": "Point", 
    978         "coordinates": [-117.991902,33.863248] 
    979        }, 
    980    "properties":  
    981        {"street": "STANTON", "color": "lime", "perpx": "0.437215", "perpy": "0.899357"} 
    982 },   
    983 { 
    984    "type": "Feature", 
    985    "id": "5 S 0.64", 
    986    "geometry": 
    987        { 
    988         "type": "Point", 
    989         "coordinates": [-117.598167,33.404943] 
    990        }, 
    991    "properties":  
    992        {"street": "S LUIS REY", "color": "lime", "perpx": "-0.892883", "perpy": "-0.450288"} 
    993 },   
    994 { 
    995    "type": "Feature", 
    996    "id": "5 S 0.9", 
    997    "geometry": 
    998        { 
    999         "type": "Point", 
    1000         "coordinates": [-117.599923,33.408425] 
    1001        }, 
    1002    "properties":  
    1003        {"street": "CALAFIA", "color": "lime", "perpx": "0", "perpy": "0"} 
    1004 },   
    1005 { 
    1006    "type": "Feature", 
    1007    "id": "5 S 1.26", 
    1008    "geometry": 
    1009        { 
    1010         "type": "Point", 
    1011         "coordinates": [-117.602338,33.41325] 
    1012        }, 
    1013    "properties":  
    1014        {"street": "MAGDALENA", "color": "lime", "perpx": "-0.9013", "perpy": "-0.433194"} 
    1015 },   
    1016 { 
    1017    "type": "Feature", 
    1018    "id": "5 S 1.49", 
    1019    "geometry": 
    1020        { 
    1021         "type": "Point", 
    1022         "coordinates": [-117.603827,33.416348] 
    1023        }, 
    1024    "properties":  
    1025        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0", "perpy": "0"} 
    1026 },   
    1027 { 
    1028    "type": "Feature", 
    1029    "id": "5 S 2.14", 
    1030    "geometry": 
    1031        { 
    1032         "type": "Point", 
    1033         "coordinates": [-117.609039,33.424652] 
    1034        }, 
    1035    "properties":  
    1036        {"street": "PRESIDIO", "color": "lime", "perpx": "0", "perpy": "0"} 
    1037 },   
    1038 { 
    1039    "type": "Feature", 
    1040    "id": "5 S 2.8", 
    1041    "geometry": 
    1042        { 
    1043         "type": "Point", 
    1044         "coordinates": [-117.615724,33.432273] 
    1045        }, 
    1046    "properties":  
    1047        {"street": "PALIZADA", "color": "lime", "perpx": "-0.768234", "perpy": "-0.640169"} 
    1048 },   
    1049 { 
    1050    "type": "Feature", 
    1051    "id": "5 S 3.23", 
    1052    "geometry": 
    1053        { 
    1054         "type": "Point", 
    1055         "coordinates": [-117.619943,33.437336] 
    1056        }, 
    1057    "properties":  
    1058        {"street": "PICO 1", "color": "lime", "perpx": "-0.498994", "perpy": "-0.866606"} 
    1059 },   
    1060 { 
    1061    "type": "Feature", 
    1062    "id": "5 S 3.56", 
    1063    "geometry": 
    1064        { 
    1065         "type": "Point", 
    1066         "coordinates": [-117.624646,33.440044] 
    1067        }, 
    1068    "properties":  
    1069        {"street": "PICO 2", "color": "lime", "perpx": "-0.605568", "perpy": "-0.795794"} 
    1070 },   
    1071 { 
    1072    "type": "Feature", 
    1073    "id": "5 S 5.4", 
    1074    "geometry": 
    1075        { 
    1076         "type": "Point", 
    1077         "coordinates": [-117.650318,33.455612] 
    1078        }, 
    1079    "properties":  
    1080        {"street": "N OF VAQUERO", "color": "lime", "perpx": "-0.443289", "perpy": "-0.896379"} 
    1081 },   
    1082 { 
    1083    "type": "Feature", 
    1084    "id": "5 S 5.59", 
    1085    "geometry": 
    1086        { 
    1087         "type": "Point", 
    1088         "coordinates": [-117.653153,33.457014] 
    1089        }, 
    1090    "properties":  
    1091        {"street": "ESTRELLA", "color": "lime", "perpx": "0", "perpy": "0"} 
    1092 },   
    1093 { 
    1094    "type": "Feature", 
    1095    "id": "5 S 6.47", 
    1096    "geometry": 
    1097        { 
    1098         "type": "Point", 
    1099         "coordinates": [-117.665631,33.464281] 
    1100        }, 
    1101    "properties":  
    1102        {"street": "SACRAMENTO", "color": "lime", "perpx": "-0.56275", "perpy": "-0.826627"} 
    1103 },   
    1104 { 
    1105    "type": "Feature", 
    1106    "id": "5 S 6.6", 
    1107    "geometry": 
    1108        { 
    1109         "type": "Point", 
    1110         "coordinates": [-117.667379,33.465471] 
    1111        }, 
    1112    "properties":  
    1113        {"street": "RTE 1 SB", "color": "lime", "perpx": "0", "perpy": "0"} 
    1114 },   
    1115 { 
    1116    "type": "Feature", 
    1117    "id": "5 S 7.46", 
    1118    "geometry": 
    1119        { 
    1120         "type": "Point", 
    1121         "coordinates": [-117.674584,33.475102] 
    1122        }, 
    1123    "properties":  
    1124        {"street": "CAPISTRANO", "color": "lime", "perpx": "-0.815879", "perpy": "0.578222"} 
    1125 },   
    1126 { 
    1127    "type": "Feature", 
    1128600   "id": "5 S 7.99", 
    1129601   "geometry": 
     
    17511223       {"street": "S OF 22", "color": "lime", "perpx": "-0.780234", "perpy": "-0.625487"} 
    17521224},   
    1753 { 
    1754    "type": "Feature", 
    1755    "id": "5 S 34.1", 
    1756    "geometry": 
    1757        { 
    1758         "type": "Point", 
    1759         "coordinates": [-117.87776,33.779824] 
    1760        }, 
    1761    "properties":  
    1762        {"street": "LA VETA", "color": "lime", "perpx": "0", "perpy": "0"} 
    1763 },   
    1764 { 
    1765    "type": "Feature", 
    1766    "id": "5 S 34.3", 
    1767    "geometry": 
    1768        { 
    1769         "type": "Point", 
    1770         "coordinates": [-117.880014,33.781682] 
    1771        }, 
    1772    "properties":  
    1773        {"street": "N OF 57", "color": "lime", "perpx": "-0.575376", "perpy": "-0.817889"} 
    1774 },   
    1775 { 
    1776    "type": "Feature", 
    1777    "id": "5 S 34.6", 
    1778    "geometry": 
    1779        { 
    1780         "type": "Point", 
    1781         "coordinates": [-117.883653,33.784761] 
    1782        }, 
    1783    "properties":  
    1784        {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.675711", "perpy": "-0.737167"} 
    1785 },   
    1786 { 
    1787    "type": "Feature", 
    1788    "id": "5 S 35.2", 
    1789    "geometry": 
    1790        { 
    1791         "type": "Point", 
    1792         "coordinates": [-117.890222,33.791651] 
    1793        }, 
    1794    "properties":  
    1795        {"street": "STATE COLLEGE", "color": "lime", "perpx": "-0.670989", "perpy": "-0.741468"} 
    1796 },   
    1797 { 
    1798    "type": "Feature", 
    1799    "id": "5 S 35.4", 
    1800    "geometry": 
    1801        { 
    1802         "type": "Point", 
    1803         "coordinates": [-117.892284,33.793517] 
    1804        }, 
    1805    "properties":  
    1806        {"street": "ORANGEWOOD 1", "color": "lime", "perpx": "-0.668203", "perpy": "-0.743979"} 
    1807 },   
    1808 { 
    1809    "type": "Feature", 
    1810    "id": "5 S 35.6", 
    1811    "geometry": 
    1812        { 
    1813         "type": "Point", 
    1814         "coordinates": [-117.894336,33.79536] 
    1815        }, 
    1816    "properties":  
    1817        {"street": "GENE AUTRY", "color": "lime", "perpx": "-0.668203", "perpy": "-0.743979"} 
    1818 },   
    1819 { 
    1820    "type": "Feature", 
    1821    "id": "5 S 36.31", 
    1822    "geometry": 
    1823        { 
    1824         "type": "Point", 
    1825         "coordinates": [-117.901359,33.802101] 
    1826        }, 
    1827    "properties":  
    1828        {"street": "KATELLA", "color": "lime", "perpx": "0", "perpy": "0"} 
    1829 },   
    1830 { 
    1831    "type": "Feature", 
    1832    "id": "5 S 36.48", 
    1833    "geometry": 
    1834        { 
    1835         "type": "Point", 
    1836         "coordinates": [-117.904254,33.804788] 
    1837        }, 
    1838    "properties":  
    1839        {"street": "ANAHEIM 1", "color": "lime", "perpx": "-0.654355", "perpy": "-0.756187"} 
    1840 },   
    1841 { 
    1842    "type": "Feature", 
    1843    "id": "5 S 36.6", 
    1844    "geometry": 
    1845        { 
    1846         "type": "Point", 
    1847         "coordinates": [-117.906207,33.806478] 
    1848        }, 
    1849    "properties":  
    1850        {"street": "ANAHEIM 2", "color": "lime", "perpx": "-0.688863", "perpy": "-0.724891"} 
    1851 },   
    1852 { 
    1853    "type": "Feature", 
    1854    "id": "5 S 37", 
    1855    "geometry": 
    1856        { 
    1857         "type": "Point", 
    1858         "coordinates": [-117.910895,33.810933] 
    1859        }, 
    1860    "properties":  
    1861        {"street": "S OF HARBOR", "color": "lime", "perpx": "-0.688863", "perpy": "-0.724891"} 
    1862 },   
    1863 { 
    1864    "type": "Feature", 
    1865    "id": "5 S 37.48", 
    1866    "geometry": 
    1867        { 
    1868         "type": "Point", 
    1869         "coordinates": [-117.916397,33.816263] 
    1870        }, 
    1871    "properties":  
    1872        {"street": "HARBOR", "color": "lime", "perpx": "-0.689841", "perpy": "-0.723961"} 
    1873 },   
    1874 { 
    1875    "type": "Feature", 
    1876    "id": "5 S 38", 
    1877    "geometry": 
    1878        { 
    1879         "type": "Point", 
    1880         "coordinates": [-117.922328,33.82198] 
    1881        }, 
    1882    "properties":  
    1883        {"street": "SOUTH 1", "color": "lime", "perpx": "-0.750414", "perpy": "-0.660968"} 
    1884 },   
    1885 { 
    1886    "type": "Feature", 
    1887    "id": "5 S 38.48", 
    1888    "geometry": 
    1889        { 
    1890         "type": "Point", 
    1891         "coordinates": [-117.927279,33.827601] 
    1892        }, 
    1893    "properties":  
    1894        {"street": "PEPPER", "color": "lime", "perpx": "0", "perpy": "0"} 
    1895 },   
    1896 { 
    1897    "type": "Feature", 
    1898    "id": "5 S 39", 
    1899    "geometry": 
    1900        { 
    1901         "type": "Point", 
    1902         "coordinates": [-117.933068,33.832791] 
    1903        }, 
    1904    "properties":  
    1905        {"street": "LINCOLN", "color": "lime", "perpx": "-0.327822", "perpy": "-0.944739"} 
    1906 },   
    1907 { 
    1908    "type": "Feature", 
    1909    "id": "5 S 39.3", 
    1910    "geometry": 
    1911        { 
    1912         "type": "Point", 
    1913         "coordinates": [-117.938264,33.834594] 
    1914        }, 
    1915    "properties":  
    1916        {"street": "EUCLID 1", "color": "lime", "perpx": "-0.361622", "perpy": "-0.932325"} 
    1917 },   
    1918 { 
    1919    "type": "Feature", 
    1920    "id": "5 S 39.6", 
    1921    "geometry": 
    1922        { 
    1923         "type": "Point", 
    1924         "coordinates": [-117.943178,33.8365] 
    1925        }, 
    1926    "properties":  
    1927        {"street": "EUCLID 2", "color": "lime", "perpx": "-0.471004", "perpy": "-0.882131"} 
    1928 },   
    1929 { 
    1930    "type": "Feature", 
    1931    "id": "5 S 40.04", 
    1932    "geometry": 
    1933        { 
    1934         "type": "Point", 
    1935         "coordinates": [-117.949454,33.839851] 
    1936        }, 
    1937    "properties":  
    1938        {"street": "CRESCENT", "color": "lime", "perpx": "-0.48436", "perpy": "-0.874869"} 
    1939 },   
    1940 { 
    1941    "type": "Feature", 
    1942    "id": "5 S 40.5", 
    1943    "geometry": 
    1944        { 
    1945         "type": "Point", 
    1946         "coordinates": [-117.955942,33.843443] 
    1947        }, 
    1948    "properties":  
    1949        {"street": "BROOKHURST 1", "color": "lime", "perpx": "-0.48436", "perpy": "-0.874869"} 
    1950 },   
    1951 { 
    1952    "type": "Feature", 
    1953    "id": "5 S 40.98", 
    1954    "geometry": 
    1955        { 
    1956         "type": "Point", 
    1957         "coordinates": [-117.96276,33.847169] 
    1958        }, 
    1959    "properties":  
    1960        {"street": "LA PALMA", "color": "lime", "perpx": "-0.460852", "perpy": "-0.887477"} 
    1961 },   
    1962 { 
    1963    "type": "Feature", 
    1964    "id": "5 S 43.01", 
    1965    "geometry": 
    1966        { 
    1967         "type": "Point", 
    1968         "coordinates": [-117.992155,33.862901] 
    1969        }, 
    1970    "properties":  
    1971        {"street": "STANTON", "color": "lime", "perpx": "-0.493087", "perpy": "-0.86998"} 
    1972 },   
    19731225 
    19741226{ 
    19751227   "type": "Feature", 
    1976    "id": "22 E 1.08", 
    1977    "geometry": 
    1978        { 
    1979         "type": "Point", 
    1980         "coordinates": [-118.034947,33.774261] 
    1981        }, 
    1982    "properties":  
    1983        {"street": "VALLEY V2", "color": "lime", "perpx": "0", "perpy": "0"} 
    1984 },   
    1985 { 
    1986    "type": "Feature", 
    1987    "id": "22 E 1.75", 
    1988    "geometry": 
    1989        { 
    1990         "type": "Point", 
    1991         "coordinates": [-118.023344,33.774214] 
    1992        }, 
    1993    "properties":  
    1994        {"street": "SPRINGDALE", "color": "lime", "perpx": "-0.000902", "perpy": "-1.0"} 
    1995 },   
    1996 { 
    1997    "type": "Feature", 
    1998    "id": "22 E 2.49", 
    1999    "geometry": 
    2000        { 
    2001         "type": "Point", 
    2002         "coordinates": [-118.010537,33.774494] 
    2003        }, 
    2004    "properties":  
    2005        {"street": "KNOTT 1", "color": "lime", "perpx": "-0.13051", "perpy": "-0.991447"} 
    2006 },   
    2007 { 
    2008    "type": "Feature", 
    2009    "id": "22 E 2.88", 
    2010    "geometry": 
    2011        { 
    2012         "type": "Point", 
    2013         "coordinates": [-118.004149,33.772807] 
    2014        }, 
    2015    "properties":  
    2016        {"street": "KNOTT 2", "color": "lime", "perpx": "-0.410336", "perpy": "-0.911934"} 
    2017 },   
    2018 { 
    2019    "type": "Feature", 
    2020    "id": "22 E 3.44", 
    2021    "geometry": 
    2022        { 
    2023         "type": "Point", 
    2024         "coordinates": [-117.994688,33.771171] 
    2025        }, 
    2026    "properties":  
    2027        {"street": "BEACH 1", "color": "lime", "perpx": "-0.057103", "perpy": "-0.998368"} 
    2028 },   
    2029 { 
    2030    "type": "Feature", 
    2031    "id": "22 E 3.73", 
    2032    "geometry": 
    2033        { 
    2034         "type": "Point", 
    2035         "coordinates": [-117.989845,33.770894] 
    2036        }, 
    2037    "properties":  
    2038        {"street": "BEACH 2", "color": "lime", "perpx": "-0.058722", "perpy": "-0.998274"} 
    2039 },   
    2040 { 
    2041    "type": "Feature", 
    2042    "id": "22 E 4.6", 
    2043    "geometry": 
    2044        { 
    2045         "type": "Point", 
    2046         "coordinates": [-117.976135,33.767032] 
    2047        }, 
    2048    "properties":  
    2049        {"street": "MAGNOLIA1", "color": "lime", "perpx": "-0.198967", "perpy": "-0.980006"} 
    2050 },   
    2051 { 
    2052    "type": "Feature", 
    2053    "id": "22 E 4.99", 
    2054    "geometry": 
    2055        { 
    2056         "type": "Point", 
    2057         "coordinates": [-117.969658,33.765717] 
    2058        }, 
    2059    "properties":  
    2060        {"street": "MAGNOLIA2", "color": "lime", "perpx": "-0.198967", "perpy": "-0.980006"} 
    2061 },   
    2062 { 
    2063    "type": "Feature", 
    2064    "id": "22 E 5.63", 
    2065    "geometry": 
    2066        { 
    2067         "type": "Point", 
    2068         "coordinates": [-117.958333,33.765808] 
    2069        }, 
    2070    "properties":  
    2071        {"street": "BROOKHUR1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2072 },   
    2073 { 
    2074    "type": "Feature", 
    2075    "id": "22 E 5.77", 
    2076    "geometry": 
    2077        { 
    2078         "type": "Point", 
    2079         "coordinates": [-117.955835,33.765809] 
    2080        }, 
    2081    "properties":  
    2082        {"street": "BROOKHUR2", "color": "lime", "perpx": "0.010191", "perpy": "-0.999948"} 
    2083 },   
    2084 { 
    2085    "type": "Feature", 
    2086    "id": "22 E 6.94", 
    2087    "geometry": 
    2088        { 
    2089         "type": "Point", 
    2090         "coordinates": [-117.935763,33.765995] 
    2091        }, 
    2092    "properties":  
    2093        {"street": "EUCLID", "color": "lime", "perpx": "0.008037", "perpy": "-0.999968"} 
    2094 },   
    2095 { 
    2096    "type": "Feature", 
    2097    "id": "22 E 7.29", 
    2098    "geometry": 
    2099        { 
    2100         "type": "Point", 
    2101         "coordinates": [-117.929691,33.766038] 
    2102        }, 
    2103    "properties":  
    2104        {"street": "NEWHOPE", "color": "lime", "perpx": "-0.00578", "perpy": "-0.999983"} 
    2105 },   
    2106 { 
    2107    "type": "Feature", 
    2108    "id": "22 E 8.02", 
    2109    "geometry": 
    2110        { 
    2111         "type": "Point", 
    2112         "coordinates": [-117.917517,33.768707] 
    2113        }, 
    2114    "properties":  
    2115        {"street": "HARBOR 2", "color": "lime", "perpx": "0.34339", "perpy": "-0.939193"} 
    2116 },   
    2117 { 
    2118    "type": "Feature", 
    2119    "id": "22 E 8.68", 
    2120    "geometry": 
    2121        { 
    2122         "type": "Point", 
    2123         "coordinates": [-117.907372,33.773077] 
    2124        }, 
    2125    "properties":  
    2126        {"street": "GARDEN G1", "color": "lime", "perpx": "0.456112", "perpy": "-0.889922"} 
    2127 },   
    2128 { 
    2129    "type": "Feature", 
    2130    "id": "22 E 9.04", 
    2131    "geometry": 
    2132        { 
    2133         "type": "Point", 
    2134         "coordinates": [-117.901985,33.775838] 
    2135        }, 
    2136    "properties":  
    2137        {"street": "GARDEN GROVE 2", "color": "lime", "perpx": "0.456112", "perpy": "-0.889922"} 
    2138 },   
    2139 { 
    2140    "type": "Feature", 
    2141    "id": "22 E 9.7", 
    2142    "geometry": 
    2143        { 
    2144         "type": "Point", 
    2145         "coordinates": [-117.889394,33.778925] 
    2146        }, 
    2147    "properties":  
    2148        {"street": "THE CITY DRIVE", "color": "lime", "perpx": "-0.007156", "perpy": "-0.999974"} 
    2149 },   
    2150 { 
    2151    "type": "Feature", 
    2152    "id": "22 E 10.13", 
    2153    "geometry": 
    2154        { 
    2155         "type": "Point", 
    2156         "coordinates": [-117.882341,33.778903] 
    2157        }, 
    2158    "properties":  
    2159        {"street": "BRISTOL", "color": "lime", "perpx": "0.009671", "perpy": "-0.999953"} 
    2160 },   
    2161 { 
    2162    "type": "Feature", 
    2163    "id": "22 E 10.53", 
    2164    "geometry": 
    2165        { 
    2166         "type": "Point", 
    2167         "coordinates": [-117.875647,33.778882] 
    2168        }, 
    2169    "properties":  
    2170        {"street": "W OF 5", "color": "lime", "perpx": "-0.163762", "perpy": "-0.9865"} 
    2171 },   
    2172 { 
    2173    "type": "Feature", 
    2174    "id": "22 E 10.71", 
    2175    "geometry": 
    2176        { 
    2177         "type": "Point", 
    2178         "coordinates": [-117.872382,33.77834] 
    2179        }, 
    2180    "properties":  
    2181        {"street": "E OF 5", "color": "lime", "perpx": "-0.163762", "perpy": "-0.9865"} 
    2182 },   
    2183 { 
    2184    "type": "Feature", 
    2185    "id": "22 E 11.25", 
    2186    "geometry": 
    2187        { 
    2188         "type": "Point", 
    2189         "coordinates": [-117.862808,33.778206] 
    2190        }, 
    2191    "properties":  
    2192        {"street": "MAIN", "color": "lime", "perpx": "-0.226291", "perpy": "-0.97406"} 
    2193 },   
    2194 { 
    2195    "type": "Feature", 
    2196    "id": "22 E 11.68", 
    2197    "geometry": 
    2198        { 
    2199         "type": "Point", 
    2200         "coordinates": [-117.855753,33.776567] 
    2201        }, 
    2202    "properties":  
    2203        {"street": "GLASSELL1", "color": "lime", "perpx": "-0.249497", "perpy": "-0.968376"} 
    2204 },   
    2205 { 
    2206    "type": "Feature", 
    2207    "id": "22 E 12.01", 
    2208    "geometry": 
    2209        { 
    2210         "type": "Point", 
    2211         "coordinates": [-117.850292,33.77516] 
    2212        }, 
    2213    "properties":  
    2214        {"street": "GLASSELL2", "color": "lime", "perpx": "0.111941", "perpy": "-0.993715"} 
    2215 },   
    2216 { 
    2217    "type": "Feature", 
    2218    "id": "22 W 0.89", 
    2219    "geometry": 
    2220        { 
    2221         "type": "Point", 
    2222         "coordinates": [-118.038174,33.774686] 
    2223        }, 
    2224    "properties":  
    2225        {"street": "VALLEY V1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2226 },   
    2227 { 
    2228    "type": "Feature", 
    2229    "id": "22 W 1", 
    2230    "geometry": 
    2231        { 
    2232         "type": "Point", 
    2233         "coordinates": [-118.036302,33.774521] 
    2234        }, 
    2235    "properties":  
    2236        {"street": "VALLEY V2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2237 },   
    2238 { 
    2239    "type": "Feature", 
    2240    "id": "22 W 1.75", 
    2241    "geometry": 
    2242        { 
    2243         "type": "Point", 
    2244         "coordinates": [-118.023337,33.77439] 
    2245        }, 
    2246    "properties":  
    2247        {"street": "SPRINGDALE", "color": "lime", "perpx": "0.003425", "perpy": "0.999994"} 
    2248 },   
    2249 { 
    2250    "type": "Feature", 
    2251    "id": "22 W 2.49", 
    2252    "geometry": 
    2253        { 
    2254         "type": "Point", 
    2255         "coordinates": [-118.010501,33.774652] 
    2256        }, 
    2257    "properties":  
    2258        {"street": "KNOTT 1", "color": "lime", "perpx": "0.127522", "perpy": "0.991836"} 
    2259 },   
    2260 { 
    2261    "type": "Feature", 
    2262    "id": "22 W 2.88", 
    2263    "geometry": 
    2264        { 
    2265         "type": "Point", 
    2266         "coordinates": [-118.004084,33.772939] 
    2267        }, 
    2268    "properties":  
    2269        {"street": "KNOTT 2", "color": "lime", "perpx": "0.421869", "perpy": "0.906657"} 
    2270 },   
    2271 { 
    2272    "type": "Feature", 
    2273    "id": "22 W 3.45", 
    2274    "geometry": 
    2275        { 
    2276         "type": "Point", 
    2277         "coordinates": [-117.994525,33.771348] 
    2278        }, 
    2279    "properties":  
    2280        {"street": "BEACH 1", "color": "lime", "perpx": "0.061692", "perpy": "0.998095"} 
    2281 },   
    2282 { 
    2283    "type": "Feature", 
    2284    "id": "22 W 3.73", 
    2285    "geometry": 
    2286        { 
    2287         "type": "Point", 
    2288         "coordinates": [-117.989817,33.771057] 
    2289        }, 
    2290    "properties":  
    2291        {"street": "BEACH2", "color": "lime", "perpx": "0.055628", "perpy": "0.998452"} 
    2292 },   
    2293 { 
    2294    "type": "Feature", 
    2295    "id": "22 W 4.6", 
    2296    "geometry": 
    2297        { 
    2298         "type": "Point", 
    2299         "coordinates": [-117.976011,33.767155] 
    2300        }, 
    2301    "properties":  
    2302        {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.196678", "perpy": "0.980468"} 
    2303 },   
    2304 { 
    2305    "type": "Feature", 
    2306    "id": "22 W 4.99", 
    2307    "geometry": 
    2308        { 
    2309         "type": "Point", 
    2310         "coordinates": [-117.96964,33.765877] 
    2311        }, 
    2312    "properties":  
    2313        {"street": "MAGNOLIA2", "color": "lime", "perpx": "0.196678", "perpy": "0.980468"} 
    2314 },   
    2315 { 
    2316    "type": "Feature", 
    2317    "id": "22 W 5.57", 
    2318    "geometry": 
    2319        { 
    2320         "type": "Point", 
    2321         "coordinates": [-117.959407,33.765954] 
    2322        }, 
    2323    "properties":  
    2324        {"street": "BROOKHUR1", "color": "lime", "perpx": "-0.004759", "perpy": "0.999989"} 
    2325 },   
    2326 { 
    2327    "type": "Feature", 
    2328    "id": "22 W 6.94", 
    2329    "geometry": 
    2330        { 
    2331         "type": "Point", 
    2332         "coordinates": [-117.935768,33.766144] 
    2333        }, 
    2334    "properties":  
    2335        {"street": "EUCLID", "color": "lime", "perpx": "-0.011359", "perpy": "0.999935"} 
    2336 },   
    2337 { 
    2338    "type": "Feature", 
    2339    "id": "22 W 7.29", 
    2340    "geometry": 
    2341        { 
    2342         "type": "Point", 
    2343         "coordinates": [-117.929696,33.766181] 
    2344        }, 
    2345    "properties":  
    2346        {"street": "NEWHOPE", "color": "lime", "perpx": "-0.00578", "perpy": "0.999983"} 
    2347 },   
    2348 { 
    2349    "type": "Feature", 
    2350    "id": "22 W 7.72", 
    2351    "geometry": 
    2352        { 
    2353         "type": "Point", 
    2354         "coordinates": [-117.922445,33.767174] 
    2355        }, 
    2356    "properties":  
    2357        {"street": "HARBOR 1", "color": "lime", "perpx": "-0.323962", "perpy": "0.94607"} 
    2358 },   
    2359 { 
    2360    "type": "Feature", 
    2361    "id": "22 W 7.93", 
    2362    "geometry": 
    2363        { 
    2364         "type": "Point", 
    2365         "coordinates": [-117.919037,33.768341] 
    2366        }, 
    2367    "properties":  
    2368        {"street": "HARBOR 2", "color": "lime", "perpx": "-0.337825", "perpy": "0.941209"} 
    2369 },   
    2370 { 
    2371    "type": "Feature", 
    2372    "id": "22 W 8.68", 
    2373    "geometry": 
    2374        { 
    2375         "type": "Point", 
    2376         "coordinates": [-117.907475,33.773193] 
    2377        }, 
    2378    "properties":  
    2379        {"street": "GARDEN G1", "color": "lime", "perpx": "-0.456614", "perpy": "0.889665"} 
    2380 },   
    2381 { 
    2382    "type": "Feature", 
    2383    "id": "22 W 9.04", 
    2384    "geometry": 
    2385        { 
    2386         "type": "Point", 
    2387         "coordinates": [-117.902076,33.775964] 
    2388        }, 
    2389    "properties":  
    2390        {"street": "GARDEN G2", "color": "lime", "perpx": "-0.456614", "perpy": "0.889665"} 
    2391 },   
    2392 { 
    2393    "type": "Feature", 
    2394    "id": "22 W 9.69", 
    2395    "geometry": 
    2396        { 
    2397         "type": "Point", 
    2398         "coordinates": [-117.889576,33.779085] 
    2399        }, 
    2400    "properties":  
    2401        {"street": "CITY DRIVE", "color": "lime", "perpx": "0.007955", "perpy": "0.999968"} 
    2402 },   
    2403 { 
    2404    "type": "Feature", 
    2405    "id": "22 W 9.9", 
    2406    "geometry": 
    2407        { 
    2408         "type": "Point", 
    2409         "coordinates": [-117.886182,33.779058] 
    2410        }, 
    2411    "properties":  
    2412        {"street": "HESPERIAN", "color": "lime", "perpx": "0.007955", "perpy": "0.999968"} 
    2413 },   
    2414 { 
    2415    "type": "Feature", 
    2416    "id": "22 W 10.14", 
    2417    "geometry": 
    2418        { 
    2419         "type": "Point", 
    2420         "coordinates": [-117.882183,33.779081] 
    2421        }, 
    2422    "properties":  
    2423        {"street": "BRISTOL", "color": "lime", "perpx": "-0.00667", "perpy": "0.999978"} 
    2424 },   
    2425 { 
    2426    "type": "Feature", 
    2427    "id": "22 W 10.53", 
    2428    "geometry": 
    2429        { 
    2430         "type": "Point", 
    2431         "coordinates": [-117.875662,33.779039] 
    2432        }, 
    2433    "properties":  
    2434        {"street": "W OF 5", "color": "lime", "perpx": "0.174163", "perpy": "0.984717"} 
    2435 },   
    2436 { 
    2437    "type": "Feature", 
    2438    "id": "22 W 10.71", 
    2439    "geometry": 
    2440        { 
    2441         "type": "Point", 
    2442         "coordinates": [-117.872394,33.778461] 
    2443        }, 
    2444    "properties":  
    2445        {"street": "E OF 5", "color": "lime", "perpx": "0.174163", "perpy": "0.984717"} 
    2446 },   
    2447 { 
    2448    "type": "Feature", 
    2449    "id": "22 W 11.23", 
    2450    "geometry": 
    2451        { 
    2452         "type": "Point", 
    2453         "coordinates": [-117.863135,33.778348] 
    2454        }, 
    2455    "properties":  
    2456        {"street": "MAIN", "color": "lime", "perpx": "0.219291", "perpy": "0.97566"} 
    2457 },   
    2458 { 
    2459    "type": "Feature", 
    2460    "id": "22 W 11.68", 
    2461    "geometry": 
    2462        { 
    2463         "type": "Point", 
    2464         "coordinates": [-117.855696,33.776676] 
    2465        }, 
    2466    "properties":  
    2467        {"street": "GLASSELL1", "color": "lime", "perpx": "0.249721", "perpy": "0.968318"} 
    2468 },   
    2469 { 
    2470    "type": "Feature", 
    2471    "id": "22 W 12.01", 
    2472    "geometry": 
    2473        { 
    2474         "type": "Point", 
    2475         "coordinates": [-117.850279,33.775279] 
    2476        }, 
    2477    "properties":  
    2478        {"street": "GLASSELL2", "color": "lime", "perpx": "-0.113292", "perpy": "0.993562"} 
    2479 },   
    2480 { 
    2481    "type": "Feature", 
    2482    "id": "22 W 12.7", 
    2483    "geometry": 
    2484        { 
    2485         "type": "Point", 
    2486         "coordinates": [-117.838554,33.776862] 
    2487        }, 
    2488    "properties":  
    2489        {"street": "TUSTIN", "color": "lime", "perpx": "0", "perpy": "0"} 
     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"} 
    24901577},   
    24911578 
    24921579{ 
    24931580   "type": "Feature", 
    2494    "id": "55 N 2.77", 
    2495    "geometry": 
    2496        { 
    2497         "type": "Point", 
    2498         "coordinates": [-117.908497,33.651784] 
    2499        }, 
    2500    "properties":  
    2501        {"street": "VICTORIA1", "color": "lime", "perpx": "0.712053", "perpy": "-0.702126"} 
    2502 },   
    2503 { 
    2504    "type": "Feature", 
    2505    "id": "55 N 3.07", 
    2506    "geometry": 
    2507        { 
    2508         "type": "Point", 
    2509         "coordinates": [-117.905264,33.655235] 
    2510        }, 
    2511    "properties":  
    2512        {"street": "VICTORIA2", "color": "lime", "perpx": "0.7454", "perpy": "-0.666618"} 
    2513 },   
    2514 { 
    2515    "type": "Feature", 
    2516    "id": "55 N 3.59", 
    2517    "geometry": 
    2518        { 
    2519         "type": "Point", 
    2520         "coordinates": [-117.899494,33.661052] 
    2521        }, 
    2522    "properties":  
    2523        {"street": "FAIR 1", "color": "lime", "perpx": "0.711701", "perpy": "-0.702482"} 
    2524 },   
    2525 { 
    2526    "type": "Feature", 
    2527    "id": "55 N 3.97", 
    2528    "geometry": 
    2529        { 
    2530         "type": "Point", 
    2531         "coordinates": [-117.895303,33.665298] 
    2532        }, 
    2533    "properties":  
    2534        {"street": "FAIR 2", "color": "lime", "perpx": "0.711701", "perpy": "-0.702482"} 
    2535 },   
    2536 { 
    2537    "type": "Feature", 
    2538    "id": "55 N 4.58", 
    2539    "geometry": 
    2540        { 
    2541         "type": "Point", 
    2542         "coordinates": [-117.888101,33.671785] 
    2543        }, 
    2544    "properties":  
    2545        {"street": "BRISTOL", "color": "lime", "perpx": "0.612685", "perpy": "-0.790327"} 
    2546 },   
    2547 { 
    2548    "type": "Feature", 
    2549    "id": "55 N 4.7", 
    2550    "geometry": 
    2551        { 
    2552         "type": "Point", 
    2553         "coordinates": [-117.886575,33.672968] 
    2554        }, 
    2555    "properties":  
    2556        {"street": "BAKER 1", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
    2557 },   
    2558 { 
    2559    "type": "Feature", 
    2560    "id": "55 N 5.06", 
    2561    "geometry": 
    2562        { 
    2563         "type": "Point", 
    2564         "coordinates": [-117.882208,33.676702] 
    2565        }, 
    2566    "properties":  
    2567        {"street": "BAKER 2", "color": "lime", "perpx": "0.649874", "perpy": "-0.760042"} 
    2568 },   
    2569 { 
    2570    "type": "Feature", 
    2571    "id": "55 N 5.51", 
    2572    "geometry": 
    2573        { 
    2574         "type": "Point", 
    2575         "coordinates": [-117.877327,33.681801] 
    2576        }, 
    2577    "properties":  
    2578        {"street": "PAULARINO 1", "color": "lime", "perpx": "0.73612", "perpy": "-0.676851"} 
    2579 },   
    2580 { 
    2581    "type": "Feature", 
    2582    "id": "55 N 5.87", 
    2583    "geometry": 
    2584        { 
    2585         "type": "Point", 
    2586         "coordinates": [-117.873498,33.685939] 
    2587        }, 
    2588    "properties":  
    2589        {"street": "PAULARINO 2", "color": "lime", "perpx": "0.719864", "perpy": "-0.694115"} 
    2590 },   
    2591 { 
    2592    "type": "Feature", 
    2593    "id": "55 N 6.94", 
    2594    "geometry": 
    2595        { 
    2596         "type": "Point", 
    2597         "coordinates": [-117.861831,33.698026] 
    2598        }, 
    2599    "properties":  
    2600        {"street": "MACARTHU1", "color": "lime", "perpx": "0.740557", "perpy": "-0.671994"} 
    2601 },   
    2602 { 
    2603    "type": "Feature", 
    2604    "id": "55 N 7.1", 
    2605    "geometry": 
    2606        { 
    2607         "type": "Point", 
    2608         "coordinates": [-117.860155,33.699873] 
    2609        }, 
    2610    "properties":  
    2611        {"street": "MACARTHU2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2612 },   
    2613 { 
    2614    "type": "Feature", 
    2615    "id": "55 N 7.85", 
    2616    "geometry": 
    2617        { 
    2618         "type": "Point", 
    2619         "coordinates": [-117.85183,33.708364] 
    2620        }, 
    2621    "properties":  
    2622        {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2623 },   
    2624 { 
    2625    "type": "Feature", 
    2626    "id": "55 N 8.12", 
    2627    "geometry": 
    2628        { 
    2629         "type": "Point", 
    2630         "coordinates": [-117.848847,33.711314] 
    2631        }, 
    2632    "properties":  
    2633        {"street": "DYER 2", "color": "lime", "perpx": "0.71172", "perpy": "-0.702463"} 
    2634 },   
    2635 { 
    2636    "type": "Feature", 
    2637    "id": "55 N 9.41", 
    2638    "geometry": 
    2639        { 
    2640         "type": "Point", 
    2641         "coordinates": [-117.83503,33.726049] 
    2642        }, 
    2643    "properties":  
    2644        {"street": "EDINGER 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2645 },   
    2646 { 
    2647    "type": "Feature", 
    2648    "id": "55 N 9.84", 
    2649    "geometry": 
    2650        { 
    2651         "type": "Point", 
    2652         "coordinates": [-117.833555,33.732101] 
    2653        }, 
    2654    "properties":  
    2655        {"street": "MCFADDEN", "color": "lime", "perpx": "0.999932", "perpy": "-0.011627"} 
    2656 },   
    2657 { 
    2658    "type": "Feature", 
    2659    "id": "55 N 10.2", 
    2660    "geometry": 
    2661        { 
    2662         "type": "Point", 
    2663         "coordinates": [-117.833583,33.737088] 
    2664        }, 
    2665    "properties":  
    2666        {"street": "N OF 5 OFF", "color": "lime", "perpx": "0", "perpy": "0"} 
    2667 },   
    2668 { 
    2669    "type": "Feature", 
    2670    "id": "55 N 10.4", 
    2671    "geometry": 
    2672        { 
    2673         "type": "Point", 
    2674         "coordinates": [-117.83368,33.739982] 
    2675        }, 
    2676    "properties":  
    2677        {"street": "S OF 5", "color": "lime", "perpx": "0.999923", "perpy": "0.012439"} 
    2678 },   
    2679 { 
    2680    "type": "Feature", 
    2681    "id": "55 N 10.5", 
    2682    "geometry": 
    2683        { 
    2684         "type": "Point", 
    2685         "coordinates": [-117.833698,33.741429] 
    2686        }, 
    2687    "properties":  
    2688        {"street": "N OF 5", "color": "lime", "perpx": "0.97478", "perpy": "-0.22317"} 
    2689 },   
    2690 { 
    2691    "type": "Feature", 
    2692    "id": "55 N 11.1", 
    2693    "geometry": 
    2694        { 
    2695         "type": "Point", 
    2696         "coordinates": [-117.831768,33.749859] 
    2697        }, 
    2698    "properties":  
    2699        {"street": "FOURTH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2700 },   
    2701 { 
    2702    "type": "Feature", 
    2703    "id": "55 N 11.74", 
    2704    "geometry": 
    2705        { 
    2706         "type": "Point", 
    2707         "coordinates": [-117.830994,33.759105] 
    2708        }, 
    2709    "properties":  
    2710        {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2711 },   
    2712 { 
    2713    "type": "Feature", 
    2714    "id": "55 N 12", 
    2715    "geometry": 
    2716        { 
    2717         "type": "Point", 
    2718         "coordinates": [-117.830834,33.762898] 
    2719        }, 
    2720    "properties":  
    2721        {"street": "17TH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2722 },   
    2723 { 
    2724    "type": "Feature", 
    2725    "id": "55 N 12.7", 
    2726    "geometry": 
    2727        { 
    2728         "type": "Point", 
    2729         "coordinates": [-117.830912,33.773139] 
    2730        }, 
    2731    "properties":  
    2732        {"street": "FAIRHAVEN", "color": "lime", "perpx": "0.999999", "perpy": "0.001196"} 
    2733 },   
    2734 { 
    2735    "type": "Feature", 
    2736    "id": "55 N 13.9", 
    2737    "geometry": 
    2738        { 
    2739         "type": "Point", 
    2740         "coordinates": [-117.830884,33.790409] 
    2741        }, 
    2742    "properties":  
    2743        {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2744 },   
    2745 { 
    2746    "type": "Feature", 
    2747    "id": "55 N 14.4", 
    2748    "geometry": 
    2749        { 
    2750         "type": "Point", 
    2751         "coordinates": [-117.831045,33.797732] 
    2752        }, 
    2753    "properties":  
    2754        {"street": "Walnut", "color": "lime", "perpx": "0.994412", "perpy": "0.105571"} 
    2755 },   
    2756 { 
    2757    "type": "Feature", 
    2758    "id": "55 N 14.6", 
    2759    "geometry": 
    2760        { 
    2761         "type": "Point", 
    2762         "coordinates": [-117.831355,33.800652] 
    2763        }, 
    2764    "properties":  
    2765        {"street": "COLLINS", "color": "lime", "perpx": "0.994412", "perpy": "0.105571"} 
    2766 },   
    2767 { 
    2768    "type": "Feature", 
    2769    "id": "55 N 15.22", 
    2770    "geometry": 
    2771        { 
    2772         "type": "Point", 
    2773         "coordinates": [-117.831849,33.809608] 
    2774        }, 
    2775    "properties":  
    2776        {"street": "KATELLA 1", "color": "lime", "perpx": "0.999767", "perpy": "0.021575"} 
    2777 },   
    2778 { 
    2779    "type": "Feature", 
    2780    "id": "55 N 15.4", 
    2781    "geometry": 
    2782        { 
    2783         "type": "Point", 
    2784         "coordinates": [-117.831905,33.812203] 
    2785        }, 
    2786    "properties":  
    2787        {"street": "KATELLA  2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2788 },   
    2789 { 
    2790    "type": "Feature", 
    2791    "id": "55 N 15.8", 
    2792    "geometry": 
    2793        { 
    2794         "type": "Point", 
    2795         "coordinates": [-117.831919,33.817981] 
    2796        }, 
    2797    "properties":  
    2798        {"street": "TAFT", "color": "lime", "perpx": "1.0", "perpy": "0.000172"} 
    2799 },   
    2800 { 
    2801    "type": "Feature", 
    2802    "id": "55 N 16.2", 
    2803    "geometry": 
    2804        { 
    2805         "type": "Point", 
    2806         "coordinates": [-117.83192,33.823807] 
    2807        }, 
    2808    "properties":  
    2809        {"street": "MEATS", "color": "lime", "perpx": "1.0", "perpy": "0.000172"} 
    2810 },   
    2811 { 
    2812    "type": "Feature", 
    2813    "id": "55 N 17.12", 
    2814    "geometry": 
    2815        { 
    2816         "type": "Point", 
    2817         "coordinates": [-117.834992,33.837111] 
    2818        }, 
    2819    "properties":  
    2820        {"street": "LINCOLN 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    2821 },   
    2822 { 
    2823    "type": "Feature", 
    2824    "id": "55 S 2.77", 
    2825    "geometry": 
    2826        { 
    2827         "type": "Point", 
    2828         "coordinates": [-117.908673,33.651901] 
    2829        }, 
    2830    "properties":  
    2831        {"street": "VICTORIA1", "color": "lime", "perpx": "-0.732846", "perpy": "0.680394"} 
    2832 },   
    2833 { 
    2834    "type": "Feature", 
    2835    "id": "55 S 3.07", 
    2836    "geometry": 
    2837        { 
    2838         "type": "Point", 
    2839         "coordinates": [-117.905456,33.655366] 
    2840        }, 
    2841    "properties":  
    2842        {"street": "VICTORIA2", "color": "lime", "perpx": "-0.732846", "perpy": "0.680394"} 
    2843 },   
    2844 { 
    2845    "type": "Feature", 
    2846    "id": "55 S 3.59", 
    2847    "geometry": 
    2848        { 
    2849         "type": "Point", 
    2850         "coordinates": [-117.899681,33.661183] 
    2851        }, 
    2852    "properties":  
    2853        {"street": "FAIR 1", "color": "lime", "perpx": "-0.712081", "perpy": "0.702098"} 
    2854 },   
    2855 { 
    2856    "type": "Feature", 
    2857    "id": "55 S 3.97", 
    2858    "geometry": 
    2859        { 
    2860         "type": "Point", 
    2861         "coordinates": [-117.895493,33.665433] 
    2862        }, 
    2863    "properties":  
    2864        {"street": "FAIR 2", "color": "lime", "perpx": "-0.719731", "perpy": "0.694253"} 
    2865 },   
    2866 { 
    2867    "type": "Feature", 
    2868    "id": "55 S 4.58", 
    2869    "geometry": 
    2870        { 
    2871         "type": "Point", 
    2872         "coordinates": [-117.888309,33.671928] 
    2873        }, 
    2874    "properties":  
    2875        {"street": "BRISTOL", "color": "lime", "perpx": "-0.612257", "perpy": "0.790659"} 
    2876 },   
    2877 { 
    2878    "type": "Feature", 
    2879    "id": "55 S 4.7", 
    2880    "geometry": 
    2881        { 
    2882         "type": "Point", 
    2883         "coordinates": [-117.88678,33.673112] 
    2884        }, 
    2885    "properties":  
    2886        {"street": "BAKER 1", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
    2887 },   
    2888 { 
    2889    "type": "Feature", 
    2890    "id": "55 S 5.06", 
    2891    "geometry": 
    2892        { 
    2893         "type": "Point", 
    2894         "coordinates": [-117.882355,33.676789] 
    2895        }, 
    2896    "properties":  
    2897        {"street": "BAKER 2", "color": "lime", "perpx": "-0.639107", "perpy": "0.769118"} 
    2898 },   
    2899 { 
    2900    "type": "Feature", 
    2901    "id": "55 S 5.51", 
    2902    "geometry": 
    2903        { 
    2904         "type": "Point", 
    2905         "coordinates": [-117.87755,33.681935] 
    2906        }, 
    2907    "properties":  
    2908        {"street": "PAULARINO 1", "color": "lime", "perpx": "-0.722093", "perpy": "0.691796"} 
    2909 },   
    2910 { 
    2911    "type": "Feature", 
    2912    "id": "55 S 5.87", 
    2913    "geometry": 
    2914        { 
    2915         "type": "Point", 
    2916         "coordinates": [-117.873635,33.686016] 
    2917        }, 
    2918    "properties":  
    2919        {"street": "PAULARINO 2", "color": "lime", "perpx": "-0.725185", "perpy": "0.688554"} 
    2920 },   
    2921 { 
    2922    "type": "Feature", 
    2923    "id": "55 S 6.88", 
    2924    "geometry": 
    2925        { 
    2926         "type": "Point", 
    2927         "coordinates": [-117.862677,33.697495] 
    2928        }, 
    2929    "properties":  
    2930        {"street": "MACARTHU1", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"} 
    2931 },   
    2932 { 
    2933    "type": "Feature", 
    2934    "id": "55 S 7.03", 
    2935    "geometry": 
    2936        { 
    2937         "type": "Point", 
    2938         "coordinates": [-117.861041,33.699146] 
    2939        }, 
    2940    "properties":  
    2941        {"street": "MACARTHU2", "color": "lime", "perpx": "-0.710326", "perpy": "0.703873"} 
    2942 },   
    2943 { 
    2944    "type": "Feature", 
    2945    "id": "55 S 7.62", 
    2946    "geometry": 
    2947        { 
    2948         "type": "Point", 
    2949         "coordinates": [-117.854598,33.705879] 
    2950        }, 
    2951    "properties":  
    2952        {"street": "DYER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2953 },   
    2954 { 
    2955    "type": "Feature", 
    2956    "id": "55 S 8.12", 
    2957    "geometry": 
    2958        { 
    2959         "type": "Point", 
    2960         "coordinates": [-117.849099,33.711451] 
    2961        }, 
    2962    "properties":  
    2963        {"street": "DYER 2", "color": "lime", "perpx": "-0.708914", "perpy": "0.705295"} 
    2964 },   
    2965 { 
    2966    "type": "Feature", 
    2967    "id": "55 S 9.19", 
    2968    "geometry": 
    2969        { 
    2970         "type": "Point", 
    2971         "coordinates": [-117.837265,33.723387] 
    2972        }, 
    2973    "properties":  
    2974        {"street": "EDINGER 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    2975 },   
    2976 { 
    2977    "type": "Feature", 
    2978    "id": "55 S 9.84", 
    2979    "geometry": 
    2980        { 
    2981         "type": "Point", 
    2982         "coordinates": [-117.833996,33.73212] 
    2983        }, 
    2984    "properties":  
    2985        {"street": "MCFADDEN", "color": "lime", "perpx": "-0.999946", "perpy": "-0.010425"} 
    2986 },   
    2987 { 
    2988    "type": "Feature", 
    2989    "id": "55 S 10.4", 
    2990    "geometry": 
    2991        { 
    2992         "type": "Point", 
    2993         "coordinates": [-117.833908,33.739982] 
    2994        }, 
    2995    "properties":  
    2996        {"street": "S OF 5", "color": "lime", "perpx": "-0.999756", "perpy": "0.022109"} 
    2997 },   
    2998 { 
    2999    "type": "Feature", 
    3000    "id": "55 S 10.5", 
    3001    "geometry": 
    3002        { 
    3003         "type": "Point", 
    3004         "coordinates": [-117.833876,33.741429] 
    3005        }, 
    3006    "properties":  
    3007        {"street": "N OF 5", "color": "lime", "perpx": "-0.987616", "perpy": "0.156888"} 
    3008 },   
    3009 { 
    3010    "type": "Feature", 
    3011    "id": "55 S 11.62", 
    3012    "geometry": 
    3013        { 
    3014         "type": "Point", 
    3015         "coordinates": [-117.831392,33.75738] 
    3016        }, 
    3017    "properties":  
    3018        {"street": "17TH 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3019 },   
    3020 { 
    3021    "type": "Feature", 
    3022    "id": "55 S 12.7", 
    3023    "geometry": 
    3024        { 
    3025         "type": "Point", 
    3026         "coordinates": [-117.831088,33.773138] 
    3027        }, 
    3028    "properties":  
    3029        {"street": "FAIRHAVEN", "color": "lime", "perpx": "-0.999999", "perpy": "-0.001368"} 
    3030 },   
    3031 { 
    3032    "type": "Feature", 
    3033    "id": "55 S 13.51", 
    3034    "geometry": 
    3035        { 
    3036         "type": "Point", 
    3037         "coordinates": [-117.831128,33.784755] 
    3038        }, 
    3039    "properties":  
    3040        {"street": "CHAPMAN 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3041 },   
    3042 { 
    3043    "type": "Feature", 
    3044    "id": "55 S 13.75", 
    3045    "geometry": 
    3046        { 
    3047         "type": "Point", 
    3048         "coordinates": [-117.831081,33.788212] 
    3049        }, 
    3050    "properties":  
    3051        {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    3052 },   
    3053 { 
    3054    "type": "Feature", 
    3055    "id": "55 S 14.4", 
    3056    "geometry": 
    3057        { 
    3058         "type": "Point", 
    3059         "coordinates": [-117.831223,33.797729] 
    3060        }, 
    3061    "properties":  
    3062        {"street": "Walnut", "color": "lime", "perpx": "-0.994624", "perpy": "-0.10355"} 
    3063 },   
    3064 { 
    3065    "type": "Feature", 
    3066    "id": "55 S 14.6", 
    3067    "geometry": 
    3068        { 
    3069         "type": "Point", 
    3070         "coordinates": [-117.831527,33.800649] 
    3071        }, 
    3072    "properties":  
    3073        {"street": "COLLINS", "color": "lime", "perpx": "-0.994624", "perpy": "-0.10355"} 
    3074 },   
    3075 { 
    3076    "type": "Feature", 
    3077    "id": "55 S 15.8", 
    3078    "geometry": 
    3079        { 
    3080         "type": "Point", 
    3081         "coordinates": [-117.832098,33.817979] 
    3082        }, 
    3083    "properties":  
    3084        {"street": "TAFT", "color": "lime", "perpx": "-1.0", "perpy": "0.000172"} 
    3085 },   
    3086 { 
    3087    "type": "Feature", 
    3088    "id": "55 S 16.2", 
    3089    "geometry": 
    3090        { 
    3091         "type": "Point", 
    3092         "coordinates": [-117.832097,33.823807] 
    3093        }, 
    3094    "properties":  
    3095        {"street": "MEATS", "color": "lime", "perpx": "-1.0", "perpy": "0.000172"} 
    3096 },   
    3097 { 
    3098    "type": "Feature", 
    3099    "id": "55 S 16.71", 
    3100    "geometry": 
    3101        { 
    3102         "type": "Point", 
    3103         "coordinates": [-117.834539,33.830875] 
    3104        }, 
    3105    "properties":  
    3106        {"street": "LINCOLN 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     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"} 
    31071710},   
    31081711 
    31091712{ 
    31101713   "type": "Feature", 
    3111    "id": "57 N 11.1", 
    3112    "geometry": 
    3113        { 
    3114         "type": "Point", 
    3115         "coordinates": [-117.879424,33.78435] 
    3116        }, 
    3117    "properties":  
    3118        {"street": "AT CHAPMAN OFF", "color": "lime", "perpx": "0.991811", "perpy": "0.127713"} 
    3119 },   
    3120 { 
    3121    "type": "Feature", 
    3122    "id": "57 N 11.22", 
    3123    "geometry": 
    3124        { 
    3125         "type": "Point", 
    3126         "coordinates": [-117.879769,33.787426] 
    3127        }, 
    3128    "properties":  
    3129        {"street": "CHAPMAN 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3130 },   
    3131 { 
    3132    "type": "Feature", 
    3133    "id": "57 N 11.39", 
    3134    "geometry": 
    3135        { 
    3136         "type": "Point", 
    3137         "coordinates": [-117.879799,33.790105] 
    3138        }, 
    3139    "properties":  
    3140        {"street": "CHAPMAN 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    3141 },   
    3142 { 
    3143    "type": "Feature", 
    3144    "id": "57 N 11.68", 
    3145    "geometry": 
    3146        { 
    3147         "type": "Point", 
    3148         "coordinates": [-117.878448,33.794121] 
    3149        }, 
    3150    "properties":  
    3151        {"street": "ORANGEWO1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3152 },   
    3153 { 
    3154    "type": "Feature", 
    3155    "id": "57 N 11.78", 
    3156    "geometry": 
    3157        { 
    3158         "type": "Point", 
    3159         "coordinates": [-117.877848,33.795482] 
    3160        }, 
    3161    "properties":  
    3162        {"street": "ORANGEWO2", "color": "lime", "perpx": "0", "perpy": "0"} 
    3163 },   
    3164 { 
    3165    "type": "Feature", 
    3166    "id": "57 N 12.5", 
    3167    "geometry": 
    3168        { 
    3169         "type": "Point", 
    3170         "coordinates": [-117.880058,33.805531] 
    3171        }, 
    3172    "properties":  
    3173        {"street": "KATELLA 1", "color": "lime", "perpx": "0.984745", "perpy": "-0.174004"} 
    3174 },   
    3175 { 
    3176    "type": "Feature", 
    3177    "id": "57 N 12.74", 
    3178    "geometry": 
    3179        { 
    3180         "type": "Point", 
    3181         "coordinates": [-117.879353,33.808904] 
    3182        }, 
    3183    "properties":  
    3184        {"street": "KATELLA 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    3185 },   
    3186 { 
    3187    "type": "Feature", 
    3188    "id": "57 N 13.38", 
    3189    "geometry": 
    3190        { 
    3191         "type": "Point", 
    3192         "coordinates": [-117.876254,33.81772] 
    3193        }, 
    3194    "properties":  
    3195        {"street": "BALL 1", "color": "lime", "perpx": "0.980879", "perpy": "-0.194619"} 
    3196 },   
    3197 { 
    3198    "type": "Feature", 
    3199    "id": "57 N 13.56", 
    3200    "geometry": 
    3201        { 
    3202         "type": "Point", 
    3203         "coordinates": [-117.875999,33.820297] 
    3204        }, 
    3205    "properties":  
    3206        {"street": "BALL 2", "color": "lime", "perpx": "0.999993", "perpy": "-0.00368"} 
    3207 },   
    3208 { 
    3209    "type": "Feature", 
    3210    "id": "57 N 13.9", 
    3211    "geometry": 
    3212        { 
    3213         "type": "Point", 
    3214         "coordinates": [-117.875981,33.825188] 
    3215        }, 
    3216    "properties":  
    3217        {"street": "Wagner", "color": "lime", "perpx": "0.999993", "perpy": "-0.00368"} 
    3218 },   
    3219 { 
    3220    "type": "Feature", 
    3221    "id": "57 N 14.4", 
    3222    "geometry": 
    3223        { 
    3224         "type": "Point", 
    3225         "coordinates": [-117.875965,33.83238] 
    3226        }, 
    3227    "properties":  
    3228        {"street": "South", "color": "lime", "perpx": "0.999995", "perpy": "-0.003244"} 
    3229 },   
    3230 { 
    3231    "type": "Feature", 
    3232    "id": "57 N 14.73", 
    3233    "geometry": 
    3234        { 
    3235         "type": "Point", 
    3236         "coordinates": [-117.87595,33.837126] 
    3237        }, 
    3238    "properties":  
    3239        {"street": "LINCOLN 1", "color": "lime", "perpx": "0.999982", "perpy": "-0.00608"} 
    3240 },   
    3241 { 
    3242    "type": "Feature", 
    3243    "id": "57 N 14.9", 
    3244    "geometry": 
    3245        { 
    3246         "type": "Point", 
    3247         "coordinates": [-117.875935,33.839593] 
    3248        }, 
    3249    "properties":  
    3250        {"street": "LINCOLN 2", "color": "lime", "perpx": "0.999936", "perpy": "-0.011332"} 
    3251 },   
    3252 { 
    3253    "type": "Feature", 
    3254    "id": "57 N 15.1", 
    3255    "geometry": 
    3256        { 
    3257         "type": "Point", 
    3258         "coordinates": [-117.875902,33.842505] 
    3259        }, 
    3260    "properties":  
    3261        {"street": "UNDERHILL", "color": "lime", "perpx": "0.999936", "perpy": "-0.011332"} 
    3262 },   
    3263 { 
    3264    "type": "Feature", 
    3265    "id": "57 N 15.4", 
    3266    "geometry": 
    3267        { 
    3268         "type": "Point", 
    3269         "coordinates": [-117.875931,33.846873] 
    3270        }, 
    3271    "properties":  
    3272        {"street": "LA PALMA", "color": "lime", "perpx": "0.996618", "perpy": "-0.082174"} 
    3273 },   
    3274 { 
    3275    "type": "Feature", 
    3276    "id": "57 N 16.5", 
    3277    "geometry": 
    3278        { 
    3279         "type": "Point", 
    3280         "coordinates": [-117.877557,33.862728] 
    3281        }, 
    3282    "properties":  
    3283        {"street": "ORANGETHORPE", "color": "lime", "perpx": "0.95802", "perpy": "0.286703"} 
    3284 },   
    3285 { 
    3286    "type": "Feature", 
    3287    "id": "57 N 17.75", 
    3288    "geometry": 
    3289        { 
    3290         "type": "Point", 
    3291         "coordinates": [-117.88031,33.880532] 
    3292        }, 
    3293    "properties":  
    3294        {"street": "NUTWOOD", "color": "lime", "perpx": "0", "perpy": "0"} 
    3295 },   
    3296 { 
    3297    "type": "Feature", 
    3298    "id": "57 N 18.3", 
    3299    "geometry": 
    3300        { 
    3301         "type": "Point", 
    3302         "coordinates": [-117.880484,33.888435] 
    3303        }, 
    3304    "properties":  
    3305        {"street": "YORBA LI1", "color": "lime", "perpx": "0.999634", "perpy": "0.027056"} 
    3306 },   
    3307 { 
    3308    "type": "Feature", 
    3309    "id": "57 N 18.49", 
    3310    "geometry": 
    3311        { 
    3312         "type": "Point", 
    3313         "coordinates": [-117.880559,33.891206] 
    3314        }, 
    3315    "properties":  
    3316        {"street": "YORBA LI2", "color": "lime", "perpx": "0", "perpy": "0"} 
    3317 },   
    3318 { 
    3319    "type": "Feature", 
    3320    "id": "57 N 18.85", 
    3321    "geometry": 
    3322        { 
    3323         "type": "Point", 
    3324         "coordinates": [-117.880822,33.896472] 
    3325        }, 
    3326    "properties":  
    3327        {"street": "Bastanchury", "color": "lime", "perpx": "0.997832", "perpy": "0.065812"} 
    3328 },   
    3329 { 
    3330    "type": "Feature", 
    3331    "id": "57 N 19.1", 
    3332    "geometry": 
    3333        { 
    3334         "type": "Point", 
    3335         "coordinates": [-117.881063,33.900126] 
    3336        }, 
    3337    "properties":  
    3338        {"street": "ROLLING  HILLS", "color": "lime", "perpx": "0.997832", "perpy": "0.065812"} 
    3339 },   
    3340 { 
    3341    "type": "Feature", 
    3342    "id": "57 N 19.8", 
    3343    "geometry": 
    3344        { 
    3345         "type": "Point", 
    3346         "coordinates": [-117.883309,33.909962] 
    3347        }, 
    3348    "properties":  
    3349        {"street": "IMPERIAL1", "color": "lime", "perpx": "0.998732", "perpy": "-0.050333"} 
    3350 },   
    3351 { 
    3352    "type": "Feature", 
    3353    "id": "57 N 20.05", 
    3354    "geometry": 
    3355        { 
    3356         "type": "Point", 
    3357         "coordinates": [-117.882887,33.913565] 
    3358        }, 
    3359    "properties":  
    3360        {"street": "IMPERIAL2", "color": "lime", "perpx": "0.93136", "perpy": "-0.364101"} 
    3361 },   
    3362 { 
    3363    "type": "Feature", 
    3364    "id": "57 N 21.16", 
    3365    "geometry": 
    3366        { 
    3367         "type": "Point", 
    3368         "coordinates": [-117.879881,33.929701] 
    3369        }, 
    3370    "properties":  
    3371        {"street": "LAMBERT", "color": "lime", "perpx": "0", "perpy": "0"} 
    3372 },   
    3373 { 
    3374    "type": "Feature", 
    3375    "id": "57 N 22", 
    3376    "geometry": 
    3377        { 
    3378         "type": "Point", 
    3379         "coordinates": [-117.875138,33.940872] 
    3380        }, 
    3381    "properties":  
    3382        {"street": "TONNER", "color": "lime", "perpx": "0", "perpy": "0"} 
    3383 },   
    3384 { 
    3385    "type": "Feature", 
    3386    "id": "57 S 10.8", 
    3387    "geometry": 
    3388        { 
    3389         "type": "Point", 
    3390         "coordinates": [-117.874735,33.777415] 
    3391        }, 
    3392    "properties":  
    3393        {"street": "RTE 22 & 5", "color": "lime", "perpx": "0", "perpy": "0"} 
    3394 },   
    3395 { 
    3396    "type": "Feature", 
    3397    "id": "57 S 11.08", 
    3398    "geometry": 
    3399        { 
    3400         "type": "Point", 
    3401         "coordinates": [-117.880197,33.783256] 
    3402        }, 
    3403    "properties":  
    3404        {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.99935", "perpy": "0.036044"} 
    3405 },   
    3406 { 
    3407    "type": "Feature", 
    3408    "id": "57 S 11.55", 
    3409    "geometry": 
    3410        { 
    3411         "type": "Point", 
    3412         "coordinates": [-117.879621,33.792388] 
    3413        }, 
    3414    "properties":  
    3415        {"street": "ORANGEWOOD", "color": "lime", "perpx": "0", "perpy": "0"} 
    3416 },   
    3417 { 
    3418    "type": "Feature", 
    3419    "id": "57 S 12.4", 
    3420    "geometry": 
    3421        { 
    3422         "type": "Point", 
    3423         "coordinates": [-117.88008,33.804096] 
    3424        }, 
    3425    "properties":  
    3426        {"street": "KATELLA 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3427 },   
    3428 { 
    3429    "type": "Feature", 
    3430    "id": "57 S 12.58", 
    3431    "geometry": 
    3432        { 
    3433         "type": "Point", 
    3434         "coordinates": [-117.880243,33.806677] 
    3435        }, 
    3436    "properties":  
    3437        {"street": "KATELLA 2", "color": "lime", "perpx": "-0.945662", "perpy": "0.325152"} 
    3438 },   
    3439 { 
    3440    "type": "Feature", 
    3441    "id": "57 S 13.27", 
    3442    "geometry": 
    3443        { 
    3444         "type": "Point", 
    3445         "coordinates": [-117.876814,33.816163] 
    3446        }, 
    3447    "properties":  
    3448        {"street": "BALL 1", "color": "lime", "perpx": "-0.983876", "perpy": "0.178852"} 
    3449 },   
    3450 { 
    3451    "type": "Feature", 
    3452    "id": "57 S 13.45", 
    3453    "geometry": 
    3454        { 
    3455         "type": "Point", 
    3456         "coordinates": [-117.876349,33.818721] 
    3457        }, 
    3458    "properties":  
    3459        {"street": "BALL 2", "color": "lime", "perpx": "-0.999897", "perpy": "0.01437"} 
    3460 },   
    3461 { 
    3462    "type": "Feature", 
    3463    "id": "57 S 13.9", 
    3464    "geometry": 
    3465        { 
    3466         "type": "Point", 
    3467         "coordinates": [-117.876256,33.825192] 
    3468        }, 
    3469    "properties":  
    3470        {"street": "Wagner", "color": "lime", "perpx": "-0.999897", "perpy": "0.01437"} 
    3471 },   
    3472 { 
    3473    "type": "Feature", 
    3474    "id": "57 S 14.4", 
    3475    "geometry": 
    3476        { 
    3477         "type": "Point", 
    3478         "coordinates": [-117.876232,33.832386] 
    3479        }, 
    3480    "properties":  
    3481        {"street": "South", "color": "lime", "perpx": "-0.999935", "perpy": "0.011398"} 
    3482 },   
    3483 { 
    3484    "type": "Feature", 
    3485    "id": "57 S 14.65", 
    3486    "geometry": 
    3487        { 
    3488         "type": "Point", 
    3489         "coordinates": [-117.876191,33.835983] 
    3490        }, 
    3491    "properties":  
    3492        {"street": "LINCOLN 1", "color": "lime", "perpx": "-0.999998", "perpy": "0.001928"} 
    3493 },   
    3494 { 
    3495    "type": "Feature", 
    3496    "id": "57 S 14.83", 
    3497    "geometry": 
    3498        { 
    3499         "type": "Point", 
    3500         "coordinates": [-117.876186,33.838577] 
    3501        }, 
    3502    "properties":  
    3503        {"street": "LINCOLN 2", "color": "lime", "perpx": "-0.999986", "perpy": "-0.005368"} 
    3504 },   
    3505 { 
    3506    "type": "Feature", 
    3507    "id": "57 S 15.1", 
    3508    "geometry": 
    3509        { 
    3510         "type": "Point", 
    3511         "coordinates": [-117.876207,33.842489] 
    3512        }, 
    3513    "properties":  
    3514        {"street": "UNDERHILL", "color": "lime", "perpx": "-0.999986", "perpy": "-0.005368"} 
    3515 },   
    3516 { 
    3517    "type": "Feature", 
    3518    "id": "57 S 16.46", 
    3519    "geometry": 
    3520        { 
    3521         "type": "Point", 
    3522         "coordinates": [-117.87757,33.862118] 
    3523        }, 
    3524    "properties":  
    3525        {"street": "ORANGETHOR", "color": "lime", "perpx": "-0.960098", "perpy": "-0.279663"} 
    3526 },   
    3527 { 
    3528    "type": "Feature", 
    3529    "id": "57 S 17.18", 
    3530    "geometry": 
    3531        { 
    3532         "type": "Point", 
    3533         "coordinates": [-117.880462,33.872312] 
    3534        }, 
    3535    "properties":  
    3536        {"street": "CHAPMAN 3", "color": "lime", "perpx": "0", "perpy": "0"} 
    3537 },   
    3538 { 
    3539    "type": "Feature", 
    3540    "id": "57 S 17.41", 
    3541    "geometry": 
    3542        { 
    3543         "type": "Point", 
    3544         "coordinates": [-117.880503,33.87562] 
    3545        }, 
    3546    "properties":  
    3547        {"street": "NUTWOOD", "color": "lime", "perpx": "0", "perpy": "0"} 
    3548 },   
    3549 { 
    3550    "type": "Feature", 
    3551    "id": "57 S 18.18", 
    3552    "geometry": 
    3553        { 
    3554         "type": "Point", 
    3555         "coordinates": [-117.880716,33.886705] 
    3556        }, 
    3557    "properties":  
    3558        {"street": "YORBA LI1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3559 },   
    3560 { 
    3561    "type": "Feature", 
    3562    "id": "57 S 18.37", 
    3563    "geometry": 
    3564        { 
    3565         "type": "Point", 
    3566         "coordinates": [-117.880785,33.889447] 
    3567        }, 
    3568    "properties":  
    3569        {"street": "YORBA LI2", "color": "lime", "perpx": "-0.999684", "perpy": "-0.025156"} 
    3570 },   
    3571 { 
    3572    "type": "Feature", 
    3573    "id": "57 S 18.85", 
    3574    "geometry": 
    3575        { 
    3576         "type": "Point", 
    3577         "coordinates": [-117.881094,33.896472] 
    3578        }, 
    3579    "properties":  
    3580        {"street": "Bastanchury", "color": "lime", "perpx": "-0.99801", "perpy": "-0.063058"} 
    3581 },   
    3582 { 
    3583    "type": "Feature", 
    3584    "id": "57 S 19.1", 
    3585    "geometry": 
    3586        { 
    3587         "type": "Point", 
    3588         "coordinates": [-117.881325,33.900128] 
    3589        }, 
    3590    "properties":  
    3591        {"street": "ROLLING HILLS", "color": "lime", "perpx": "-0.99801", "perpy": "-0.063058"} 
    3592 },   
    3593 { 
    3594    "type": "Feature", 
    3595    "id": "57 S 19.73", 
    3596    "geometry": 
    3597        { 
    3598         "type": "Point", 
    3599         "coordinates": [-117.883224,33.90899] 
    3600        }, 
    3601    "properties":  
    3602        {"street": "IMPERIAL1", "color": "lime", "perpx": "-0.986464", "perpy": "-0.163975"} 
    3603 },   
    3604 { 
    3605    "type": "Feature", 
    3606    "id": "57 S 19.94", 
    3607    "geometry": 
    3608        { 
    3609         "type": "Point", 
    3610         "coordinates": [-117.883726,33.91201] 
    3611        }, 
    3612    "properties":  
    3613        {"street": "IMPERIAL2", "color": "lime", "perpx": "-0.953779", "perpy": "0.30051"} 
    3614 },   
    3615 { 
    3616    "type": "Feature", 
    3617    "id": "57 S 22.06", 
    3618    "geometry": 
    3619        { 
    3620         "type": "Point", 
    3621         "coordinates": [-117.874675,33.94149] 
    3622        }, 
    3623    "properties":  
    3624        {"street": "TONNER", "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"} 
    36251854},   
    36261855 
    36271856{ 
    36281857   "type": "Feature", 
    3629    "id": "73 N 10.59", 
    3630    "geometry": 
    3631        { 
    3632         "type": "Point", 
    3633         "coordinates": [-117.674552,33.545677] 
    3634        }, 
    3635    "properties":  
    3636        {"street": "CAPISTRANO", "color": "lime", "perpx": "0.971174", "perpy": "0.238373"} 
    3637 },   
    3638 { 
    3639    "type": "Feature", 
    3640    "id": "73 N 10.9", 
    3641    "geometry": 
    3642        { 
    3643         "type": "Point", 
    3644         "coordinates": [-117.675644,33.550126] 
    3645        }, 
    3646    "properties":  
    3647        {"street": "SORRENTO", "color": "lime", "perpx": "0.940629", "perpy": "0.339435"} 
    3648 },   
    3649 { 
    3650    "type": "Feature", 
    3651    "id": "73 N 11.22", 
    3652    "geometry": 
    3653        { 
    3654         "type": "Point", 
    3655         "coordinates": [-117.677239,33.554546] 
    3656        }, 
    3657    "properties":  
    3658        {"street": "CABOT", "color": "lime", "perpx": "0.940629", "perpy": "0.339435"} 
    3659 },   
    3660 { 
    3661    "type": "Feature", 
    3662    "id": "73 N 11.64", 
    3663    "geometry": 
    3664        { 
    3665         "type": "Point", 
    3666         "coordinates": [-117.683209,33.557803] 
    3667        }, 
    3668    "properties":  
    3669        {"street": "GREENFIELD 1", "color": "lime", "perpx": "0.198325", "perpy": "0.980136"} 
    3670 },   
    3671 { 
    3672    "type": "Feature", 
    3673    "id": "73 N 12", 
    3674    "geometry": 
    3675        { 
    3676         "type": "Point", 
    3677         "coordinates": [-117.689417,33.559105] 
    3678        }, 
    3679    "properties":  
    3680        {"street": "GREENFIELD 2", "color": "lime", "perpx": "0.471098", "perpy": "0.882081"} 
    3681 },   
    3682 { 
    3683    "type": "Feature", 
    3684    "id": "73 N 12.31", 
    3685    "geometry": 
    3686        { 
    3687         "type": "Point", 
    3688         "coordinates": [-117.693351,33.562029] 
    3689        }, 
    3690    "properties":  
    3691        {"street": "ROCKRIDGE", "color": "lime", "perpx": "0.802439", "perpy": "0.596734"} 
    3692 },   
    3693 { 
    3694    "type": "Feature", 
    3695    "id": "73 N 12.52", 
    3696    "geometry": 
    3697        { 
    3698         "type": "Point", 
    3699         "coordinates": [-117.695254,33.564588] 
    3700        }, 
    3701    "properties":  
    3702        {"street": "WESTRIDGE", "color": "lime", "perpx": "0.701895", "perpy": "0.712281"} 
    3703 },   
    3704 { 
    3705    "type": "Feature", 
    3706    "id": "73 N 12.83", 
    3707    "geometry": 
    3708        { 
    3709         "type": "Point", 
    3710         "coordinates": [-117.698683,33.567967] 
    3711        }, 
    3712    "properties":  
    3713        {"street": "MOULTON", "color": "lime", "perpx": "0.701895", "perpy": "0.712281"} 
    3714 },   
    3715 { 
    3716    "type": "Feature", 
    3717    "id": "73 N 13.14", 
    3718    "geometry": 
    3719        { 
    3720         "type": "Point", 
    3721         "coordinates": [-117.702528,33.571095] 
    3722        }, 
    3723    "properties":  
    3724        {"street": "PACIFIC PARK", "color": "lime", "perpx": "0.63793", "perpy": "0.770095"} 
    3725 },   
    3726 { 
    3727    "type": "Feature", 
    3728    "id": "73 N 13.6", 
    3729    "geometry": 
    3730        { 
    3731         "type": "Point", 
    3732         "coordinates": [-117.70902,33.574966] 
    3733        }, 
    3734    "properties":  
    3735        {"street": "LA PAZ 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    3736 },   
    3737 { 
    3738    "type": "Feature", 
    3739    "id": "73 N 13.7", 
    3740    "geometry": 
    3741        { 
    3742         "type": "Point", 
    3743         "coordinates": [-117.710558,33.575554] 
    3744        }, 
    3745    "properties":  
    3746        {"street": "ALICIA", "color": "lime", "perpx": "0.357106", "perpy": "0.934064"} 
    3747 },   
    3748 { 
    3749    "type": "Feature", 
    3750    "id": "73 N 13.96", 
    3751    "geometry": 
    3752        { 
    3753         "type": "Point", 
    3754         "coordinates": [-117.714614,33.577091] 
    3755        }, 
    3756    "properties":  
    3757        {"street": "ALISO 1", "color": "lime", "perpx": "0.4066", "perpy": "0.913606"} 
    3758 },   
    3759 { 
    3760    "type": "Feature", 
    3761    "id": "73 N 14.4", 
    3762    "geometry": 
    3763        { 
    3764         "type": "Point", 
    3765         "coordinates": [-117.720958,33.580619] 
    3766        }, 
    3767    "properties":  
    3768        {"street": "ALISO 3", "color": "lime", "perpx": "0.580052", "perpy": "0.81458"} 
    3769 },   
    3770 { 
    3771    "type": "Feature", 
    3772    "id": "73 N 14.7", 
    3773    "geometry": 
    3774        { 
    3775         "type": "Point", 
    3776         "coordinates": [-117.724921,33.583441] 
    3777        }, 
    3778    "properties":  
    3779        {"street": "ALISO 4", "color": "lime", "perpx": "0.578216", "perpy": "0.815884"} 
    3780 },   
    3781 { 
    3782    "type": "Feature", 
    3783    "id": "73 N 14.95", 
    3784    "geometry": 
    3785        { 
    3786         "type": "Point", 
    3787         "coordinates": [-117.72822,33.585779] 
    3788        }, 
    3789    "properties":  
    3790        {"street": "LAGUNA HILLS", "color": "lime", "perpx": "0.329384", "perpy": "0.944196"} 
    3791 },   
    3792 { 
    3793    "type": "Feature", 
    3794    "id": "73 N 15.26", 
    3795    "geometry": 
    3796        { 
    3797         "type": "Point", 
    3798         "coordinates": [-117.733096,33.58748] 
    3799        }, 
    3800    "properties":  
    3801        {"street": "GLENWOOD 1", "color": "lime", "perpx": "0.329384", "perpy": "0.944196"} 
    3802 },   
    3803 { 
    3804    "type": "Feature", 
    3805    "id": "73 N 15.7", 
    3806    "geometry": 
    3807        { 
    3808         "type": "Point", 
    3809         "coordinates": [-117.740639,33.588223] 
    3810        }, 
    3811    "properties":  
    3812        {"street": "EL TORO 1", "color": "lime", "perpx": "0.158104", "perpy": "0.987422"} 
    3813 },   
    3814 { 
    3815    "type": "Feature", 
    3816    "id": "73 N 15.96", 
    3817    "geometry": 
    3818        { 
    3819         "type": "Point", 
    3820         "coordinates": [-117.744983,33.589091] 
    3821        }, 
    3822    "properties":  
    3823        {"street": "EL TORO 2", "color": "lime", "perpx": "0.321018", "perpy": "0.947073"} 
    3824 },   
    3825 { 
    3826    "type": "Feature", 
    3827    "id": "73 N 16.25", 
    3828    "geometry": 
    3829        { 
    3830         "type": "Point", 
    3831         "coordinates": [-117.749665,33.590678] 
    3832        }, 
    3833    "properties":  
    3834        {"street": "EL TORO 3", "color": "lime", "perpx": "0.321018", "perpy": "0.947073"} 
    3835 },   
    3836 { 
    3837    "type": "Feature", 
    3838    "id": "73 N 16.59", 
    3839    "geometry": 
    3840        { 
    3841         "type": "Point", 
    3842         "coordinates": [-117.755573,33.591624] 
    3843        }, 
    3844    "properties":  
    3845        {"street": "EL TORO 4", "color": "lime", "perpx": "0.151183", "perpy": "0.988506"} 
    3846 },   
    3847 { 
    3848    "type": "Feature", 
    3849    "id": "73 N 16.98", 
    3850    "geometry": 
    3851        { 
    3852         "type": "Point", 
    3853         "coordinates": [-117.76171,33.593909] 
    3854        }, 
    3855    "properties":  
    3856        {"street": "RTE 133 3", "color": "lime", "perpx": "0.57864", "perpy": "0.815583"} 
    3857 },   
    3858 { 
    3859    "type": "Feature", 
    3860    "id": "73 N 17.2", 
    3861    "geometry": 
    3862        { 
    3863         "type": "Point", 
    3864         "coordinates": [-117.764653,33.595997] 
    3865        }, 
    3866    "properties":  
    3867        {"street": "RTE 133 4", "color": "lime", "perpx": "0.57864", "perpy": "0.815583"} 
    3868 },   
    3869 { 
    3870    "type": "Feature", 
    3871    "id": "73 N 17.62", 
    3872    "geometry": 
    3873        { 
    3874         "type": "Point", 
    3875         "coordinates": [-117.770961,33.598966] 
    3876        }, 
    3877    "properties":  
    3878        {"street": "S OF PM 18", "color": "lime", "perpx": "0.126344", "perpy": "0.991986"} 
    3879 },   
    3880 { 
    3881    "type": "Feature", 
    3882    "id": "73 N 17.95", 
    3883    "geometry": 
    3884        { 
    3885         "type": "Point", 
    3886         "coordinates": [-117.776669,33.599693] 
    3887        }, 
    3888    "properties":  
    3889        {"street": "AT PM 18", "color": "lime", "perpx": "0.126344", "perpy": "0.991986"} 
    3890 },   
    3891 { 
    3892    "type": "Feature", 
    3893    "id": "73 N 18.3", 
    3894    "geometry": 
    3895        { 
    3896         "type": "Point", 
    3897         "coordinates": [-117.782151,33.601969] 
    3898        }, 
    3899    "properties":  
    3900        {"street": "WILDLIFE", "color": "lime", "perpx": "0.16463", "perpy": "0.986355"} 
    3901 },   
    3902 { 
    3903    "type": "Feature", 
    3904    "id": "73 N 18.59", 
    3905    "geometry": 
    3906        { 
    3907         "type": "Point", 
    3908         "coordinates": [-117.786992,33.602777] 
    3909        }, 
    3910    "properties":  
    3911        {"street": "CATALINA 1", "color": "lime", "perpx": "0.16463", "perpy": "0.986355"} 
    3912 },   
    3913 { 
    3914    "type": "Feature", 
    3915    "id": "73 N 19.5", 
    3916    "geometry": 
    3917        { 
    3918         "type": "Point", 
    3919         "coordinates": [-117.801253,33.607825] 
    3920        }, 
    3921    "properties":  
    3922        {"street": "CATALINA 2", "color": "lime", "perpx": "0.300702", "perpy": "0.953718"} 
    3923 },   
    3924 { 
    3925    "type": "Feature", 
    3926    "id": "73 N 19.8", 
    3927    "geometry": 
    3928        { 
    3929         "type": "Point", 
    3930         "coordinates": [-117.806039,33.609334] 
    3931        }, 
    3932    "properties":  
    3933        {"street": "CATALINA 3", "color": "lime", "perpx": "0.300702", "perpy": "0.953718"} 
    3934 },   
    3935 { 
    3936    "type": "Feature", 
    3937    "id": "73 N 20.2", 
    3938    "geometry": 
    3939        { 
    3940         "type": "Point", 
    3941         "coordinates": [-117.812765,33.610446] 
    3942        }, 
    3943    "properties":  
    3944        {"street": "SAND CANYON 1", "color": "lime", "perpx": "0.469891", "perpy": "0.882724"} 
    3945 },   
    3946 { 
    3947    "type": "Feature", 
    3948    "id": "73 N 20.4", 
    3949    "geometry": 
    3950        { 
    3951         "type": "Point", 
    3952         "coordinates": [-117.815658,33.611986] 
    3953        }, 
    3954    "properties":  
    3955        {"street": "SAND CANYON 2", "color": "lime", "perpx": "0.469891", "perpy": "0.882724"} 
    3956 },   
    3957 { 
    3958    "type": "Feature", 
    3959    "id": "73 N 20.6", 
    3960    "geometry": 
    3961        { 
    3962         "type": "Point", 
    3963         "coordinates": [-117.817786,33.614224] 
    3964        }, 
    3965    "properties":  
    3966        {"street": "SAND CANYON 3", "color": "lime", "perpx": "0.871209", "perpy": "0.490912"} 
    3967 },   
    3968 { 
    3969    "type": "Feature", 
    3970    "id": "73 N 20.8", 
    3971    "geometry": 
    3972        { 
    3973         "type": "Point", 
    3974         "coordinates": [-117.819255,33.616831] 
    3975        }, 
    3976    "properties":  
    3977        {"street": "SAND CANYON 4", "color": "lime", "perpx": "0.796595", "perpy": "0.604514"} 
    3978 },   
    3979 { 
    3980    "type": "Feature", 
    3981    "id": "73 N 21.1", 
    3982    "geometry": 
    3983        { 
    3984         "type": "Point", 
    3985         "coordinates": [-117.822056,33.620522] 
    3986        }, 
    3987    "properties":  
    3988        {"street": "SAND CANYON 5", "color": "lime", "perpx": "0.796595", "perpy": "0.604514"} 
    3989 },   
    3990 { 
    3991    "type": "Feature", 
    3992    "id": "73 N 21.5", 
    3993    "geometry": 
    3994        { 
    3995         "type": "Point", 
    3996         "coordinates": [-117.828171,33.623392] 
    3997        }, 
    3998    "properties":  
    3999        {"street": "NEWPORT COAST 1", "color": "lime", "perpx": "0.622803", "perpy": "0.782378"} 
    4000 },   
    4001 { 
    4002    "type": "Feature", 
    4003    "id": "73 N 21.8", 
    4004    "geometry": 
    4005        { 
    4006         "type": "Point", 
    4007         "coordinates": [-117.831907,33.626366] 
    4008        }, 
    4009    "properties":  
    4010        {"street": "NEWPORT COAST 2", "color": "lime", "perpx": "0.622803", "perpy": "0.782378"} 
    4011 },   
    4012 { 
    4013    "type": "Feature", 
    4014    "id": "73 N 22.2", 
    4015    "geometry": 
    4016        { 
    4017         "type": "Point", 
    4018         "coordinates": [-117.837358,33.629759] 
    4019        }, 
    4020    "properties":  
    4021        {"street": "S OF BONITA", "color": "lime", "perpx": "0.284483", "perpy": "0.958681"} 
    4022 },   
    4023 { 
    4024    "type": "Feature", 
    4025    "id": "73 N 22.5", 
    4026    "geometry": 
    4027        { 
    4028         "type": "Point", 
    4029         "coordinates": [-117.842241,33.631208] 
    4030        }, 
    4031    "properties":  
    4032        {"street": "BONITA 1", "color": "lime", "perpx": "0.292278", "perpy": "0.956333"} 
    4033 },   
    4034 { 
    4035    "type": "Feature", 
    4036    "id": "73 N 22.8", 
    4037    "geometry": 
    4038        { 
    4039         "type": "Point", 
    4040         "coordinates": [-117.847113,33.632697] 
    4041        }, 
    4042    "properties":  
    4043        {"street": "BONITA 2", "color": "lime", "perpx": "0.292278", "perpy": "0.956333"} 
    4044 },   
    4045 { 
    4046    "type": "Feature", 
    4047    "id": "73 N 23.2", 
    4048    "geometry": 
    4049        { 
    4050         "type": "Point", 
    4051         "coordinates": [-117.852976,33.635664] 
    4052        }, 
    4053    "properties":  
    4054        {"street": "N OF BONITA", "color": "lime", "perpx": "0.589389", "perpy": "0.80785"} 
    4055 },   
    4056 { 
    4057    "type": "Feature", 
    4058    "id": "73 N 23.5", 
    4059    "geometry": 
    4060        { 
    4061         "type": "Point", 
    4062         "coordinates": [-117.856881,33.638513] 
    4063        }, 
    4064    "properties":  
    4065        {"street": "BISON 1", "color": "lime", "perpx": "0.800308", "perpy": "0.599589"} 
    4066 },   
    4067 { 
    4068    "type": "Feature", 
    4069    "id": "73 N 23.9", 
    4070    "geometry": 
    4071        { 
    4072         "type": "Point", 
    4073         "coordinates": [-117.859875,33.643656] 
    4074        }, 
    4075    "properties":  
    4076        {"street": "BISON 2", "color": "lime", "perpx": "0.976131", "perpy": "0.217185"} 
    4077 },   
    4078 { 
    4079    "type": "Feature", 
    4080    "id": "73 N 24.1", 
    4081    "geometry": 
    4082        { 
    4083         "type": "Point", 
    4084         "coordinates": [-117.860508,33.646501] 
    4085        }, 
    4086    "properties":  
    4087        {"street": "MACARTHUR 2", "color": "lime", "perpx": "0.976131", "perpy": "0.217185"} 
    4088 },   
    4089 { 
    4090    "type": "Feature", 
    4091    "id": "73 N 24.4", 
    4092    "geometry": 
    4093        { 
    4094         "type": "Point", 
    4095         "coordinates": [-117.8614,33.650823] 
    4096        }, 
    4097    "properties":  
    4098        {"street": "UNIVERSITY SOUT", "color": "lime", "perpx": "0.853282", "perpy": "0.52145"} 
    4099 },   
    4100 { 
    4101    "type": "Feature", 
    4102    "id": "73 N 24.72", 
    4103    "geometry": 
    4104        { 
    4105         "type": "Point", 
    4106         "coordinates": [-117.864027,33.654806] 
    4107        }, 
    4108    "properties":  
    4109        {"street": "JAMBOREE 1", "color": "lime", "perpx": "0.635445", "perpy": "0.772146"} 
    4110 },   
    4111 { 
    4112    "type": "Feature", 
    4113    "id": "73 N 24.78", 
    4114    "geometry": 
    4115        { 
    4116         "type": "Point", 
    4117         "coordinates": [-117.86475,33.655401] 
    4118        }, 
    4119    "properties":  
    4120        {"street": "JAMBOREE 2", "color": "lime", "perpx": "0.635445", "perpy": "0.772146"} 
    4121 },   
    4122 { 
    4123    "type": "Feature", 
    4124    "id": "73 N 25.25", 
    4125    "geometry": 
    4126        { 
    4127         "type": "Point", 
    4128         "coordinates": [-117.870921,33.659804] 
    4129        }, 
    4130    "properties":  
    4131        {"street": "ORCHID", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
    4132 },   
    4133 { 
    4134    "type": "Feature", 
    4135    "id": "73 N 25.7", 
    4136    "geometry": 
    4137        { 
    4138         "type": "Point", 
    4139         "coordinates": [-117.87634,33.663519] 
    4140        }, 
    4141    "properties":  
    4142        {"street": "CAMPUS", "color": "lime", "perpx": "0.565437", "perpy": "0.824792"} 
    4143 },   
    4144 { 
    4145    "type": "Feature", 
    4146    "id": "73 N 26.3", 
    4147    "geometry": 
    4148        { 
    4149         "type": "Point", 
    4150         "coordinates": [-117.883175,33.67012] 
    4151        }, 
    4152    "properties":  
    4153        {"street": "S OF 55", "color": "lime", "perpx": "0.756677", "perpy": "0.653789"} 
    4154 },   
    4155 { 
    4156    "type": "Feature", 
    4157    "id": "73 N 26.7", 
    4158    "geometry": 
    4159        { 
    4160         "type": "Point", 
    4161         "coordinates": [-117.887299,33.674893] 
    4162        }, 
    4163    "properties":  
    4164        {"street": "N OF 55", "color": "lime", "perpx": "0.76071", "perpy": "0.649092"} 
    4165 },   
    4166 { 
    4167    "type": "Feature", 
    4168    "id": "73 N 27.4", 
    4169    "geometry": 
    4170        { 
    4171         "type": "Point", 
    4172         "coordinates": [-117.894515,33.683052] 
    4173        }, 
    4174    "properties":  
    4175        {"street": "BEAR 2", "color": "lime", "perpx": "0.737613", "perpy": "0.675223"} 
    4176 },   
    4177 { 
    4178    "type": "Feature", 
    4179    "id": "73 N 27.72", 
    4180    "geometry": 
    4181        { 
    4182         "type": "Point", 
    4183         "coordinates": [-117.897754,33.686594] 
     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", 
     1958   "id": "405 N 0.93", 
     1959   "geometry": 
     1960       { 
     1961        "type": "Point", 
     1962        "coordinates": [-117.746598,33.64809] 
     1963       }, 
     1964   "properties":  
     1965       {"street": "IRVINE C1", "color": "lime", "perpx": "0.282096", "perpy": "0.959386"} 
     1966},   
     1967{ 
     1968   "type": "Feature", 
     1969   "id": "405 N 1.11", 
     1970   "geometry": 
     1971       { 
     1972        "type": "Point", 
     1973        "coordinates": [-117.74955,33.648958] 
     1974       }, 
     1975   "properties":  
     1976       {"street": "IRVINE C2", "color": "lime", "perpx": "0", "perpy": "0"} 
     1977},   
     1978{ 
     1979   "type": "Feature", 
     1980   "id": "405 N 1.57", 
     1981   "geometry": 
     1982       { 
     1983        "type": "Point", 
     1984        "coordinates": [-117.757101,33.651141] 
     1985       }, 
     1986   "properties":  
     1987       {"street": "N OF 133", "color": "lime", "perpx": "0.202053", "perpy": "0.979375"} 
     1988},   
     1989{ 
     1990   "type": "Feature", 
     1991   "id": "405 N 1.93", 
     1992   "geometry": 
     1993       { 
     1994        "type": "Point", 
     1995        "coordinates": [-117.763194,33.652204] 
     1996       }, 
     1997   "properties":  
     1998       {"street": "S OF 133", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"} 
     1999},   
     2000{ 
     2001   "type": "Feature", 
     2002   "id": "405 N 2.35", 
     2003   "geometry": 
     2004       { 
     2005        "type": "Point", 
     2006        "coordinates": [-117.770173,33.65368] 
     2007       }, 
     2008   "properties":  
     2009       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"} 
     2010},   
     2011{ 
     2012   "type": "Feature", 
     2013   "id": "405 N 3.04", 
     2014   "geometry": 
     2015       { 
     2016        "type": "Point", 
     2017        "coordinates": [-117.780107,33.659163] 
     2018       }, 
     2019   "properties":  
     2020       {"street": "SAND CANYON", "color": "lime", "perpx": "0", "perpy": "0"} 
     2021},   
     2022{ 
     2023   "type": "Feature", 
     2024   "id": "405 N 3.31", 
     2025   "geometry": 
     2026       { 
     2027        "type": "Point", 
     2028        "coordinates": [-117.784046,33.661319] 
     2029       }, 
     2030   "properties":  
     2031       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "0.480131", "perpy": "0.877197"} 
     2032},   
     2033{ 
     2034   "type": "Feature", 
     2035   "id": "405 N 3.86", 
     2036   "geometry": 
     2037       { 
     2038        "type": "Point", 
     2039        "coordinates": [-117.793258,33.663379] 
     2040       }, 
     2041   "properties":  
     2042       {"street": "JEFFREY 1", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
     2043},   
     2044{ 
     2045   "type": "Feature", 
     2046   "id": "405 N 4.03", 
     2047   "geometry": 
     2048       { 
     2049        "type": "Point", 
     2050        "coordinates": [-117.796176,33.663798] 
     2051       }, 
     2052   "properties":  
     2053       {"street": "JEFFREY 2", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
     2054},   
     2055{ 
     2056   "type": "Feature", 
     2057   "id": "405 N 5.01", 
     2058   "geometry": 
     2059       { 
     2060        "type": "Point", 
     2061        "coordinates": [-117.812902,33.666407] 
     2062       }, 
     2063   "properties":  
     2064       {"street": "YALE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
     2065},   
     2066{ 
     2067   "type": "Feature", 
     2068   "id": "405 N 5.05", 
     2069   "geometry": 
     2070       { 
     2071        "type": "Point", 
     2072        "coordinates": [-117.813561,33.66659] 
     2073       }, 
     2074   "properties":  
     2075       {"street": "SPRUCE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
     2076},   
     2077{ 
     2078   "type": "Feature", 
     2079   "id": "405 N 5.55", 
     2080   "geometry": 
     2081       { 
     2082        "type": "Point", 
     2083        "coordinates": [-117.821657,33.669218] 
     2084       }, 
     2085   "properties":  
     2086       {"street": "CULVER 1", "color": "lime", "perpx": "0.332642", "perpy": "0.943053"} 
     2087},   
     2088{ 
     2089   "type": "Feature", 
     2090   "id": "405 N 5.74", 
     2091   "geometry": 
     2092       { 
     2093        "type": "Point", 
     2094        "coordinates": [-117.824699,33.670291] 
     2095       }, 
     2096   "properties":  
     2097       {"street": "CULVER 2", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
     2098},   
     2099{ 
     2100   "type": "Feature", 
     2101   "id": "405 N 6.21", 
     2102   "geometry": 
     2103       { 
     2104        "type": "Point", 
     2105        "coordinates": [-117.832271,33.672851] 
     2106       }, 
     2107   "properties":  
     2108       {"street": "HARVARD", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
     2109},   
     2110{ 
     2111   "type": "Feature", 
     2112   "id": "405 N 6.85", 
     2113   "geometry": 
     2114       { 
     2115        "type": "Point", 
     2116        "coordinates": [-117.842488,33.676465] 
     2117       }, 
     2118   "properties":  
     2119       {"street": "JAMBOREE1", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
     2120},   
     2121{ 
     2122   "type": "Feature", 
     2123   "id": "405 N 7.07", 
     2124   "geometry": 
     2125       { 
     2126        "type": "Point", 
     2127        "coordinates": [-117.845871,33.677945] 
     2128       }, 
     2129   "properties":  
     2130       {"street": "JAMBOREE2", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
     2131},   
     2132{ 
     2133   "type": "Feature", 
     2134   "id": "405 N 7.73", 
     2135   "geometry": 
     2136       { 
     2137        "type": "Point", 
     2138        "coordinates": [-117.85598,33.682442] 
     2139       }, 
     2140   "properties":  
     2141       {"street": "MACARTHUR 1", "color": "lime", "perpx": "0.408917", "perpy": "0.912572"} 
     2142},   
     2143{ 
     2144   "type": "Feature", 
     2145   "id": "405 N 8.26", 
     2146   "geometry": 
     2147       { 
     2148        "type": "Point", 
     2149        "coordinates": [-117.864081,33.686072] 
     2150       }, 
     2151   "properties":  
     2152       {"street": "AIRPORT", "color": "lime", "perpx": "0.321527", "perpy": "0.9469"} 
     2153},   
     2154{ 
     2155   "type": "Feature", 
     2156   "id": "405 N 8.4", 
     2157   "geometry": 
     2158       { 
     2159        "type": "Point", 
     2160        "coordinates": [-117.866348,33.686795] 
     2161       }, 
     2162   "properties":  
     2163       {"street": "RED HILL", "color": "lime", "perpx": "0.126754", "perpy": "0.991934"} 
     2164},   
     2165{ 
     2166   "type": "Feature", 
     2167   "id": "405 N 9.46", 
     2168   "geometry": 
     2169       { 
     2170        "type": "Point", 
     2171        "coordinates": [-117.884653,33.687523] 
     2172       }, 
     2173   "properties":  
     2174       {"street": "BRISTOL 1", "color": "lime", "perpx": "0.0", "perpy": "1.0"} 
     2175},   
     2176{ 
     2177   "type": "Feature", 
     2178   "id": "405 N 9.65", 
     2179   "geometry": 
     2180       { 
     2181        "type": "Point", 
     2182        "coordinates": [-117.887956,33.687523] 
     2183       }, 
     2184   "properties":  
     2185       {"street": "BRISTOL 2", "color": "lime", "perpx": "0.0", "perpy": "1.0"} 
     2186},   
     2187{ 
     2188   "type": "Feature", 
     2189   "id": "405 N 10.9", 
     2190   "geometry": 
     2191       { 
     2192        "type": "Point", 
     2193        "coordinates": [-117.909664,33.688017] 
    41842194       }, 
    41852195   "properties":  
     
    41882198{ 
    41892199   "type": "Feature", 
    4190    "id": "73 S 10.59", 
    4191    "geometry": 
    4192        { 
    4193         "type": "Point", 
    4194         "coordinates": [-117.674915,33.545627] 
    4195        }, 
    4196    "properties":  
    4197        {"street": "CAPISTRANO", "color": "lime", "perpx": "-0.969543", "perpy": "-0.244923"} 
    4198 },   
    4199 { 
    4200    "type": "Feature", 
    4201    "id": "73 S 10.9", 
    4202    "geometry": 
    4203        { 
    4204         "type": "Point", 
    4205         "coordinates": [-117.676025,33.550021] 
    4206        }, 
    4207    "properties":  
    4208        {"street": "SORRENTO", "color": "lime", "perpx": "-0.942619", "perpy": "-0.333871"} 
    4209 },   
    4210 { 
    4211    "type": "Feature", 
    4212    "id": "73 S 11.22", 
    4213    "geometry": 
    4214        { 
    4215         "type": "Point", 
    4216         "coordinates": [-117.677553,33.554335] 
    4217        }, 
    4218    "properties":  
    4219        {"street": "CABOT", "color": "lime", "perpx": "-0.942619", "perpy": "-0.333871"} 
    4220 },   
    4221 { 
    4222    "type": "Feature", 
    4223    "id": "73 S 11.64", 
    4224    "geometry": 
    4225        { 
    4226         "type": "Point", 
    4227         "coordinates": [-117.683347,33.557463] 
    4228        }, 
    4229    "properties":  
    4230        {"street": "GREENFIELD 1", "color": "lime", "perpx": "-0.204557", "perpy": "-0.978855"} 
    4231 },   
    4232 { 
    4233    "type": "Feature", 
    4234    "id": "73 S 12", 
    4235    "geometry": 
    4236        { 
    4237         "type": "Point", 
    4238         "coordinates": [-117.689492,33.558786] 
    4239        }, 
    4240    "properties":  
    4241        {"street": "GREENFIELD 2", "color": "lime", "perpx": "-0.452101", "perpy": "-0.891967"} 
    4242 },   
    4243 { 
    4244    "type": "Feature", 
    4245    "id": "73 S 12.31", 
    4246    "geometry": 
    4247        { 
    4248         "type": "Point", 
    4249         "coordinates": [-117.693516,33.56161] 
    4250        }, 
    4251    "properties":  
    4252        {"street": "ROCKRIDGE", "color": "lime", "perpx": "-0.799245", "perpy": "-0.601005"} 
    4253 },   
    4254 { 
    4255    "type": "Feature", 
    4256    "id": "73 S 12.52", 
    4257    "geometry": 
    4258        { 
    4259         "type": "Point", 
    4260         "coordinates": [-117.695429,33.564154] 
    4261        }, 
    4262    "properties":  
    4263        {"street": "WESTRIDGE", "color": "lime", "perpx": "-0.799245", "perpy": "-0.601005"} 
    4264 },   
    4265 { 
    4266    "type": "Feature", 
    4267    "id": "73 S 12.83", 
    4268    "geometry": 
    4269        { 
    4270         "type": "Point", 
    4271         "coordinates": [-117.698836,33.567532] 
    4272        }, 
    4273    "properties":  
    4274        {"street": "MOULTON", "color": "lime", "perpx": "-0.62128", "perpy": "-0.783589"} 
    4275 },   
    4276 { 
    4277    "type": "Feature", 
    4278    "id": "73 S 13.14", 
    4279    "geometry": 
    4280        { 
    4281         "type": "Point", 
    4282         "coordinates": [-117.702926,33.570836] 
    4283        }, 
    4284    "properties":  
    4285        {"street": "PACIFIC PARK", "color": "lime", "perpx": "-0.631459", "perpy": "-0.775409"} 
    4286 },   
    4287 { 
    4288    "type": "Feature", 
    4289    "id": "73 S 13.38", 
    4290    "geometry": 
    4291        { 
    4292         "type": "Point", 
    4293         "coordinates": [-117.706028,33.573158] 
    4294        }, 
    4295    "properties":  
    4296        {"street": "LA PAZ  1", "color": "lime", "perpx": "-0.587164", "perpy": "-0.809468"} 
    4297 },   
    4298 { 
    4299    "type": "Feature", 
    4300    "id": "73 S 13.7", 
    4301    "geometry": 
    4302        { 
    4303         "type": "Point", 
    4304         "coordinates": [-117.71075,33.575244] 
    4305        }, 
    4306    "properties":  
    4307        {"street": "ALICIA", "color": "lime", "perpx": "-0.354891", "perpy": "-0.934908"} 
    4308 },   
    4309 { 
    4310    "type": "Feature", 
    4311    "id": "73 S 13.96", 
    4312    "geometry": 
    4313        { 
    4314         "type": "Point", 
    4315         "coordinates": [-117.714799,33.576781] 
    4316        }, 
    4317    "properties":  
    4318        {"street": "ALISO 1", "color": "lime", "perpx": "-0.354891", "perpy": "-0.934908"} 
    4319 },   
    4320 { 
    4321    "type": "Feature", 
    4322    "id": "73 S 14.4", 
    4323    "geometry": 
    4324        { 
    4325         "type": "Point", 
    4326         "coordinates": [-117.721195,33.580299] 
    4327        }, 
    4328    "properties":  
    4329        {"street": "ALISO 3", "color": "lime", "perpx": "-0.578216", "perpy": "-0.815884"} 
    4330 },   
    4331 { 
    4332    "type": "Feature", 
    4333    "id": "73 S 14.7", 
    4334    "geometry": 
    4335        { 
    4336         "type": "Point", 
    4337         "coordinates": [-117.725184,33.583126] 
    4338        }, 
    4339    "properties":  
    4340        {"street": "ALISO 4", "color": "lime", "perpx": "-0.56863", "perpy": "-0.822593"} 
    4341 },   
    4342 { 
    4343    "type": "Feature", 
    4344    "id": "73 S 14.95", 
    4345    "geometry": 
    4346        { 
    4347         "type": "Point", 
    4348         "coordinates": [-117.728504,33.585421] 
    4349        }, 
    4350    "properties":  
    4351        {"street": "LAGUNA HILLS", "color": "lime", "perpx": "-0.332032", "perpy": "-0.943268"} 
    4352 },   
    4353 { 
    4354    "type": "Feature", 
    4355    "id": "73 S 15.26", 
    4356    "geometry": 
    4357        { 
    4358         "type": "Point", 
    4359         "coordinates": [-117.733325,33.587118] 
    4360        }, 
    4361    "properties":  
    4362        {"street": "GLENWOOD 1", "color": "lime", "perpx": "-0.332032", "perpy": "-0.943268"} 
    4363 },   
    4364 { 
    4365    "type": "Feature", 
    4366    "id": "73 S 15.7", 
    4367    "geometry": 
    4368        { 
    4369         "type": "Point", 
    4370         "coordinates": [-117.740964,33.587924] 
    4371        }, 
    4372    "properties":  
    4373        {"street": "EL TORO 1", "color": "lime", "perpx": "-0.173867", "perpy": "-0.984769"} 
    4374 },   
    4375 { 
    4376    "type": "Feature", 
    4377    "id": "73 S 15.96", 
    4378    "geometry": 
    4379        { 
    4380         "type": "Point", 
    4381         "coordinates": [-117.745361,33.588855] 
    4382        }, 
    4383    "properties":  
    4384        {"street": "EL TORO 2", "color": "lime", "perpx": "-0.317685", "perpy": "-0.948196"} 
    4385 },   
    4386 { 
    4387    "type": "Feature", 
    4388    "id": "73 S 16.25", 
    4389    "geometry": 
    4390        { 
    4391         "type": "Point", 
    4392         "coordinates": [-117.750156,33.590342] 
    4393        }, 
    4394    "properties":  
    4395        {"street": "EL TORO 3", "color": "lime", "perpx": "-0.192332", "perpy": "-0.98133"} 
    4396 },   
    4397 { 
    4398    "type": "Feature", 
    4399    "id": "73 S 16.59", 
    4400    "geometry": 
    4401        { 
    4402         "type": "Point", 
    4403         "coordinates": [-117.755882,33.59118] 
    4404        }, 
    4405    "properties":  
    4406        {"street": "EL TORO 4", "color": "lime", "perpx": "-0.141421", "perpy": "-0.989949"} 
    4407 },   
    4408 { 
    4409    "type": "Feature", 
    4410    "id": "73 S 16.98", 
    4411    "geometry": 
    4412        { 
    4413         "type": "Point", 
    4414         "coordinates": [-117.761968,33.593514] 
    4415        }, 
    4416    "properties":  
    4417        {"street": "RTE 133 3", "color": "lime", "perpx": "-0.569484", "perpy": "-0.822002"} 
    4418 },   
    4419 { 
    4420    "type": "Feature", 
    4421    "id": "73 S 17.2", 
    4422    "geometry": 
    4423        { 
    4424         "type": "Point", 
    4425         "coordinates": [-117.764927,33.595564] 
    4426        }, 
    4427    "properties":  
    4428        {"street": "RTE 133 4", "color": "lime", "perpx": "-0.569484", "perpy": "-0.822002"} 
    4429 },   
    4430 { 
    4431    "type": "Feature", 
    4432    "id": "73 S 17.62", 
    4433    "geometry": 
    4434        { 
    4435         "type": "Point", 
    4436         "coordinates": [-117.771217,33.59849] 
    4437        }, 
    4438    "properties":  
    4439        {"street": "S OF PM 18", "color": "lime", "perpx": "-0.12791", "perpy": "-0.991786"} 
    4440 },   
    4441 { 
    4442    "type": "Feature", 
    4443    "id": "73 S 17.95", 
    4444    "geometry": 
    4445        { 
    4446         "type": "Point", 
    4447         "coordinates": [-117.776885,33.599221] 
    4448        }, 
    4449    "properties":  
    4450        {"street": "AT PM 18", "color": "lime", "perpx": "-0.12791", "perpy": "-0.991786"} 
    4451 },   
    4452 { 
    4453    "type": "Feature", 
    4454    "id": "73 S 18.3", 
    4455    "geometry": 
    4456        { 
    4457         "type": "Point", 
    4458         "coordinates": [-117.78232,33.601523] 
    4459        }, 
    4460    "properties":  
    4461        {"street": "WILDLIFE", "color": "lime", "perpx": "-0.168311", "perpy": "-0.985734"} 
    4462 },   
    4463 { 
    4464    "type": "Feature", 
    4465    "id": "73 S 18.59", 
    4466    "geometry": 
    4467        { 
    4468         "type": "Point", 
    4469         "coordinates": [-117.787181,33.602353] 
    4470        }, 
    4471    "properties":  
    4472        {"street": "CATALINA 1", "color": "lime", "perpx": "-0.168311", "perpy": "-0.985734"} 
    4473 },   
    4474 { 
    4475    "type": "Feature", 
    4476    "id": "73 S 19.5", 
    4477    "geometry": 
    4478        { 
    4479         "type": "Point", 
    4480         "coordinates": [-117.801595,33.607237] 
    4481        }, 
    4482    "properties":  
    4483        {"street": "CATALINA 2", "color": "lime", "perpx": "-0.309175", "perpy": "-0.951005"} 
    4484 },   
    4485 { 
    4486    "type": "Feature", 
    4487    "id": "73 S 19.8", 
    4488    "geometry": 
    4489        { 
    4490         "type": "Point", 
    4491         "coordinates": [-117.806455,33.608817] 
    4492        }, 
    4493    "properties":  
    4494        {"street": "CATALINA 3", "color": "lime", "perpx": "-0.309175", "perpy": "-0.951005"} 
    4495 },   
    4496 { 
    4497    "type": "Feature", 
    4498    "id": "73 S 20.2", 
    4499    "geometry": 
    4500        { 
    4501         "type": "Point", 
    4502         "coordinates": [-117.813251,33.610123] 
    4503        }, 
    4504    "properties":  
    4505        {"street": "SAND CANYON 1", "color": "lime", "perpx": "-0.472863", "perpy": "-0.881136"} 
    4506 },   
    4507 { 
    4508    "type": "Feature", 
    4509    "id": "73 S 20.4", 
    4510    "geometry": 
    4511        { 
    4512         "type": "Point", 
    4513         "coordinates": [-117.816184,33.611697] 
    4514        }, 
    4515    "properties":  
    4516        {"street": "SAND CANYON 2", "color": "lime", "perpx": "-0.472863", "perpy": "-0.881136"} 
    4517 },   
    4518 { 
    4519    "type": "Feature", 
    4520    "id": "73 S 20.6", 
    4521    "geometry": 
    4522        { 
    4523         "type": "Point", 
    4524         "coordinates": [-117.8183,33.614005] 
    4525        }, 
    4526    "properties":  
    4527        {"street": "SAND CANYON 3", "color": "lime", "perpx": "-0.879015", "perpy": "-0.476793"} 
    4528 },   
    4529 { 
    4530    "type": "Feature", 
    4531    "id": "73 S 20.8", 
    4532    "geometry": 
    4533        { 
    4534         "type": "Point", 
    4535         "coordinates": [-117.819745,33.616669] 
    4536        }, 
    4537    "properties":  
    4538        {"street": "SAND CANYON 4", "color": "lime", "perpx": "-0.795225", "perpy": "-0.606314"} 
    4539 },   
    4540 { 
    4541    "type": "Feature", 
    4542    "id": "73 S 21.1", 
    4543    "geometry": 
    4544        { 
    4545         "type": "Point", 
    4546         "coordinates": [-117.822441,33.620205] 
    4547        }, 
    4548    "properties":  
    4549        {"street": "SAND CANYON 5", "color": "lime", "perpx": "-0.795225", "perpy": "-0.606314"} 
    4550 },   
    4551 { 
    4552    "type": "Feature", 
    4553    "id": "73 S 21.5", 
    4554    "geometry": 
    4555        { 
    4556         "type": "Point", 
    4557         "coordinates": [-117.828338,33.623005] 
    4558        }, 
    4559    "properties":  
    4560        {"street": "NEWPORT COAST 1", "color": "lime", "perpx": "-0.61327", "perpy": "-0.789873"} 
    4561 },   
    4562 { 
    4563    "type": "Feature", 
    4564    "id": "73 S 21.8", 
    4565    "geometry": 
    4566        { 
    4567         "type": "Point", 
    4568         "coordinates": [-117.832171,33.625981] 
    4569        }, 
    4570    "properties":  
    4571        {"street": "NEWPORT COAST 2", "color": "lime", "perpx": "-0.61327", "perpy": "-0.789873"} 
    4572 },   
    4573 { 
    4574    "type": "Feature", 
    4575    "id": "73 S 22.2", 
    4576    "geometry": 
    4577        { 
    4578         "type": "Point", 
    4579         "coordinates": [-117.837662,33.629475] 
    4580        }, 
    4581    "properties":  
    4582        {"street": "S OF BONITA", "color": "lime", "perpx": "-0.283058", "perpy": "-0.959103"} 
    4583 },   
    4584 { 
    4585    "type": "Feature", 
    4586    "id": "73 S 22.5", 
    4587    "geometry": 
    4588        { 
    4589         "type": "Point", 
    4590         "coordinates": [-117.842609,33.630935] 
    4591        }, 
    4592    "properties":  
    4593        {"street": "BONITA 1", "color": "lime", "perpx": "-0.294979", "perpy": "-0.955504"} 
    4594 },   
    4595 { 
    4596    "type": "Feature", 
    4597    "id": "73 S 22.8", 
    4598    "geometry": 
    4599        { 
    4600         "type": "Point", 
    4601         "coordinates": [-117.847497,33.632444] 
    4602        }, 
    4603    "properties":  
    4604        {"street": "BONITA 2", "color": "lime", "perpx": "-0.294979", "perpy": "-0.955504"} 
    4605 },   
    4606 { 
    4607    "type": "Feature", 
    4608    "id": "73 S 23.2", 
    4609    "geometry": 
    4610        { 
    4611         "type": "Point", 
    4612         "coordinates": [-117.853396,33.635399] 
    4613        }, 
    4614    "properties":  
    4615        {"street": "N OF BONITA", "color": "lime", "perpx": "-0.600727", "perpy": "-0.799454"} 
    4616 },   
    4617 { 
    4618    "type": "Feature", 
    4619    "id": "73 S 23.5", 
    4620    "geometry": 
    4621        { 
    4622         "type": "Point", 
    4623         "coordinates": [-117.857266,33.638307] 
    4624        }, 
    4625    "properties":  
    4626        {"street": "BISON 1", "color": "lime", "perpx": "-0.780647", "perpy": "-0.624972"} 
    4627 },   
    4628 { 
    4629    "type": "Feature", 
    4630    "id": "73 S 23.7", 
    4631    "geometry": 
    4632        { 
    4633         "type": "Point", 
    4634         "coordinates": [-117.859193,33.640714] 
    4635        }, 
    4636    "properties":  
    4637        {"street": "MACARTHUR 1", "color": "lime", "perpx": "-0.924825", "perpy": "-0.380393"} 
    4638 },   
    4639 { 
    4640    "type": "Feature", 
    4641    "id": "73 S 23.9", 
    4642    "geometry": 
    4643        { 
    4644         "type": "Point", 
    4645         "coordinates": [-117.86032,33.643454] 
    4646        }, 
    4647    "properties":  
    4648        {"street": "BISON 2", "color": "lime", "perpx": "-0.974437", "perpy": "-0.22466"} 
    4649 },   
    4650 { 
    4651    "type": "Feature", 
    4652    "id": "73 S 24.1", 
    4653    "geometry": 
    4654        { 
    4655         "type": "Point", 
    4656         "coordinates": [-117.860978,33.646308] 
    4657        }, 
    4658    "properties":  
    4659        {"street": "MACARTHUR 2", "color": "lime", "perpx": "-0.977116", "perpy": "-0.212707"} 
    4660 },   
    4661 { 
    4662    "type": "Feature", 
    4663    "id": "73 S 24.4", 
    4664    "geometry": 
    4665        { 
    4666         "type": "Point", 
    4667         "coordinates": [-117.861933,33.650695] 
    4668        }, 
    4669    "properties":  
    4670        {"street": "UNIVERSITY SOUT", "color": "lime", "perpx": "-0.977116", "perpy": "-0.212707"} 
    4671 },   
    4672 { 
    4673    "type": "Feature", 
    4674    "id": "73 S 24.72", 
    4675    "geometry": 
    4676        { 
    4677         "type": "Point", 
    4678         "coordinates": [-117.864335,33.65462] 
    4679        }, 
    4680    "properties":  
    4681        {"street": "JAMBOREE 1", "color": "lime", "perpx": "-0.633861", "perpy": "-0.773447"} 
    4682 },   
    4683 { 
    4684    "type": "Feature", 
    4685    "id": "73 S 24.78", 
    4686    "geometry": 
    4687        { 
    4688         "type": "Point", 
    4689         "coordinates": [-117.865011,33.655174] 
    4690        }, 
    4691    "properties":  
    4692        {"street": "JAMBOREE 2", "color": "lime", "perpx": "-0.633861", "perpy": "-0.773447"} 
    4693 },   
    4694 { 
    4695    "type": "Feature", 
    4696    "id": "73 S 25.25", 
    4697    "geometry": 
    4698        { 
    4699         "type": "Point", 
    4700         "coordinates": [-117.871215,33.659515] 
    4701        }, 
    4702    "properties":  
    4703        {"street": "ORCHID", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
    4704 },   
    4705 { 
    4706    "type": "Feature", 
    4707    "id": "73 S 25.7", 
    4708    "geometry": 
    4709        { 
    4710         "type": "Point", 
    4711         "coordinates": [-117.876633,33.66324] 
    4712        }, 
    4713    "properties":  
    4714        {"street": "CAMPUS", "color": "lime", "perpx": "-0.566542", "perpy": "-0.824033"} 
    4715 },   
    4716 { 
    4717    "type": "Feature", 
    4718    "id": "73 S 26.3", 
    4719    "geometry": 
    4720        { 
    4721         "type": "Point", 
    4722         "coordinates": [-117.88342,33.669908] 
    4723        }, 
    4724    "properties":  
    4725        {"street": "S OF 55", "color": "lime", "perpx": "-0.750726", "perpy": "-0.660614"} 
    4726 },   
    4727 { 
    4728    "type": "Feature", 
    4729    "id": "73 S 26.7", 
    4730    "geometry": 
    4731        { 
    4732         "type": "Point", 
    4733         "coordinates": [-117.887584,33.67464] 
    4734        }, 
    4735    "properties":  
    4736        {"street": "N OF 55", "color": "lime", "perpx": "-0.742508", "perpy": "-0.669837"} 
    4737 },   
    4738 { 
    4739    "type": "Feature", 
    4740    "id": "73 S 27.2", 
    4741    "geometry": 
    4742        { 
    4743         "type": "Point", 
    4744         "coordinates": [-117.892743,33.68058] 
    4745        }, 
    4746    "properties":  
    4747        {"street": "BEAR 1", "color": "lime", "perpx": "-0.749261", "perpy": "-0.662275"} 
    4748 },   
    4749 { 
    4750    "type": "Feature", 
    4751    "id": "73 S 27.72", 
    4752    "geometry": 
    4753        { 
    4754         "type": "Point", 
    4755         "coordinates": [-117.898045,33.686456] 
     2200   "id": "405 N 11.4", 
     2201   "geometry": 
     2202       { 
     2203        "type": "Point", 
     2204        "coordinates": [-117.918196,33.688872] 
     2205       }, 
     2206   "properties":  
     2207       {"street": "HARBOR 1", "color": "lime", "perpx": "0", "perpy": "0"} 
     2208},   
     2209{ 
     2210   "type": "Feature", 
     2211   "id": "405 N 12.16", 
     2212   "geometry": 
     2213       { 
     2214        "type": "Point", 
     2215        "coordinates": [-117.930032,33.693692] 
     2216       }, 
     2217   "properties":  
     2218       {"street": "HAMPSHIRE", "color": "lime", "perpx": "0.384478", "perpy": "0.923134"} 
     2219},   
     2220{ 
     2221   "type": "Feature", 
     2222   "id": "405 N 12.85", 
     2223   "geometry": 
     2224       { 
     2225        "type": "Point", 
     2226        "coordinates": [-117.940729,33.69816] 
     2227       }, 
     2228   "properties":  
     2229       {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"} 
     2230},   
     2231{ 
     2232   "type": "Feature", 
     2233   "id": "405 N 13.74", 
     2234   "geometry": 
     2235       { 
     2236        "type": "Point", 
     2237        "coordinates": [-117.953701,33.704947] 
     2238       }, 
     2239   "properties":  
     2240       {"street": "BROOKHUR1", "color": "lime", "perpx": "0.642988", "perpy": "0.765876"} 
     2241},   
     2242{ 
     2243   "type": "Feature", 
     2244   "id": "405 N 13.97", 
     2245   "geometry": 
     2246       { 
     2247        "type": "Point", 
     2248        "coordinates": [-117.956518,33.707312] 
     2249       }, 
     2250   "properties":  
     2251       {"street": "BROOKHUR2", "color": "lime", "perpx": "0", "perpy": "0"} 
     2252},   
     2253{ 
     2254   "type": "Feature", 
     2255   "id": "405 N 14.82", 
     2256   "geometry": 
     2257       { 
     2258        "type": "Point", 
     2259        "coordinates": [-117.966959,33.716027] 
     2260       }, 
     2261   "properties":  
     2262       {"street": "WARNER", "color": "lime", "perpx": "0.643494", "perpy": "0.765452"} 
     2263},   
     2264{ 
     2265   "type": "Feature", 
     2266   "id": "405 N 15.17", 
     2267   "geometry": 
     2268       { 
     2269        "type": "Point", 
     2270        "coordinates": [-117.971245,33.719628] 
     2271       }, 
     2272   "properties":  
     2273       {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.639234", "perpy": "0.769012"} 
     2274},   
     2275{ 
     2276   "type": "Feature", 
     2277   "id": "405 N 15.39", 
     2278   "geometry": 
     2279       { 
     2280        "type": "Point", 
     2281        "coordinates": [-117.973953,33.721879] 
     2282       }, 
     2283   "properties":  
     2284       {"street": "MAGNOLIA2", "color": "lime", "perpx": "0", "perpy": "0"} 
     2285},   
     2286{ 
     2287   "type": "Feature", 
     2288   "id": "405 N 16.52", 
     2289   "geometry": 
     2290       { 
     2291        "type": "Point", 
     2292        "coordinates": [-117.988885,33.732527] 
     2293       }, 
     2294   "properties":  
     2295       {"street": "BEACH 1", "color": "lime", "perpx": "0.571725", "perpy": "0.820445"} 
     2296},   
     2297{ 
     2298   "type": "Feature", 
     2299   "id": "405 N 16.76", 
     2300   "geometry": 
     2301       { 
     2302        "type": "Point", 
     2303        "coordinates": [-117.992088,33.734759] 
     2304       }, 
     2305   "properties":  
     2306       {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
     2307},   
     2308{ 
     2309   "type": "Feature", 
     2310   "id": "405 N 17.92", 
     2311   "geometry": 
     2312       { 
     2313        "type": "Point", 
     2314        "coordinates": [-118.00667,33.746378] 
     2315       }, 
     2316   "properties":  
     2317       {"street": "GOLDEN WEST", "color": "lime", "perpx": "0.642886", "perpy": "0.765962"} 
     2318},   
     2319{ 
     2320   "type": "Feature", 
     2321   "id": "405 N 19.24", 
     2322   "geometry": 
     2323       { 
     2324        "type": "Point", 
     2325        "coordinates": [-118.022852,33.759918] 
     2326       }, 
     2327   "properties":  
     2328       {"street": "WESTMINISTER", "color": "lime", "perpx": "0", "perpy": "0"} 
     2329},   
     2330{ 
     2331   "type": "Feature", 
     2332   "id": "405 S 0.77", 
     2333   "geometry": 
     2334       { 
     2335        "type": "Point", 
     2336        "coordinates": [-117.744091,33.647015] 
     2337       }, 
     2338   "properties":  
     2339       {"street": "IRVINE C1", "color": "lime", "perpx": "0", "perpy": "0"} 
     2340},   
     2341{ 
     2342   "type": "Feature", 
     2343   "id": "405 S 0.96", 
     2344   "geometry": 
     2345       { 
     2346        "type": "Point", 
     2347        "coordinates": [-117.747203,33.64795] 
     2348       }, 
     2349   "properties":  
     2350       {"street": "IRVINE C2", "color": "lime", "perpx": "-0.287743", "perpy": "-0.957708"} 
     2351},   
     2352{ 
     2353   "type": "Feature", 
     2354   "id": "405 S 1.57", 
     2355   "geometry": 
     2356       { 
     2357        "type": "Point", 
     2358        "coordinates": [-117.757205,33.650789] 
     2359       }, 
     2360   "properties":  
     2361       {"street": "N OF 133", "color": "lime", "perpx": "-0.197097", "perpy": "-0.980384"} 
     2362},   
     2363{ 
     2364   "type": "Feature", 
     2365   "id": "405 S 1.93", 
     2366   "geometry": 
     2367       { 
     2368        "type": "Point", 
     2369        "coordinates": [-117.763315,33.651837] 
     2370       }, 
     2371   "properties":  
     2372       {"street": "S OF 133", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"} 
     2373},   
     2374{ 
     2375   "type": "Feature", 
     2376   "id": "405 S 2.35", 
     2377   "geometry": 
     2378       { 
     2379        "type": "Point", 
     2380        "coordinates": [-117.770361,33.653346] 
     2381       }, 
     2382   "properties":  
     2383       {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"} 
     2384},   
     2385{ 
     2386   "type": "Feature", 
     2387   "id": "405 S 2.88", 
     2388   "geometry": 
     2389       { 
     2390        "type": "Point", 
     2391        "coordinates": [-117.778085,33.657534] 
     2392       }, 
     2393   "properties":  
     2394       {"street": "SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"} 
     2395},   
     2396{ 
     2397   "type": "Feature", 
     2398   "id": "405 S 3.31", 
     2399   "geometry": 
     2400       { 
     2401        "type": "Point", 
     2402        "coordinates": [-117.784273,33.660957] 
     2403       }, 
     2404   "properties":  
     2405       {"street": "N OF SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"} 
     2406},   
     2407{ 
     2408   "type": "Feature", 
     2409   "id": "405 S 3.84", 
     2410   "geometry": 
     2411       { 
     2412        "type": "Point", 
     2413        "coordinates": [-117.793047,33.66293] 
     2414       }, 
     2415   "properties":  
     2416       {"street": "JEFFREY 1", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"} 
     2417},   
     2418{ 
     2419   "type": "Feature", 
     2420   "id": "405 S 4.03", 
     2421   "geometry": 
     2422       { 
     2423        "type": "Point", 
     2424        "coordinates": [-117.796283,33.663404] 
     2425       }, 
     2426   "properties":  
     2427       {"street": "JEFFREY 2", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"} 
     2428},   
     2429{ 
     2430   "type": "Feature", 
     2431   "id": "405 S 5.01", 
     2432   "geometry": 
     2433       { 
     2434        "type": "Point", 
     2435        "coordinates": [-117.81298,33.666093] 
     2436       }, 
     2437   "properties":  
     2438       {"street": "YALE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"} 
     2439},   
     2440{ 
     2441   "type": "Feature", 
     2442   "id": "405 S 5.05", 
     2443   "geometry": 
     2444       { 
     2445        "type": "Point", 
     2446        "coordinates": [-117.813632,33.666292] 
     2447       }, 
     2448   "properties":  
     2449       {"street": "SPRUCE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"} 
     2450},   
     2451{ 
     2452   "type": "Feature", 
     2453   "id": "405 S 5.5", 
     2454   "geometry": 
     2455       { 
     2456        "type": "Point", 
     2457        "coordinates": [-117.820882,33.668738] 
     2458       }, 
     2459   "properties":  
     2460       {"street": "CULVER 1", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"} 
     2461},   
     2462{ 
     2463   "type": "Feature", 
     2464   "id": "405 S 5.69", 
     2465   "geometry": 
     2466       { 
     2467        "type": "Point", 
     2468        "coordinates": [-117.823958,33.669737] 
     2469       }, 
     2470   "properties":  
     2471       {"street": "CULVER 2", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"} 
     2472},   
     2473{ 
     2474   "type": "Feature", 
     2475   "id": "405 S 6.21", 
     2476   "geometry": 
     2477       { 
     2478        "type": "Point", 
     2479        "coordinates": [-117.832329,33.672571] 
     2480       }, 
     2481   "properties":  
     2482       {"street": "HARVARD", "color": "lime", "perpx": "-0.314462", "perpy": "-0.94927"} 
     2483},   
     2484{ 
     2485   "type": "Feature", 
     2486   "id": "405 S 6.8", 
     2487   "geometry": 
     2488       { 
     2489        "type": "Point", 
     2490        "coordinates": [-117.84179,33.675863] 
     2491       }, 
     2492   "properties":  
     2493       {"street": "JAMBOREE1", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"} 
     2494},   
     2495{ 
     2496   "type": "Feature", 
     2497   "id": "405 S 7.01", 
     2498   "geometry": 
     2499       { 
     2500        "type": "Point", 
     2501        "coordinates": [-117.845019,33.677283] 
     2502       }, 
     2503   "properties":  
     2504       {"street": "JAMBOREE2", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"} 
     2505},   
     2506{ 
     2507   "type": "Feature", 
     2508   "id": "405 S 7.69", 
     2509   "geometry": 
     2510       { 
     2511        "type": "Point", 
     2512        "coordinates": [-117.855449,33.681922] 
     2513       }, 
     2514   "properties":  
     2515       {"street": "MACARTHUR1", "color": "lime", "perpx": "-0.399707", "perpy": "-0.916643"} 
     2516},   
     2517{ 
     2518   "type": "Feature", 
     2519   "id": "405 S 8.26", 
     2520   "geometry": 
     2521       { 
     2522        "type": "Point", 
     2523        "coordinates": [-117.86423,33.685751] 
     2524       }, 
     2525   "properties":  
     2526       {"street": "AIRPORT", "color": "lime", "perpx": "-0.358185", "perpy": "-0.933651"} 
     2527},   
     2528{ 
     2529   "type": "Feature", 
     2530   "id": "405 S 8.4", 
     2531   "geometry": 
     2532       { 
     2533        "type": "Point", 
     2534        "coordinates": [-117.866474,33.686517] 
     2535       }, 
     2536   "properties":  
     2537       {"street": "RED HILL", "color": "lime", "perpx": "-0.259554", "perpy": "-0.965729"} 
     2538},   
     2539{ 
     2540   "type": "Feature", 
     2541   "id": "405 S 8.9", 
     2542   "geometry": 
     2543       { 
     2544        "type": "Point", 
     2545        "coordinates": [-117.875063,33.687245] 
     2546       }, 
     2547   "properties":  
     2548       {"street": "N OF 55", "color": "lime", "perpx": "0", "perpy": "0"} 
     2549},   
     2550{ 
     2551   "type": "Feature", 
     2552   "id": "405 S 9.54", 
     2553   "geometry": 
     2554       { 
     2555        "type": "Point", 
     2556        "coordinates": [-117.88618,33.687251] 
     2557       }, 
     2558   "properties":  
     2559       {"street": "BRISTOL 1", "color": "lime", "perpx": "-0.013748", "perpy": "-0.999905"} 
     2560},   
     2561{ 
     2562   "type": "Feature", 
     2563   "id": "405 S 10.28", 
     2564   "geometry": 
     2565       { 
     2566        "type": "Point", 
     2567        "coordinates": [-117.899035,33.68748] 
    47562568       }, 
    47572569   "properties":  
    47582570       {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
    47592571},   
    4760  
    4761 { 
    4762    "type": "Feature", 
    4763    "id": "91 E 0.45", 
    4764    "geometry": 
    4765        { 
    4766         "type": "Point", 
    4767         "coordinates": [-118.034919,33.85912] 
    4768        }, 
    4769    "properties":  
    4770        {"street": "MAGNOLIA", "color": "lime", "perpx": "-0.383803", "perpy": "-0.923415"} 
    4771 },   
    4772 { 
    4773    "type": "Feature", 
    4774    "id": "91 E 0.6", 
    4775    "geometry": 
    4776        { 
    4777         "type": "Point", 
    4778         "coordinates": [-118.032578,33.858147] 
    4779        }, 
    4780    "properties":  
    4781        {"street": "ORANGETHORPE", "color": "lime", "perpx": "0", "perpy": "0"} 
    4782 },   
    4783 { 
    4784    "type": "Feature", 
    4785    "id": "91 E 0.76", 
    4786    "geometry": 
    4787        { 
    4788         "type": "Point", 
    4789         "coordinates": [-117.967371,33.854376] 
    4790        }, 
    4791    "properties":  
    4792        {"street": "GILBERT", "color": "lime", "perpx": "-0.057735", "perpy": "-0.998332"} 
    4793 },   
    4794 { 
    4795    "type": "Feature", 
    4796    "id": "91 E 1", 
    4797    "geometry": 
    4798        { 
    4799         "type": "Point", 
    4800         "coordinates": [-118.026091,33.856083] 
    4801        }, 
    4802    "properties":  
    4803        {"street": "VALLEY VIEW", "color": "lime", "perpx": "-0.035152", "perpy": "-0.999382"} 
    4804 },   
    4805 { 
    4806    "type": "Feature", 
    4807    "id": "91 E 1.37", 
    4808    "geometry": 
    4809        { 
    4810         "type": "Point", 
    4811         "coordinates": [-117.95679,33.853902] 
    4812        }, 
    4813    "properties":  
    4814        {"street": "BROOKHURST", "color": "lime", "perpx": "0", "perpy": "0"} 
    4815 },   
    4816 { 
    4817    "type": "Feature", 
    4818    "id": "91 E 1.81", 
    4819    "geometry": 
    4820        { 
    4821         "type": "Point", 
    4822         "coordinates": [-118.011986,33.855903] 
    4823        }, 
    4824    "properties":  
    4825        {"street": "KNOTT 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    4826 },   
    4827 { 
    4828    "type": "Feature", 
    4829    "id": "91 E 1.99", 
    4830    "geometry": 
    4831        { 
    4832         "type": "Point", 
    4833         "coordinates": [-118.008847,33.855926] 
    4834        }, 
    4835    "properties":  
    4836        {"street": "KNOTT 2", "color": "lime", "perpx": "-0.02939", "perpy": "-0.999568"} 
    4837 },   
    4838 { 
    4839    "type": "Feature", 
    4840    "id": "91 E 2.4", 
    4841    "geometry": 
    4842        { 
    4843         "type": "Point", 
    4844         "coordinates": [-117.938876,33.854029] 
    4845        }, 
    4846    "properties":  
    4847        {"street": "EUCLID", "color": "lime", "perpx": "0.032946", "perpy": "0.999457"} 
    4848 },   
    4849 { 
    4850    "type": "Feature", 
    4851    "id": "91 E 2.58", 
    4852    "geometry": 
    4853        { 
    4854         "type": "Point", 
    4855         "coordinates": [-117.998577,33.855997] 
    4856        }, 
    4857    "properties":  
    4858        {"street": "BEACH 1", "color": "lime", "perpx": "0.008629", "perpy": "-0.999963"} 
    4859 },   
    4860 { 
    4861    "type": "Feature", 
    4862    "id": "91 E 2.76", 
    4863    "geometry": 
    4864        { 
    4865         "type": "Point", 
    4866         "coordinates": [-117.995448,33.856024] 
    4867        }, 
    4868    "properties":  
    4869        {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    4870 },   
    4871 { 
    4872    "type": "Feature", 
    4873    "id": "91 E 3.91", 
    4874    "geometry": 
    4875        { 
    4876         "type": "Point", 
    4877         "coordinates": [-117.912688,33.853681] 
    4878        }, 
    4879    "properties":  
    4880        {"street": "LEMON", "color": "lime", "perpx": "0.01578", "perpy": "-0.999875"} 
    4881 },   
    4882 { 
    4883    "type": "Feature", 
    4884    "id": "91 E 4.18", 
    4885    "geometry": 
    4886        { 
    4887         "type": "Point", 
    4888         "coordinates": [-117.907999,33.853755] 
    4889        }, 
    4890    "properties":  
    4891        {"street": "EAST", "color": "lime", "perpx": "0.004058", "perpy": "-0.999992"} 
    4892 },   
    4893 { 
    4894    "type": "Feature", 
    4895    "id": "91 E 4.35", 
    4896    "geometry": 
    4897        { 
    4898         "type": "Point", 
    4899         "coordinates": [-117.905042,33.853767] 
    4900        }, 
    4901    "properties":  
    4902        {"street": "EAST", "color": "lime", "perpx": "0", "perpy": "0"} 
    4903 },   
    4904 { 
    4905    "type": "Feature", 
    4906    "id": "91 E 4.77", 
    4907    "geometry": 
    4908        { 
    4909         "type": "Point", 
    4910         "coordinates": [-117.897738,33.853874] 
    4911        }, 
    4912    "properties":  
    4913        {"street": "ACACIA", "color": "lime", "perpx": "0.011516", "perpy": "-0.999934"} 
    4914 },   
    4915 { 
    4916    "type": "Feature", 
    4917    "id": "91 E 5.35", 
    4918    "geometry": 
    4919        { 
    4920         "type": "Point", 
    4921         "coordinates": [-117.887676,33.853992] 
    4922        }, 
    4923    "properties":  
    4924        {"street": "STATE COLLEGE", "color": "lime", "perpx": "0", "perpy": "0"} 
    4925 },   
    4926 { 
    4927    "type": "Feature", 
    4928    "id": "91 E 6.05", 
    4929    "geometry": 
    4930        { 
    4931         "type": "Point", 
    4932         "coordinates": [-117.876605,33.850044] 
    4933        }, 
    4934    "properties":  
    4935        {"street": "W OF 57", "color": "lime", "perpx": "-0.41458", "perpy": "-0.910013"} 
    4936 },   
    4937 { 
    4938    "type": "Feature", 
    4939    "id": "91 E 6.3", 
    4940    "geometry": 
    4941        { 
    4942         "type": "Point", 
    4943         "coordinates": [-117.872812,33.848316] 
    4944        }, 
    4945    "properties":  
    4946        {"street": "E OF 57", "color": "lime", "perpx": "-0.41458", "perpy": "-0.910013"} 
    4947 },   
    4948 { 
    4949    "type": "Feature", 
    4950    "id": "91 E 6.82", 
    4951    "geometry": 
    4952        { 
    4953         "type": "Point", 
    4954         "coordinates": [-117.864299,33.846226] 
    4955        }, 
    4956    "properties":  
    4957        {"street": "LA PALMA", "color": "lime", "perpx": "0.171763", "perpy": "-0.985138"} 
    4958 },   
    4959 { 
    4960    "type": "Feature", 
    4961    "id": "91 E 7.3", 
    4962    "geometry": 
    4963        { 
    4964         "type": "Point", 
    4965         "coordinates": [-117.856212,33.847636] 
    4966        }, 
    4967    "properties":  
    4968        {"street": "GLASSELL1", "color": "lime", "perpx": "0.242383", "perpy": "-0.970181"} 
    4969 },   
    4970 { 
    4971    "type": "Feature", 
    4972    "id": "91 E 7.48", 
    4973    "geometry": 
    4974        { 
    4975         "type": "Point", 
    4976         "coordinates": [-117.85323,33.848381] 
    4977        }, 
    4978    "properties":  
    4979        {"street": "GLASSELL2", "color": "lime", "perpx": "0.242318", "perpy": "-0.970197"} 
    4980 },   
    4981 { 
    4982    "type": "Feature", 
    4983    "id": "91 E 7.86", 
    4984    "geometry": 
    4985        { 
    4986         "type": "Point", 
    4987         "coordinates": [-117.846936,33.849953] 
    4988        }, 
    4989    "properties":  
    4990        {"street": "GROVE", "color": "lime", "perpx": "0.143226", "perpy": "-0.98969"} 
    4991 },   
    4992 { 
    4993    "type": "Feature", 
    4994    "id": "91 E 8.36", 
    4995    "geometry": 
    4996        { 
    4997         "type": "Point", 
    4998         "coordinates": [-117.838568,33.851164] 
    4999        }, 
    5000    "properties":  
    5001        {"street": "TUSTIN", "color": "lime", "perpx": "0.143226", "perpy": "-0.98969"} 
    5002 },   
    5003 { 
    5004    "type": "Feature", 
    5005    "id": "91 E 10.08", 
    5006    "geometry": 
    5007        { 
    5008         "type": "Point", 
    5009         "coordinates": [-117.814377,33.850669] 
    5010        }, 
    5011    "properties":  
    5012        {"street": "LAKEVIEW1", "color": "lime", "perpx": "0.643266", "perpy": "-0.765643"} 
    5013 },   
    5014 { 
    5015    "type": "Feature", 
    5016    "id": "91 E 10.27", 
    5017    "geometry": 
    5018        { 
    5019         "type": "Point", 
    5020         "coordinates": [-117.811988,33.852542] 
    5021        }, 
    5022    "properties":  
    5023        {"street": "LAKEVIEW2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5024 },   
    5025 { 
    5026    "type": "Feature", 
    5027    "id": "91 E 10.84", 
    5028    "geometry": 
    5029        { 
    5030         "type": "Point", 
    5031         "coordinates": [-117.80262,33.85429] 
    5032        }, 
    5033    "properties":  
    5034        {"street": "W OF IMPERIAL", "color": "lime", "perpx": "0.183427", "perpy": "-0.983033"} 
    5035 },   
    5036 { 
    5037    "type": "Feature", 
    5038    "id": "91 E 11.49", 
    5039    "geometry": 
    5040        { 
    5041         "type": "Point", 
    5042         "coordinates": [-117.791386,33.854176] 
    5043        }, 
    5044    "properties":  
    5045        {"street": "IMPERIAL1", "color": "lime", "perpx": "0.098358", "perpy": "-0.995151"} 
    5046 },   
    5047 { 
    5048    "type": "Feature", 
    5049    "id": "91 E 11.7", 
    5050    "geometry": 
    5051        { 
    5052         "type": "Point", 
    5053         "coordinates": [-117.787923,33.855071] 
    5054        }, 
    5055    "properties":  
    5056        {"street": "IMPERIAL2", "color": "lime", "perpx": "0.431464", "perpy": "-0.90213"} 
    5057 },   
    5058 { 
    5059    "type": "Feature", 
    5060    "id": "91 E 12.175", 
    5061    "geometry": 
    5062        { 
    5063         "type": "Point", 
    5064         "coordinates": [-117.780743,33.858505] 
    5065        }, 
    5066    "properties":  
    5067        {"street": "E OF IMPERIAL", "color": "lime", "perpx": "0.43844", "perpy": "-0.898761"} 
    5068 },   
    5069 { 
    5070    "type": "Feature", 
    5071    "id": "91 E 12.762", 
    5072    "geometry": 
    5073        { 
    5074         "type": "Point", 
    5075         "coordinates": [-117.771912,33.862813] 
    5076        }, 
    5077    "properties":  
    5078        {"street": "MIDPOINT", "color": "lime", "perpx": "0.436887", "perpy": "-0.899516"} 
    5079 },   
    5080 { 
    5081    "type": "Feature", 
    5082    "id": "91 E 13.349", 
    5083    "geometry": 
    5084        { 
    5085         "type": "Point", 
    5086         "coordinates": [-117.763071,33.867107] 
    5087        }, 
    5088    "properties":  
    5089        {"street": "W OF SCALES", "color": "lime", "perpx": "0.436887", "perpy": "-0.899516"} 
    5090 },   
    5091 { 
    5092    "type": "Feature", 
    5093    "id": "91 E 14.43", 
    5094    "geometry": 
    5095        { 
    5096         "type": "Point", 
    5097         "coordinates": [-117.744781,33.870278] 
    5098        }, 
    5099    "properties":  
    5100        {"street": "WEIR CNYN1", "color": "lime", "perpx": "0.155667", "perpy": "-0.98781"} 
    5101 },   
    5102 { 
    5103    "type": "Feature", 
    5104    "id": "91 E 14.62", 
    5105    "geometry": 
    5106        { 
    5107         "type": "Point", 
    5108         "coordinates": [-117.741504,33.870757] 
    5109        }, 
    5110    "properties":  
    5111        {"street": "WEIR CNYN2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5112 },   
    5113 { 
    5114    "type": "Feature", 
    5115    "id": "91 E 15.11", 
    5116    "geometry": 
    5117        { 
    5118         "type": "Point", 
    5119         "coordinates": [-117.73308,33.869894] 
    5120        }, 
    5121    "properties":  
    5122        {"street": "East OF WEIR", "color": "lime", "perpx": "-0.101912", "perpy": "-0.994793"} 
    5123 },   
    5124 { 
    5125    "type": "Feature", 
    5126    "id": "91 E 15.793", 
    5127    "geometry": 
    5128        { 
    5129         "type": "Point", 
    5130         "coordinates": [-117.722179,33.866822] 
    5131        }, 
    5132    "properties":  
    5133        {"street": "West OF GYPSUM", "color": "lime", "perpx": "-0.008286", "perpy": "-0.999966"} 
    5134 },   
    5135 { 
    5136    "type": "Feature", 
    5137    "id": "91 E 16.4", 
    5138    "geometry": 
    5139        { 
    5140         "type": "Point", 
    5141         "coordinates": [-117.71168,33.866735] 
    5142        }, 
    5143    "properties":  
    5144        {"street": "GYPSUM 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5145 },   
    5146 { 
    5147    "type": "Feature", 
    5148    "id": "91 E 16.6", 
    5149    "geometry": 
    5150        { 
    5151         "type": "Point", 
    5152         "coordinates": [-117.708584,33.868014] 
    5153        }, 
    5154    "properties":  
    5155        {"street": "GYPSUM 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5156 },   
    5157 { 
    5158    "type": "Feature", 
    5159    "id": "91 E 17.044", 
    5160    "geometry": 
    5161        { 
    5162         "type": "Point", 
    5163         "coordinates": [-117.701858,33.871104] 
    5164        }, 
    5165    "properties":  
    5166        {"street": "E OF GYPSUM", "color": "lime", "perpx": "0.417464", "perpy": "-0.908693"} 
    5167 },   
    5168 { 
    5169    "type": "Feature", 
    5170    "id": "91 E 18.13", 
    5171    "geometry": 
    5172        { 
    5173         "type": "Point", 
    5174         "coordinates": [-117.6845,33.870739] 
    5175        }, 
    5176    "properties":  
    5177        {"street": "COAL", "color": "lime", "perpx": "-0.376251", "perpy": "-0.926518"} 
    5178 },   
    5179 { 
    5180    "type": "Feature", 
    5181    "id": "91 E 18.435", 
    5182    "geometry": 
    5183        { 
    5184         "type": "Point", 
    5185         "coordinates": [-117.68015,33.869165] 
    5186        }, 
    5187    "properties":  
    5188        {"street": "E OF COAL", "color": "lime", "perpx": "0", "perpy": "0"} 
    5189 },   
    5190 { 
    5191    "type": "Feature", 
    5192    "id": "91 W 0.49", 
    5193    "geometry": 
    5194        { 
    5195         "type": "Point", 
    5196         "coordinates": [-118.034214,33.859047] 
    5197        }, 
    5198    "properties":  
    5199        {"street": "ORANGETHORPE", "color": "lime", "perpx": "0", "perpy": "0"} 
    5200 },   
    5201 { 
    5202    "type": "Feature", 
    5203    "id": "91 W 0.76", 
    5204    "geometry": 
    5205        { 
    5206         "type": "Point", 
    5207         "coordinates": [-117.967351,33.854549] 
    5208        }, 
    5209    "properties":  
    5210        {"street": "GILBERT", "color": "lime", "perpx": "-0.028816", "perpy": "-0.999585"} 
    5211 },   
    5212 { 
    5213    "type": "Feature", 
    5214    "id": "91 W 1", 
    5215    "geometry": 
    5216        { 
    5217         "type": "Point", 
    5218         "coordinates": [-118.026045,33.856241] 
    5219        }, 
    5220    "properties":  
    5221        {"street": "VALLEY VIEW", "color": "lime", "perpx": "0.03527", "perpy": "0.999378"} 
    5222 },   
    5223 { 
    5224    "type": "Feature", 
    5225    "id": "91 W 1.12", 
    5226    "geometry": 
    5227        { 
    5228         "type": "Point", 
    5229         "coordinates": [-117.961157,33.853951] 
    5230        }, 
    5231    "properties":  
    5232        {"street": "BROOKHURST", "color": "lime", "perpx": "-0.034899", "perpy": "-0.999391"} 
    5233 },   
    5234 { 
    5235    "type": "Feature", 
    5236    "id": "91 W 1.69", 
    5237    "geometry": 
    5238        { 
    5239         "type": "Point", 
    5240         "coordinates": [-118.014055,33.856065] 
    5241        }, 
    5242    "properties":  
    5243        {"street": "KNOTT 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5244 },   
    5245 { 
    5246    "type": "Feature", 
    5247    "id": "91 W 1.99", 
    5248    "geometry": 
    5249        { 
    5250         "type": "Point", 
    5251         "coordinates": [-118.008835,33.856125] 
    5252        }, 
    5253    "properties":  
    5254        {"street": "KNOTT 2", "color": "lime", "perpx": "0.029813", "perpy": "0.999556"} 
    5255 },   
    5256 { 
    5257    "type": "Feature", 
    5258    "id": "91 W 2.11", 
    5259    "geometry": 
    5260        { 
    5261         "type": "Point", 
    5262         "coordinates": [-117.943925,33.854189] 
    5263        }, 
    5264    "properties":  
    5265        {"street": "EUCLID", "color": "lime", "perpx": "0.029813", "perpy": "0.999556"} 
    5266 },   
    5267 { 
    5268    "type": "Feature", 
    5269    "id": "91 W 2.4", 
    5270    "geometry": 
    5271        { 
    5272         "type": "Point", 
    5273         "coordinates": [-118.001703,33.856174] 
    5274        }, 
    5275    "properties":  
    5276        {"street": "BEACH 1", "color": "lime", "perpx": "-0.000863", "perpy": "1.0"} 
    5277 },   
    5278 { 
    5279    "type": "Feature", 
    5280    "id": "91 W 2.6", 
    5281    "geometry": 
    5282        { 
    5283         "type": "Point", 
    5284         "coordinates": [-117.998227,33.856177] 
    5285        }, 
    5286    "properties":  
    5287        {"street": "BEACH 2", "color": "lime", "perpx": "-0.000863", "perpy": "1.0"} 
    5288 },   
    5289 { 
    5290    "type": "Feature", 
    5291    "id": "91 W 3.13", 
    5292    "geometry": 
    5293        { 
    5294         "type": "Point", 
    5295         "coordinates": [-117.926204,33.853907] 
    5296        }, 
    5297    "properties":  
    5298        {"street": "HARBOR 1", "color": "lime", "perpx": "-0.05087", "perpy": "-0.998705"} 
    5299 },   
    5300 { 
    5301    "type": "Feature", 
    5302    "id": "91 W 3.87", 
    5303    "geometry": 
    5304        { 
    5305         "type": "Point", 
    5306         "coordinates": [-117.976502,33.857654] 
    5307        }, 
    5308    "properties":  
    5309        {"street": "MAGNOLIA", "color": "lime", "perpx": "0", "perpy": "0"} 
    5310 },   
    5311 { 
    5312    "type": "Feature", 
    5313    "id": "91 W 3.91", 
    5314    "geometry": 
    5315        { 
    5316         "type": "Point", 
    5317         "coordinates": [-117.912686,33.853895] 
    5318        }, 
    5319    "properties":  
    5320        {"street": "LEMON", "color": "lime", "perpx": "-0.00639", "perpy": "0.99998"} 
    5321 },   
    5322 { 
    5323    "type": "Feature", 
    5324    "id": "91 W 4.18", 
    5325    "geometry": 
    5326        { 
    5327         "type": "Point", 
    5328         "coordinates": [-117.907991,33.853925] 
    5329        }, 
    5330    "properties":  
    5331        {"street": "EAST", "color": "lime", "perpx": "-0.00639", "perpy": "0.99998"} 
    5332 },   
    5333 { 
    5334    "type": "Feature", 
    5335    "id": "91 W 4.77", 
    5336    "geometry": 
    5337        { 
    5338         "type": "Point", 
    5339         "coordinates": [-117.897729,33.854035] 
    5340        }, 
    5341    "properties":  
    5342        {"street": "ACACIA", "color": "lime", "perpx": "-0.017239", "perpy": "0.999851"} 
    5343 },   
    5344 { 
    5345    "type": "Feature", 
    5346    "id": "91 W 5.14", 
    5347    "geometry": 
    5348        { 
    5349         "type": "Point", 
    5350         "coordinates": [-117.891303,33.854309] 
    5351        }, 
    5352    "properties":  
    5353        {"street": "STATE COLLEGE", "color": "lime", "perpx": "0.073866", "perpy": "0.997268"} 
    5354 },   
    5355 { 
    5356    "type": "Feature", 
    5357    "id": "91 W 6.15", 
    5358    "geometry": 
    5359        { 
    5360         "type": "Point", 
    5361         "coordinates": [-117.875092,33.849561] 
    5362        }, 
    5363    "properties":  
    5364        {"street": "W OF 57", "color": "lime", "perpx": "0", "perpy": "0"} 
    5365 },   
    5366 { 
    5367    "type": "Feature", 
    5368    "id": "91 W 6.3", 
    5369    "geometry": 
    5370        { 
    5371         "type": "Point", 
    5372         "coordinates": [-117.872819,33.848505] 
    5373        }, 
    5374    "properties":  
    5375        {"street": "E OF 57", "color": "lime", "perpx": "0.397217", "perpy": "0.917725"} 
    5376 },   
    5377 { 
    5378    "type": "Feature", 
    5379    "id": "91 W 6.42", 
    5380    "geometry": 
    5381        { 
    5382         "type": "Point", 
    5383         "coordinates": [-117.870973,33.847706] 
    5384        }, 
    5385    "properties":  
    5386        {"street": "LA PALMA", "color": "lime", "perpx": "0", "perpy": "0"} 
    5387 },   
    5388 { 
    5389    "type": "Feature", 
    5390    "id": "91 W 7.31", 
    5391    "geometry": 
    5392        { 
    5393         "type": "Point", 
    5394         "coordinates": [-117.855999,33.847931] 
    5395        }, 
    5396    "properties":  
    5397        {"street": "KRAEMER 1", "color": "lime", "perpx": "-0.238718", "perpy": "0.971089"} 
    5398 },   
    5399 { 
    5400    "type": "Feature", 
    5401    "id": "91 W 7.4", 
    5402    "geometry": 
    5403        { 
    5404         "type": "Point", 
    5405         "coordinates": [-117.854502,33.848299] 
    5406        }, 
    5407    "properties":  
    5408        {"street": "KRAEMER 2", "color": "lime", "perpx": "-0.241819", "perpy": "0.970321"} 
    5409 },   
    5410 { 
    5411    "type": "Feature", 
    5412    "id": "91 W 7.86", 
    5413    "geometry": 
    5414        { 
    5415         "type": "Point", 
    5416         "coordinates": [-117.846854,33.850205] 
    5417        }, 
    5418    "properties":  
    5419        {"street": "GROVE", "color": "lime", "perpx": "-0.13485", "perpy": "0.990866"} 
    5420 },   
    5421 { 
    5422    "type": "Feature", 
    5423    "id": "91 W 8.36", 
    5424    "geometry": 
    5425        { 
    5426         "type": "Point", 
    5427         "coordinates": [-117.838448,33.851349] 
    5428        }, 
    5429    "properties":  
    5430        {"street": "TUSTIN", "color": "lime", "perpx": "-0.13485", "perpy": "0.990866"} 
    5431 },   
    5432 { 
    5433    "type": "Feature", 
    5434    "id": "91 W 9.95", 
    5435    "geometry": 
    5436        { 
    5437         "type": "Point", 
    5438         "coordinates": [-117.816135,33.849591] 
    5439        }, 
    5440    "properties":  
    5441        {"street": "LAKEVIEW1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5442 },   
    5443 { 
    5444    "type": "Feature", 
    5445    "id": "91 W 10.14", 
    5446    "geometry": 
    5447        { 
    5448         "type": "Point", 
    5449         "coordinates": [-117.813891,33.851525] 
    5450        }, 
    5451    "properties":  
    5452        {"street": "LAKEVIEW2", "color": "lime", "perpx": "-0.654394", "perpy": "0.756154"} 
    5453 },   
    5454 { 
    5455    "type": "Feature", 
    5456    "id": "91 W 10.84", 
    5457    "geometry": 
    5458        { 
    5459         "type": "Point", 
    5460         "coordinates": [-117.802756,33.854556] 
    5461        }, 
    5462    "properties":  
    5463        {"street": "W OF IMPERIAL", "color": "lime", "perpx": "0.020315", "perpy": "0.999794"} 
    5464 },   
    5465 { 
    5466    "type": "Feature", 
    5467    "id": "91 W 11.38", 
    5468    "geometry": 
    5469        { 
    5470         "type": "Point", 
    5471         "coordinates": [-117.793339,33.854368] 
    5472        }, 
    5473    "properties":  
    5474        {"street": "IMPERIAL1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5475 },   
    5476 { 
    5477    "type": "Feature", 
    5478    "id": "91 W 11.59", 
    5479    "geometry": 
    5480        { 
    5481         "type": "Point", 
    5482         "coordinates": [-117.789725,33.854713] 
    5483        }, 
    5484    "properties":  
    5485        {"street": "IMPERIAL2", "color": "lime", "perpx": "-0.310943", "perpy": "0.950429"} 
    5486 },   
    5487 { 
    5488    "type": "Feature", 
    5489    "id": "91 W 12.175", 
    5490    "geometry": 
    5491        { 
    5492         "type": "Point", 
    5493         "coordinates": [-117.780816,33.858773] 
    5494        }, 
    5495    "properties":  
    5496        {"street": "E OF IMPERIAL", "color": "lime", "perpx": "-0.438994", "perpy": "0.89849"} 
    5497 },   
    5498 { 
    5499    "type": "Feature", 
    5500    "id": "91 W 12.762", 
    5501    "geometry": 
    5502        { 
    5503         "type": "Point", 
    5504         "coordinates": [-117.772007,33.863077] 
    5505        }, 
    5506    "properties":  
    5507        {"street": "MIDPOINT", "color": "lime", "perpx": "-0.437889", "perpy": "0.899029"} 
    5508 },   
    5509 { 
    5510    "type": "Feature", 
    5511    "id": "91 W 13.349", 
    5512    "geometry": 
    5513        { 
    5514         "type": "Point", 
    5515         "coordinates": [-117.763191,33.867371] 
    5516        }, 
    5517    "properties":  
    5518        {"street": "W OF SCALES", "color": "lime", "perpx": "-0.437889", "perpy": "0.899029"} 
    5519 },   
    5520 { 
    5521    "type": "Feature", 
    5522    "id": "91 W 14.26", 
    5523    "geometry": 
    5524        { 
    5525         "type": "Point", 
    5526         "coordinates": [-117.747893,33.870169] 
    5527        }, 
    5528    "properties":  
    5529        {"street": "WEIR CNYN1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5530 },   
    5531 { 
    5532    "type": "Feature", 
    5533    "id": "91 W 14.43", 
    5534    "geometry": 
    5535        { 
    5536         "type": "Point", 
    5537         "coordinates": [-117.744997,33.870661] 
    5538        }, 
    5539    "properties":  
    5540        {"street": "WEIR CNYN2", "color": "lime", "perpx": "-0.177649", "perpy": "0.984094"} 
    5541 },   
    5542 { 
    5543    "type": "Feature", 
    5544    "id": "91 W 15.11", 
    5545    "geometry": 
    5546        { 
    5547         "type": "Point", 
    5548         "coordinates": [-117.733445,33.870372] 
    5549        }, 
    5550    "properties":  
    5551        {"street": "East OF WEIR", "color": "lime", "perpx": "0.048587", "perpy": "0.998819"} 
    5552 },   
    5553 { 
    5554    "type": "Feature", 
    5555    "id": "91 W 15.793", 
    5556    "geometry": 
    5557        { 
    5558         "type": "Point", 
    5559         "coordinates": [-117.722277,33.867126] 
    5560        }, 
    5561    "properties":  
    5562        {"street": "West OF GYPSUM", "color": "lime", "perpx": "0.08815", "perpy": "0.996107"} 
    5563 },   
    5564 { 
    5565    "type": "Feature", 
    5566    "id": "91 W 16.2", 
    5567    "geometry": 
    5568        { 
    5569         "type": "Point", 
    5570         "coordinates": [-117.715237,33.866503] 
    5571        }, 
    5572    "properties":  
    5573        {"street": "GYPSUM 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    5574 },   
    5575 { 
    5576    "type": "Feature", 
    5577    "id": "91 W 17.044", 
    5578    "geometry": 
    5579        { 
    5580         "type": "Point", 
    5581         "coordinates": [-117.701993,33.871439] 
    5582        }, 
    5583    "properties":  
    5584        {"street": "E OF GYPSUM", "color": "lime", "perpx": "-0.129654", "perpy": "0.991559"} 
    5585 },   
    5586 { 
    5587    "type": "Feature", 
    5588    "id": "91 W 17.84", 
    5589    "geometry": 
    5590        { 
    5591         "type": "Point", 
    5592         "coordinates": [-117.689053,33.873131] 
    5593        }, 
    5594    "properties":  
    5595        {"street": "COAL", "color": "lime", "perpx": "0", "perpy": "0"} 
    5596 },   
    5597 { 
    5598    "type": "Feature", 
    5599    "id": "91 W 18.435", 
    5600    "geometry": 
    5601        { 
    5602         "type": "Point", 
    5603         "coordinates": [-117.680194,33.869436] 
    5604        }, 
    5605    "properties":  
    5606        {"street": "E OF COAL", "color": "lime", "perpx": "0", "perpy": "0"} 
    5607 },   
    5608  
    5609 { 
    5610    "type": "Feature", 
    5611    "id": "133 N 9", 
    5612    "geometry": 
    5613        { 
    5614         "type": "Point", 
    5615         "coordinates": [-117.754967,33.661697] 
    5616        }, 
    5617    "properties":  
    5618        {"street": "BARRANCA1", "color": "lime", "perpx": "0.851313", "perpy": "-0.524659"} 
    5619 },   
    5620 { 
    5621    "type": "Feature", 
    5622    "id": "133 N 9.1", 
    5623    "geometry": 
    5624        { 
    5625         "type": "Point", 
    5626         "coordinates": [-117.753976,33.663305] 
    5627        }, 
    5628    "properties":  
    5629        {"street": "BARRANCA2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5630 },   
    5631 { 
    5632    "type": "Feature", 
    5633    "id": "133 N 9.37", 
    5634    "geometry": 
    5635        { 
    5636         "type": "Point", 
    5637         "coordinates": [-117.753044,33.667495] 
    5638        }, 
    5639    "properties":  
    5640        {"street": "S OF 5", "color": "lime", "perpx": "0.976143", "perpy": "-0.217128"} 
    5641 },   
    5642 { 
    5643    "type": "Feature", 
    5644    "id": "133 N 9.77", 
    5645    "geometry": 
    5646        { 
    5647         "type": "Point", 
    5648         "coordinates": [-117.753243,33.672836] 
    5649        }, 
    5650    "properties":  
    5651        {"street": "N OF 5", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
    5652 },   
    5653 { 
    5654    "type": "Feature", 
    5655    "id": "133 N 10.05", 
    5656    "geometry": 
    5657        { 
    5658         "type": "Point", 
    5659         "coordinates": [-117.752421,33.676181] 
    5660        }, 
    5661    "properties":  
    5662        {"street": "MARINE WAY", "color": "lime", "perpx": "0.971108", "perpy": "-0.23864"} 
    5663 },   
    5664 { 
    5665    "type": "Feature", 
    5666    "id": "133 N 10.5", 
    5667    "geometry": 
    5668        { 
    5669         "type": "Point", 
    5670         "coordinates": [-117.748819,33.680812] 
    5671        }, 
    5672    "properties":  
    5673        {"street": "N OF MARINE", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
    5674 },   
    5675 { 
    5676    "type": "Feature", 
    5677    "id": "133 N 10.73", 
    5678    "geometry": 
    5679        { 
    5680         "type": "Point", 
    5681         "coordinates": [-117.746935,33.683166] 
    5682        }, 
    5683    "properties":  
    5684        {"street": "S OF PM 11", "color": "lime", "perpx": "0.780739", "perpy": "-0.624857"} 
    5685 },   
    5686 { 
    5687    "type": "Feature", 
    5688    "id": "133 N 11.08", 
    5689    "geometry": 
    5690        { 
    5691         "type": "Point", 
    5692         "coordinates": [-117.743737,33.687048] 
    5693        }, 
    5694    "properties":  
    5695        {"street": "AT PM 11", "color": "lime", "perpx": "0.766025", "perpy": "-0.642811"} 
    5696 },   
    5697 { 
    5698    "type": "Feature", 
    5699    "id": "133 N 11.35", 
    5700    "geometry": 
    5701        { 
    5702         "type": "Point", 
    5703         "coordinates": [-117.741045,33.690256] 
    5704        }, 
    5705    "properties":  
    5706        {"street": "N OF PM 11", "color": "lime", "perpx": "0.764276", "perpy": "-0.64489"} 
    5707 },   
    5708 { 
    5709    "type": "Feature", 
    5710    "id": "133 N 11.7", 
    5711    "geometry": 
    5712        { 
    5713         "type": "Point", 
    5714         "coordinates": [-117.737541,33.694404] 
    5715        }, 
    5716    "properties":  
    5717        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.763019", "perpy": "-0.646375"} 
    5718 },   
    5719 { 
    5720    "type": "Feature", 
    5721    "id": "133 N 12.05", 
    5722    "geometry": 
    5723        { 
    5724         "type": "Point", 
    5725         "coordinates": [-117.733959,33.698464] 
    5726        }, 
    5727    "properties":  
    5728        {"street": "IRVINE BLVD 3", "color": "lime", "perpx": "0.72056", "perpy": "-0.693393"} 
    5729 },   
    5730 { 
    5731    "type": "Feature", 
    5732    "id": "133 N 12.42", 
    5733    "geometry": 
    5734        { 
    5735         "type": "Point", 
    5736         "coordinates": [-117.72971,33.70238] 
    5737        }, 
    5738    "properties":  
    5739        {"street": "S OF PORTOLA", "color": "lime", "perpx": "0.731326", "perpy": "-0.682028"} 
    5740 },   
    5741 { 
    5742    "type": "Feature", 
    5743    "id": "133 N 12.77", 
    5744    "geometry": 
    5745        { 
    5746         "type": "Point", 
    5747         "coordinates": [-117.726196,33.706148] 
    5748        }, 
    5749    "properties":  
    5750        {"street": "133NB to 241NB", "color": "lime", "perpx": "0", "perpy": "0"} 
    5751 },   
    5752 { 
    5753    "type": "Feature", 
    5754    "id": "133 N 13.04", 
    5755    "geometry": 
    5756        { 
    5757         "type": "Point", 
    5758         "coordinates": [-117.724497,33.709447] 
    5759        }, 
    5760    "properties":  
    5761        {"street": "ORANGE 1", "color": "lime", "perpx": "0.889028", "perpy": "-0.457853"} 
    5762 },   
    5763 { 
    5764    "type": "Feature", 
    5765    "id": "133 N 13.42", 
    5766    "geometry": 
    5767        { 
    5768         "type": "Point", 
    5769         "coordinates": [-117.721749,33.71555] 
    5770        }, 
    5771    "properties":  
    5772        {"street": "ORANGE 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5773 },   
    5774 { 
    5775    "type": "Feature", 
    5776    "id": "133 S 9", 
    5777    "geometry": 
    5778        { 
    5779         "type": "Point", 
    5780         "coordinates": [-117.7553,33.66184] 
    5781        }, 
    5782    "properties":  
    5783        {"street": "BARRANCA2", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
    5784 },   
    5785 { 
    5786    "type": "Feature", 
    5787    "id": "133 S 9.37", 
    5788    "geometry": 
    5789        { 
    5790         "type": "Point", 
    5791         "coordinates": [-117.753428,33.667665] 
    5792        }, 
    5793    "properties":  
    5794        {"street": "S OF 5", "color": "lime", "perpx": "-0.952044", "perpy": "0.305962"} 
    5795 },   
    5796 { 
    5797    "type": "Feature", 
    5798    "id": "133 S 9.77", 
    5799    "geometry": 
    5800        { 
    5801         "type": "Point", 
    5802         "coordinates": [-117.753623,33.673029] 
    5803        }, 
    5804    "properties":  
    5805        {"street": "N OF 5", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
    5806 },   
    5807 { 
    5808    "type": "Feature", 
    5809    "id": "133 S 10.05", 
    5810    "geometry": 
    5811        { 
    5812         "type": "Point", 
    5813         "coordinates": [-117.752844,33.676396] 
    5814        }, 
    5815    "properties":  
    5816        {"street": "MARINE WAY", "color": "lime", "perpx": "-0.974264", "perpy": "0.225409"} 
    5817 },   
    5818 { 
    5819    "type": "Feature", 
    5820    "id": "133 S 10.5", 
    5821    "geometry": 
    5822        { 
    5823         "type": "Point", 
    5824         "coordinates": [-117.74924,33.68106] 
    5825        }, 
    5826    "properties":  
    5827        {"street": "N OF MARINE", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
    5828 },   
    5829 { 
    5830    "type": "Feature", 
    5831    "id": "133 S 10.73", 
    5832    "geometry": 
    5833        { 
    5834         "type": "Point", 
    5835         "coordinates": [-117.747277,33.683386] 
    5836        }, 
    5837    "properties":  
    5838        {"street": "S OF PM 11", "color": "lime", "perpx": "-0.764221", "perpy": "0.644955"} 
    5839 },   
    5840 { 
    5841    "type": "Feature", 
    5842    "id": "133 S 11.08", 
    5843    "geometry": 
    5844        { 
    5845         "type": "Point", 
    5846         "coordinates": [-117.744014,33.687243] 
    5847        }, 
    5848    "properties":  
    5849        {"street": "AT PM 11", "color": "lime", "perpx": "-0.767026", "perpy": "0.641617"} 
    5850 },   
    5851 { 
    5852    "type": "Feature", 
    5853    "id": "133 S 11.35", 
    5854    "geometry": 
    5855        { 
    5856         "type": "Point", 
    5857         "coordinates": [-117.741328,33.690454] 
    5858        }, 
    5859    "properties":  
    5860        {"street": "N OF PM 11", "color": "lime", "perpx": "-0.764252", "perpy": "0.644918"} 
    5861 },   
    5862 { 
    5863    "type": "Feature", 
    5864    "id": "133 S 11.7", 
    5865    "geometry": 
    5866        { 
    5867         "type": "Point", 
    5868         "coordinates": [-117.737826,33.694604] 
    5869        }, 
    5870    "properties":  
    5871        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.756644", "perpy": "0.653828"} 
    5872 },   
    5873 { 
    5874    "type": "Feature", 
    5875    "id": "133 S 12.05", 
    5876    "geometry": 
    5877        { 
    5878         "type": "Point", 
    5879         "coordinates": [-117.734303,33.698681] 
    5880        }, 
    5881    "properties":  
    5882        {"street": "IRVINE BLVD 3", "color": "lime", "perpx": "-0.679098", "perpy": "0.734047"} 
    5883 },   
    5884 { 
    5885    "type": "Feature", 
    5886    "id": "133 S 12.42", 
    5887    "geometry": 
    5888        { 
    5889         "type": "Point", 
    5890         "coordinates": [-117.730095,33.702574] 
    5891        }, 
    5892    "properties":  
    5893        {"street": "S OF PORTOLA", "color": "lime", "perpx": "-0.679098", "perpy": "0.734047"} 
    5894 },   
    5895 { 
    5896    "type": "Feature", 
    5897    "id": "133 S 13.04", 
    5898    "geometry": 
    5899        { 
    5900         "type": "Point", 
    5901         "coordinates": [-117.72449,33.710914] 
    5902        }, 
    5903    "properties":  
    5904        {"street": "ORANGE 1", "color": "lime", "perpx": "-0.898001", "perpy": "0.439993"} 
    5905 },   
    5906 { 
    5907    "type": "Feature", 
    5908    "id": "133 S 13.42", 
    5909    "geometry": 
    5910        { 
    5911         "type": "Point", 
    5912         "coordinates": [-117.722121,33.715749] 
    5913        }, 
    5914    "properties":  
    5915        {"street": "ORANGE 2", "color": "lime", "perpx": "-0.898001", "perpy": "0.439993"} 
    5916 },   
    5917  
    5918 { 
    5919    "type": "Feature", 
    5920    "id": "241 N 17.8", 
    5921    "geometry": 
    5922        { 
    5923         "type": "Point", 
    5924         "coordinates": [-117.599074,33.63353] 
    5925        }, 
    5926    "properties":  
    5927        {"street": "ANTONIO 2", "color": "lime", "perpx": "0.94076", "perpy": "0.339073"} 
    5928 },   
    5929 { 
    5930    "type": "Feature", 
    5931    "id": "241 N 18.08", 
    5932    "geometry": 
    5933        { 
    5934         "type": "Point", 
    5935         "coordinates": [-117.600814,33.637405] 
    5936        }, 
    5937    "properties":  
    5938        {"street": "BANDERAS", "color": "lime", "perpx": "0", "perpy": "0"} 
    5939 },   
    5940 { 
    5941    "type": "Feature", 
    5942    "id": "241 N 18.7", 
    5943    "geometry": 
    5944        { 
    5945         "type": "Point", 
    5946         "coordinates": [-117.605062,33.645877] 
    5947        }, 
    5948    "properties":  
    5949        {"street": "SANTA MARGUERITA", "color": "lime", "perpx": "0.90141", "perpy": "0.432966"} 
    5950 },   
    5951 { 
    5952    "type": "Feature", 
    5953    "id": "241 N 18.8", 
    5954    "geometry": 
    5955        { 
    5956         "type": "Point", 
    5957         "coordinates": [-117.605721,33.647249] 
    5958        }, 
    5959    "properties":  
    5960        {"street": "TRABUCO CREEK", "color": "lime", "perpx": "0.90141", "perpy": "0.432966"} 
    5961 },   
    5962 { 
    5963    "type": "Feature", 
    5964    "id": "241 N 19.3", 
    5965    "geometry": 
    5966        { 
    5967         "type": "Point", 
    5968         "coordinates": [-117.612216,33.651938] 
    5969        }, 
    5970    "properties":  
    5971        {"street": "MELINDA", "color": "lime", "perpx": "0.193918", "perpy": "0.981018"} 
    5972 },   
    5973 { 
    5974    "type": "Feature", 
    5975    "id": "241 N 19.76", 
    5976    "geometry": 
    5977        { 
    5978         "type": "Point", 
    5979         "coordinates": [-117.620027,33.653482] 
    5980        }, 
    5981    "properties":  
    5982        {"street": "LOS ALISOS 1", "color": "lime", "perpx": "0.32691", "perpy": "0.945056"} 
    5983 },   
    5984 { 
    5985    "type": "Feature", 
    5986    "id": "241 N 20.13", 
    5987    "geometry": 
    5988        { 
    5989         "type": "Point", 
    5990         "coordinates": [-117.62601,33.655536] 
    5991        }, 
    5992    "properties":  
    5993        {"street": "LOS ALISOS 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    5994 },   
    5995 { 
    5996    "type": "Feature", 
    5997    "id": "241 N 20.54", 
    5998    "geometry": 
    5999        { 
    6000         "type": "Point", 
    6001         "coordinates": [-117.632286,33.658363] 
    6002        }, 
    6003    "properties":  
    6004        {"street": "UPPER OSO", "color": "lime", "perpx": "0.410703", "perpy": "0.911769"} 
    6005 },   
    6006 { 
    6007    "type": "Feature", 
    6008    "id": "241 N 21.61", 
    6009    "geometry": 
    6010        { 
    6011         "type": "Point", 
    6012         "coordinates": [-117.647778,33.666889] 
    6013        }, 
    6014    "properties":  
    6015        {"street": "PORTOLA S 1", "color": "lime", "perpx": "0.3701", "perpy": "0.928992"} 
    6016 },   
    6017 { 
    6018    "type": "Feature", 
    6019    "id": "241 N 21.93", 
    6020    "geometry": 
    6021        { 
    6022         "type": "Point", 
    6023         "coordinates": [-117.652743,33.668867] 
    6024        }, 
    6025    "properties":  
    6026        {"street": "PORTOLA S 2", "color": "lime", "perpx": "0.3701", "perpy": "0.928992"} 
    6027 },   
    6028 { 
    6029    "type": "Feature", 
    6030    "id": "241 N 22.61", 
    6031    "geometry": 
    6032        { 
    6033         "type": "Point", 
    6034         "coordinates": [-117.663113,33.672946] 
    6035        }, 
    6036    "properties":  
    6037        {"street": "LAKE FOREST", "color": "lime", "perpx": "0.37314", "perpy": "0.927775"} 
    6038 },   
    6039 { 
    6040    "type": "Feature", 
    6041    "id": "241 N 22.81", 
    6042    "geometry": 
    6043        { 
    6044         "type": "Point", 
    6045         "coordinates": [-117.666212,33.674212] 
    6046        }, 
    6047    "properties":  
    6048        {"street": "BAKE", "color": "lime", "perpx": "0.42005", "perpy": "0.907501"} 
    6049 },   
    6050 { 
    6051    "type": "Feature", 
    6052    "id": "241 N 23.2", 
    6053    "geometry": 
    6054        { 
    6055         "type": "Point", 
    6056         "coordinates": [-117.671424,33.677671] 
    6057        }, 
    6058    "properties":  
    6059        {"street": "ALTON 1", "color": "lime", "perpx": "0.787657", "perpy": "0.616114"} 
    6060 },   
    6061 { 
    6062    "type": "Feature", 
    6063    "id": "241 N 23.54", 
    6064    "geometry": 
    6065        { 
    6066         "type": "Point", 
    6067         "coordinates": [-117.67436,33.681906] 
    6068        }, 
    6069    "properties":  
    6070        {"street": "ALTON 2", "color": "lime", "perpx": "0.8", "perpy": "0.6"} 
    6071 },   
    6072 { 
    6073    "type": "Feature", 
    6074    "id": "241 N 24.16", 
    6075    "geometry": 
    6076        { 
    6077         "type": "Point", 
    6078         "coordinates": [-117.681661,33.688336] 
    6079        }, 
    6080    "properties":  
    6081        {"street": "N OF ALTON", "color": "lime", "perpx": "0.567343", "perpy": "0.823482"} 
    6082 },   
    6083 { 
    6084    "type": "Feature", 
    6085    "id": "241 N 25.15", 
    6086    "geometry": 
    6087        { 
    6088         "type": "Point", 
    6089         "coordinates": [-117.695163,33.697044] 
    6090        }, 
    6091    "properties":  
    6092        {"street": "PORTOLA N2", "color": "lime", "perpx": "0.436189", "perpy": "0.899855"} 
    6093 },   
    6094 { 
    6095    "type": "Feature", 
    6096    "id": "241 N 25.43", 
    6097    "geometry": 
    6098        { 
    6099         "type": "Point", 
    6100         "coordinates": [-117.699355,33.699076] 
    6101        }, 
    6102    "properties":  
    6103        {"street": "TOMATO 1", "color": "lime", "perpx": "0.434917", "perpy": "0.900471"} 
    6104 },   
    6105 { 
    6106    "type": "Feature", 
    6107    "id": "241 N 25.95", 
    6108    "geometry": 
    6109        { 
    6110         "type": "Point", 
    6111         "coordinates": [-117.707184,33.702783] 
    6112        }, 
    6113    "properties":  
    6114        {"street": "TOMATO 3", "color": "lime", "perpx": "0", "perpy": "0"} 
    6115 },   
    6116 { 
    6117    "type": "Feature", 
    6118    "id": "241 N 26.35", 
    6119    "geometry": 
    6120        { 
    6121         "type": "Point", 
    6122         "coordinates": [-117.713171,33.70568] 
    6123        }, 
    6124    "properties":  
    6125        {"street": "TOMATO 4", "color": "lime", "perpx": "0.38021", "perpy": "0.9249"} 
    6126 },   
    6127 { 
    6128    "type": "Feature", 
    6129    "id": "241 N 26.58", 
    6130    "geometry": 
    6131        { 
    6132         "type": "Point", 
    6133         "coordinates": [-117.716523,33.707439] 
    6134        }, 
    6135    "properties":  
    6136        {"street": "133-1", "color": "lime", "perpx": "0.690231", "perpy": "0.723589"} 
    6137 },   
    6138 { 
    6139    "type": "Feature", 
    6140    "id": "241 N 26.76", 
    6141    "geometry": 
    6142        { 
    6143         "type": "Point", 
    6144         "coordinates": [-117.718562,33.709384] 
    6145        }, 
    6146    "properties":  
    6147        {"street": "133-2", "color": "lime", "perpx": "0.690231", "perpy": "0.723589"} 
    6148 },   
    6149 { 
    6150    "type": "Feature", 
    6151    "id": "241 N 27.12", 
    6152    "geometry": 
    6153        { 
    6154         "type": "Point", 
    6155         "coordinates": [-117.720349,33.714309] 
    6156        }, 
    6157    "properties":  
    6158        {"street": "133-3", "color": "lime", "perpx": "0.999048", "perpy": "-0.043617"} 
    6159 },   
    6160 { 
    6161    "type": "Feature", 
    6162    "id": "241 N 27.43", 
    6163    "geometry": 
    6164        { 
    6165         "type": "Point", 
    6166         "coordinates": [-117.719917,33.718783] 
    6167        }, 
    6168    "properties":  
    6169        {"street": "BEE CANYON", "color": "lime", "perpx": "0.991505", "perpy": "-0.130067"} 
    6170 },   
    6171 { 
    6172    "type": "Feature", 
    6173    "id": "241 N 27.74", 
    6174    "geometry": 
    6175        { 
    6176         "type": "Point", 
    6177         "coordinates": [-117.719302,33.723299] 
    6178        }, 
    6179    "properties":  
    6180        {"street": "N OF 133", "color": "lime", "perpx": "0.991174", "perpy": "-0.132564"} 
    6181 },   
    6182 { 
    6183    "type": "Feature", 
    6184    "id": "241 N 28.09", 
    6185    "geometry": 
    6186        { 
    6187         "type": "Point", 
    6188         "coordinates": [-117.71867,33.728406] 
    6189        }, 
    6190    "properties":  
    6191        {"street": "S OF JEFFREY", "color": "lime", "perpx": "0.991789", "perpy": "-0.127885"} 
    6192 },   
    6193 { 
    6194    "type": "Feature", 
    6195    "id": "241 N 28.44", 
    6196    "geometry": 
    6197        { 
    6198         "type": "Point", 
    6199         "coordinates": [-117.718013,33.73351] 
    6200        }, 
    6201    "properties":  
    6202        {"street": "N OF JEFFREY", "color": "lime", "perpx": "0.991828", "perpy": "-0.127583"} 
    6203 },   
    6204 { 
    6205    "type": "Feature", 
    6206    "id": "241 N 28.73", 
    6207    "geometry": 
    6208        { 
    6209         "type": "Point", 
    6210         "coordinates": [-117.71751,33.737751] 
    6211        }, 
    6212    "properties":  
    6213        {"street": "N OF HAUL ROAD", "color": "lime", "perpx": "0.99277", "perpy": "0.120036"} 
    6214 },   
    6215 { 
    6216    "type": "Feature", 
    6217    "id": "241 N 28.97", 
    6218    "geometry": 
    6219        { 
    6220         "type": "Point", 
    6221         "coordinates": [-117.717935,33.741266] 
    6222        }, 
    6223    "properties":  
    6224        {"street": "HAUL-CULVER", "color": "lime", "perpx": "0.99277", "perpy": "0.120036"} 
    6225 },   
    6226 { 
    6227    "type": "Feature", 
    6228    "id": "241 N 29.34", 
    6229    "geometry": 
    6230        { 
    6231         "type": "Point", 
    6232         "coordinates": [-117.720909,33.746087] 
    6233        }, 
    6234    "properties":  
    6235        {"street": "S OF CULVER S", "color": "lime", "perpx": "0.544008", "perpy": "0.83908"} 
    6236 },   
    6237 { 
    6238    "type": "Feature", 
    6239    "id": "241 N 29.69", 
    6240    "geometry": 
    6241        { 
    6242         "type": "Point", 
    6243         "coordinates": [-117.725783,33.749247] 
    6244        }, 
    6245    "properties":  
    6246        {"street": "N OF CULVER S", "color": "lime", "perpx": "0.51441", "perpy": "0.857544"} 
    6247 },   
    6248 { 
    6249    "type": "Feature", 
    6250    "id": "241 N 30", 
    6251    "geometry": 
    6252        { 
    6253         "type": "Point", 
    6254         "coordinates": [-117.730214,33.751905] 
    6255        }, 
    6256    "properties":  
    6257        {"street": "CULVER-CULVER 1", "color": "lime", "perpx": "0.749117", "perpy": "0.662437"} 
    6258 },   
    6259 { 
    6260    "type": "Feature", 
    6261    "id": "241 N 30.33", 
    6262    "geometry": 
    6263        { 
    6264         "type": "Point", 
    6265         "coordinates": [-117.732601,33.756276] 
    6266        }, 
    6267    "properties":  
    6268        {"street": "CULVER-CULVER 2", "color": "lime", "perpx": "0.999169", "perpy": "0.040755"} 
    6269 },   
    6270 { 
    6271    "type": "Feature", 
    6272    "id": "241 N 30.72", 
    6273    "geometry": 
    6274        { 
    6275         "type": "Point", 
    6276         "coordinates": [-117.732107,33.76201] 
    6277        }, 
    6278    "properties":  
    6279        {"street": "S OF CULVER N", "color": "lime", "perpx": "0.994307", "perpy": "0.106557"} 
    6280 },   
    6281 { 
    6282    "type": "Feature", 
    6283    "id": "241 N 31.03", 
    6284    "geometry": 
    6285        { 
    6286         "type": "Point", 
    6287         "coordinates": [-117.733568,33.766355] 
    6288        }, 
    6289    "properties":  
    6290        {"street": "N OF CULVER N", "color": "lime", "perpx": "0.738172", "perpy": "0.674612"} 
    6291 },   
    6292 { 
    6293    "type": "Feature", 
    6294    "id": "241 N 31.44", 
    6295    "geometry": 
    6296        { 
    6297         "type": "Point", 
    6298         "coordinates": [-117.738882,33.770424] 
    6299        }, 
    6300    "properties":  
    6301        {"street": "S OF EOC OC", "color": "lime", "perpx": "0.546231", "perpy": "0.837634"} 
    6302 },   
    6303 { 
    6304    "type": "Feature", 
    6305    "id": "241 N 31.88", 
    6306    "geometry": 
    6307        { 
    6308         "type": "Point", 
    6309         "coordinates": [-117.744897,33.774559] 
    6310        }, 
    6311    "properties":  
    6312        {"street": "CHAPMAN 1", "color": "lime", "perpx": "0.572437", "perpy": "0.819949"} 
    6313 },   
    6314 { 
    6315    "type": "Feature", 
    6316    "id": "241 N 32.29", 
    6317    "geometry": 
    6318        { 
    6319         "type": "Point", 
    6320         "coordinates": [-117.747616,33.780001] 
    6321        }, 
    6322    "properties":  
    6323        {"street": "CHAPMAN 2", "color": "lime", "perpx": "0.997824", "perpy": "-0.065933"} 
    6324 },   
    6325 { 
    6326    "type": "Feature", 
    6327    "id": "241 N 32.71", 
    6328    "geometry": 
    6329        { 
    6330         "type": "Point", 
    6331         "coordinates": [-117.745126,33.785685] 
    6332        }, 
    6333    "properties":  
    6334        {"street": "CHAPMAN 3", "color": "lime", "perpx": "0.6879", "perpy": "-0.725806"} 
    6335 },   
    6336 { 
    6337    "type": "Feature", 
    6338    "id": "241 N 32.97", 
    6339    "geometry": 
    6340        { 
    6341         "type": "Point", 
    6342         "coordinates": [-117.741766,33.788286] 
    6343        }, 
    6344    "properties":  
    6345        {"street": "CHAPMAN 4", "color": "lime", "perpx": "0.563196", "perpy": "-0.826323"} 
    6346 },   
    6347 { 
    6348    "type": "Feature", 
    6349    "id": "241 N 33.35", 
    6350    "geometry": 
    6351        { 
    6352         "type": "Point", 
    6353         "coordinates": [-117.736347,33.791626] 
    6354        }, 
    6355    "properties":  
    6356        {"street": "N OF CHAPMAN", "color": "lime", "perpx": "0.530321", "perpy": "-0.847797"} 
    6357 },   
    6358 { 
    6359    "type": "Feature", 
    6360    "id": "241 N 33.68", 
    6361    "geometry": 
    6362        { 
    6363         "type": "Point", 
    6364         "coordinates": [-117.731726,33.794622] 
    6365        }, 
    6366    "properties":  
    6367        {"street": "S OF SANT CREEK", "color": "lime", "perpx": "0.51738", "perpy": "-0.855756"} 
    6368 },   
    6369 { 
    6370    "type": "Feature", 
    6371    "id": "241 N 34.03", 
    6372    "geometry": 
    6373        { 
    6374         "type": "Point", 
    6375         "coordinates": [-117.72693,33.798225] 
    6376        }, 
    6377    "properties":  
    6378        {"street": "N OF SANT CR1", "color": "lime", "perpx": "0.632614", "perpy": "-0.774467"} 
    6379 },   
    6380 { 
    6381    "type": "Feature", 
    6382    "id": "241 N 34.38", 
    6383    "geometry": 
    6384        { 
    6385         "type": "Point", 
    6386         "coordinates": [-117.724852,33.803371] 
    6387        }, 
    6388    "properties":  
    6389        {"street": "N OF SANT CR2", "color": "lime", "perpx": "0.937209", "perpy": "-0.348768"} 
    6390 },   
    6391 { 
    6392    "type": "Feature", 
    6393    "id": "241 N 34.72", 
    6394    "geometry": 
    6395        { 
    6396         "type": "Point", 
    6397         "coordinates": [-117.722969,33.808431] 
    6398        }, 
    6399    "properties":  
    6400        {"street": "S OF OAK", "color": "lime", "perpx": "0.843058", "perpy": "-0.537823"} 
    6401 },   
    6402 { 
    6403    "type": "Feature", 
    6404    "id": "241 N 35.08", 
    6405    "geometry": 
    6406        { 
    6407         "type": "Point", 
    6408         "coordinates": [-117.719677,33.813341] 
    6409        }, 
    6410    "properties":  
    6411        {"street": "N OF OAK", "color": "lime", "perpx": "0.916423", "perpy": "-0.400211"} 
    6412 },   
    6413 { 
    6414    "type": "Feature", 
    6415    "id": "241 N 35.43", 
    6416    "geometry": 
    6417        { 
    6418         "type": "Point", 
    6419         "coordinates": [-117.717431,33.818484] 
    6420        }, 
    6421    "properties":  
    6422        {"street": "S OF SCE OC", "color": "lime", "perpx": "0.916423", "perpy": "-0.400211"} 
    6423 },   
    6424 { 
    6425    "type": "Feature", 
    6426    "id": "241 N 35.82", 
    6427    "geometry": 
    6428        { 
    6429         "type": "Point", 
    6430         "coordinates": [-117.715964,33.824439] 
    6431        }, 
    6432    "properties":  
    6433        {"street": "WINDY RIDGE 1", "color": "lime", "perpx": "0.994559", "perpy": "0.104175"} 
    6434 },   
    6435 { 
    6436    "type": "Feature", 
    6437    "id": "241 N 36.14", 
    6438    "geometry": 
    6439        { 
    6440         "type": "Point", 
    6441         "coordinates": [-117.716485,33.829413] 
    6442        }, 
    6443    "properties":  
    6444        {"street": "WINDY RIDGE 2", "color": "lime", "perpx": "0.986289", "perpy": "0.165028"} 
    6445 },   
    6446 { 
    6447    "type": "Feature", 
    6448    "id": "241 N 36.37", 
    6449    "geometry": 
    6450        { 
    6451         "type": "Point", 
    6452         "coordinates": [-117.717081,33.832975] 
    6453        }, 
    6454    "properties":  
    6455        {"street": "WINDY RIDGE 3", "color": "lime", "perpx": "0.986289", "perpy": "0.165028"} 
    6456 },   
    6457 { 
    6458    "type": "Feature", 
    6459    "id": "241 N 36.82", 
    6460    "geometry": 
    6461        { 
    6462         "type": "Point", 
    6463         "coordinates": [-117.717671,33.839984] 
    6464        }, 
    6465    "properties":  
    6466        {"street": "W R WILDLIFE", "color": "lime", "perpx": "0.987599", "perpy": "-0.156997"} 
    6467 },   
    6468 { 
    6469    "type": "Feature", 
    6470    "id": "241 N 37.12", 
    6471    "geometry": 
    6472        { 
    6473         "type": "Point", 
    6474         "coordinates": [-117.716931,33.844639] 
    6475        }, 
    6476    "properties":  
    6477        {"street": "N OF W R WILDLIFE 1", "color": "lime", "perpx": "0.999335", "perpy": "-0.036462"} 
    6478 },   
    6479 { 
    6480    "type": "Feature", 
    6481    "id": "241 N 37.49", 
    6482    "geometry": 
    6483        { 
    6484         "type": "Point", 
    6485         "coordinates": [-117.71672,33.850422] 
    6486        }, 
    6487    "properties":  
    6488        {"street": "N OF W R WILDLIFE 2", "color": "lime", "perpx": "0.999335", "perpy": "-0.036462"} 
    6489 },   
    6490 { 
    6491    "type": "Feature", 
    6492    "id": "241 N 37.88", 
    6493    "geometry": 
    6494        { 
    6495         "type": "Point", 
    6496         "coordinates": [-117.716773,33.856526] 
    6497        }, 
    6498    "properties":  
    6499        {"street": "N OF W R WILDLIFE 3", "color": "lime", "perpx": "0.997345", "perpy": "-0.072816"} 
    6500 },   
    6501 { 
    6502    "type": "Feature", 
    6503    "id": "241 S 18.3", 
    6504    "geometry": 
    6505        { 
    6506         "type": "Point", 
    6507         "coordinates": [-117.602781,33.640172] 
    6508        }, 
    6509    "properties":  
    6510        {"street": "SANTA MARGUERITA", "color": "lime", "perpx": "0", "perpy": "0"} 
    6511 },   
    6512 { 
    6513    "type": "Feature", 
    6514    "id": "241 S 18.8", 
    6515    "geometry": 
    6516        { 
    6517         "type": "Point", 
    6518         "coordinates": [-117.606132,33.646855] 
    6519        }, 
    6520    "properties":  
    6521        {"street": "TRABUCO CREEK", "color": "lime", "perpx": "-0.899199", "perpy": "-0.437539"} 
    6522 },   
    6523 { 
    6524    "type": "Feature", 
    6525    "id": "241 S 19.3", 
    6526    "geometry": 
    6527        { 
    6528         "type": "Point", 
    6529         "coordinates": [-117.612415,33.651498] 
    6530        }, 
    6531    "properties":  
    6532        {"street": "MELINDA", "color": "lime", "perpx": "-0.198462", "perpy": "-0.980109"} 
    6533 },   
    6534 { 
    6535    "type": "Feature", 
    6536    "id": "241 S 19.76", 
    6537    "geometry": 
    6538        { 
    6539         "type": "Point", 
    6540         "coordinates": [-117.620208,33.653076] 
    6541        }, 
    6542    "properties":  
    6543        {"street": "LOS ALISOS 1", "color": "lime", "perpx": "-0.333218", "perpy": "-0.94285"} 
    6544 },   
    6545 { 
    6546    "type": "Feature", 
    6547    "id": "241 S 20.54", 
    6548    "geometry": 
    6549        { 
    6550         "type": "Point", 
    6551         "coordinates": [-117.632465,33.657968] 
    6552        }, 
    6553    "properties":  
    6554        {"street": "UPPER OSO", "color": "lime", "perpx": "-0.376202", "perpy": "-0.926538"} 
    6555 },   
    6556 { 
    6557    "type": "Feature", 
    6558    "id": "241 S 22.02", 
    6559    "geometry": 
    6560        { 
    6561         "type": "Point", 
    6562         "coordinates": [-117.654243,33.669094] 
    6563        }, 
    6564    "properties":  
    6565        {"street": "PORTOLA S 2", "color": "lime", "perpx": "-0.353878", "perpy": "-0.935292"} 
    6566 },   
    6567 { 
    6568    "type": "Feature", 
    6569    "id": "241 S 22.61", 
    6570    "geometry": 
    6571        { 
    6572         "type": "Point", 
    6573         "coordinates": [-117.663291,33.67261] 
    6574        }, 
    6575    "properties":  
    6576        {"street": "LAKE FOREST", "color": "lime", "perpx": "-0.360927", "perpy": "-0.932594"} 
    6577 },   
    6578 { 
    6579    "type": "Feature", 
    6580    "id": "241 S 22.81", 
    6581    "geometry": 
    6582        { 
    6583         "type": "Point", 
    6584         "coordinates": [-117.666424,33.673843] 
    6585        }, 
    6586    "properties":  
    6587        {"street": "BAKE", "color": "lime", "perpx": "-0.418678", "perpy": "-0.908135"} 
    6588 },   
    6589 { 
    6590    "type": "Feature", 
    6591    "id": "241 S 23.2", 
    6592    "geometry": 
    6593        { 
    6594         "type": "Point", 
    6595         "coordinates": [-117.671674,33.677298] 
    6596        }, 
    6597    "properties":  
    6598        {"street": "ALTON 1", "color": "lime", "perpx": "-0.779725", "perpy": "-0.626123"} 
    6599 },   
    6600 { 
    6601    "type": "Feature", 
    6602    "id": "241 S 23.54", 
    6603    "geometry": 
    6604        { 
    6605         "type": "Point", 
    6606         "coordinates": [-117.674584,33.681564] 
    6607        }, 
    6608    "properties":  
    6609        {"street": "ALTON 2", "color": "lime", "perpx": "-0.800996", "perpy": "-0.59867"} 
    6610 },   
    6611 { 
    6612    "type": "Feature", 
    6613    "id": "241 S 24.16", 
    6614    "geometry": 
    6615        { 
    6616         "type": "Point", 
    6617         "coordinates": [-117.681883,33.688049] 
    6618        }, 
    6619    "properties":  
    6620        {"street": "N OF ALTON", "color": "lime", "perpx": "-0.574042", "perpy": "-0.818826"} 
    6621 },   
    6622 { 
    6623    "type": "Feature", 
    6624    "id": "241 S 25.15", 
    6625    "geometry": 
    6626        { 
    6627         "type": "Point", 
    6628         "coordinates": [-117.695456,33.696803] 
    6629        }, 
    6630    "properties":  
    6631        {"street": "PORTOLA N2", "color": "lime", "perpx": "-0.435805", "perpy": "-0.900041"} 
    6632 },   
    6633 { 
    6634    "type": "Feature", 
    6635    "id": "241 S 25.43", 
    6636    "geometry": 
    6637        { 
    6638         "type": "Point", 
    6639         "coordinates": [-117.699698,33.698857] 
    6640        }, 
    6641    "properties":  
    6642        {"street": "TOMATO 1", "color": "lime", "perpx": "-0.432673", "perpy": "-0.901551"} 
    6643 },   
    6644 { 
    6645    "type": "Feature", 
    6646    "id": "241 S 25.72", 
    6647    "geometry": 
    6648        { 
    6649         "type": "Point", 
    6650         "coordinates": [-117.704109,33.700961] 
    6651        }, 
    6652    "properties":  
    6653        {"street": "TOMATO 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    6654 },   
    6655 { 
    6656    "type": "Feature", 
    6657    "id": "241 S 26.35", 
    6658    "geometry": 
    6659        { 
    6660         "type": "Point", 
    6661         "coordinates": [-117.71368,33.705538] 
    6662        }, 
    6663    "properties":  
    6664        {"street": "TOMATO 4", "color": "lime", "perpx": "-0.356385", "perpy": "-0.934339"} 
    6665 },   
    6666 { 
    6667    "type": "Feature", 
    6668    "id": "241 S 26.58", 
    6669    "geometry": 
    6670        { 
    6671         "type": "Point", 
    6672         "coordinates": [-117.717092,33.707275] 
    6673        }, 
    6674    "properties":  
    6675        {"street": "133-1", "color": "lime", "perpx": "-0.712032", "perpy": "-0.702147"} 
    6676 },   
    6677 { 
    6678    "type": "Feature", 
    6679    "id": "241 S 26.76", 
    6680    "geometry": 
    6681        { 
    6682         "type": "Point", 
    6683         "coordinates": [-117.719081,33.709292] 
    6684        }, 
    6685    "properties":  
    6686        {"street": "133-2", "color": "lime", "perpx": "-0.712032", "perpy": "-0.702147"} 
    6687 },   
    6688 { 
    6689    "type": "Feature", 
    6690    "id": "241 S 27.12", 
    6691    "geometry": 
    6692        { 
    6693         "type": "Point", 
    6694         "coordinates": [-117.720884,33.714276] 
    6695        }, 
    6696    "properties":  
    6697        {"street": "133-3", "color": "lime", "perpx": "-0.999239", "perpy": "0.039011"} 
    6698 },   
    6699 { 
    6700    "type": "Feature", 
    6701    "id": "241 S 27.43", 
    6702    "geometry": 
    6703        { 
    6704         "type": "Point", 
    6705         "coordinates": [-117.72046,33.718798] 
    6706        }, 
    6707    "properties":  
    6708        {"street": "BEE CANYON", "color": "lime", "perpx": "-0.99165", "perpy": "0.128962"} 
    6709 },   
    6710 { 
    6711    "type": "Feature", 
    6712    "id": "241 S 27.74", 
    6713    "geometry": 
    6714        { 
    6715         "type": "Point", 
    6716         "coordinates": [-117.719567,33.723287] 
    6717        }, 
    6718    "properties":  
    6719        {"street": "N OF 133", "color": "lime", "perpx": "-0.98462", "perpy": "0.174712"} 
    6720 },   
    6721 { 
    6722    "type": "Feature", 
    6723    "id": "241 S 28.09", 
    6724    "geometry": 
    6725        { 
    6726         "type": "Point", 
    6727         "coordinates": [-117.718803,33.728394] 
    6728        }, 
    6729    "properties":  
    6730        {"street": "S OF JEFFREY", "color": "lime", "perpx": "-0.991031", "perpy": "0.13363"} 
    6731 },   
    6732 { 
    6733    "type": "Feature", 
    6734    "id": "241 S 28.44", 
    6735    "geometry": 
    6736        { 
    6737         "type": "Point", 
    6738         "coordinates": [-117.71813,33.733511] 
    6739        }, 
    6740    "properties":  
    6741        {"street": "N OF JEFFREY", "color": "lime", "perpx": "-0.991631", "perpy": "0.129107"} 
    6742 },   
    6743 { 
    6744    "type": "Feature", 
    6745    "id": "241 S 28.73", 
    6746    "geometry": 
    6747        { 
    6748         "type": "Point", 
    6749         "coordinates": [-117.717633,33.73777] 
    6750        }, 
    6751    "properties":  
    6752        {"street": "N OF HAUL ROAD", "color": "lime", "perpx": "-0.992127", "perpy": "-0.125239"} 
    6753 },   
    6754 { 
    6755    "type": "Feature", 
    6756    "id": "241 S 28.97", 
    6757    "geometry": 
    6758        { 
    6759         "type": "Point", 
    6760         "coordinates": [-117.718081,33.741319] 
    6761        }, 
    6762    "properties":  
    6763        {"street": "HAUL-CULVER", "color": "lime", "perpx": "-0.992127", "perpy": "-0.125239"} 
    6764 },   
    6765 { 
    6766    "type": "Feature", 
    6767    "id": "241 S 29.34", 
    6768    "geometry": 
    6769        { 
    6770         "type": "Point", 
    6771         "coordinates": [-117.721164,33.746148] 
    6772        }, 
    6773    "properties":  
    6774        {"street": "S OF CULVER S", "color": "lime", "perpx": "-0.534518", "perpy": "-0.845157"} 
    6775 },   
    6776 { 
    6777    "type": "Feature", 
    6778    "id": "241 S 29.69", 
    6779    "geometry": 
    6780        { 
    6781         "type": "Point", 
    6782         "coordinates": [-117.726132,33.74929] 
    6783        }, 
    6784    "properties":  
    6785        {"street": "N OF CULVER S", "color": "lime", "perpx": "-0.530397", "perpy": "-0.84775"} 
    6786 },   
    6787 { 
    6788    "type": "Feature", 
    6789    "id": "241 S 30", 
    6790    "geometry": 
    6791        { 
    6792         "type": "Point", 
    6793         "coordinates": [-117.730537,33.752046] 
    6794        }, 
    6795    "properties":  
    6796        {"street": "CULVER-CULVER 1", "color": "lime", "perpx": "-0.773985", "perpy": "-0.633203"} 
    6797 },   
    6798 { 
    6799    "type": "Feature", 
    6800    "id": "241 S 30.33", 
    6801    "geometry": 
    6802        { 
    6803         "type": "Point", 
    6804         "coordinates": [-117.732805,33.756517] 
    6805        }, 
    6806    "properties":  
    6807        {"street": "CULVER-CULVER 2", "color": "lime", "perpx": "-0.999994", "perpy": "0.00336"} 
    6808 },   
    6809 { 
    6810    "type": "Feature", 
    6811    "id": "241 S 30.72", 
    6812    "geometry": 
    6813        { 
    6814         "type": "Point", 
    6815         "coordinates": [-117.732284,33.762314] 
    6816        }, 
    6817    "properties":  
    6818        {"street": "S OF CULVER N", "color": "lime", "perpx": "-0.986194", "perpy": "-0.165595"} 
    6819 },   
    6820 { 
    6821    "type": "Feature", 
    6822    "id": "241 S 31.03", 
    6823    "geometry": 
    6824        { 
    6825         "type": "Point", 
    6826         "coordinates": [-117.734012,33.766637] 
    6827        }, 
    6828    "properties":  
    6829        {"street": "N OF CULVER N", "color": "lime", "perpx": "-0.712957", "perpy": "-0.701208"} 
    6830 },   
    6831 { 
    6832    "type": "Feature", 
    6833    "id": "241 S 31.44", 
    6834    "geometry": 
    6835        { 
    6836         "type": "Point", 
    6837         "coordinates": [-117.739531,33.770618] 
    6838        }, 
    6839    "properties":  
    6840        {"street": "S OF EOC OC", "color": "lime", "perpx": "-0.547969", "perpy": "-0.836499"} 
    6841 },   
    6842 { 
    6843    "type": "Feature", 
    6844    "id": "241 S 31.88", 
    6845    "geometry": 
    6846        { 
    6847         "type": "Point", 
    6848         "coordinates": [-117.745706,33.774682] 
    6849        }, 
    6850    "properties":  
    6851        {"street": "CHAPMAN 1", "color": "lime", "perpx": "-0.550286", "perpy": "-0.834976"} 
    6852 },   
    6853 { 
    6854    "type": "Feature", 
    6855    "id": "241 S 32.29", 
    6856    "geometry": 
    6857        { 
    6858         "type": "Point", 
    6859         "coordinates": [-117.7482,33.780289] 
    6860        }, 
    6861    "properties":  
    6862        {"street": "CHAPMAN 2", "color": "lime", "perpx": "-0.997214", "perpy": "0.074589"} 
    6863 },   
    6864 { 
    6865    "type": "Feature", 
    6866    "id": "241 S 32.71", 
    6867    "geometry": 
    6868        { 
    6869         "type": "Point", 
    6870         "coordinates": [-117.745698,33.786034] 
    6871        }, 
    6872    "properties":  
    6873        {"street": "CHAPMAN 3", "color": "lime", "perpx": "-0.656814", "perpy": "0.754052"} 
    6874 },   
    6875 { 
    6876    "type": "Feature", 
    6877    "id": "241 S 32.97", 
    6878    "geometry": 
    6879        { 
    6880         "type": "Point", 
    6881         "coordinates": [-117.74219,33.788553] 
    6882        }, 
    6883    "properties":  
    6884        {"street": "CHAPMAN 4", "color": "lime", "perpx": "-0.536155", "perpy": "0.84412"} 
    6885 },   
    6886 { 
    6887    "type": "Feature", 
    6888    "id": "241 S 33.35", 
    6889    "geometry": 
    6890        { 
    6891         "type": "Point", 
    6892         "coordinates": [-117.73675,33.791961] 
    6893        }, 
    6894    "properties":  
    6895        {"street": "N OF CHAPMAN", "color": "lime", "perpx": "-0.511805", "perpy": "0.859102"} 
    6896 },   
    6897 { 
    6898    "type": "Feature", 
    6899    "id": "241 S 33.68", 
    6900    "geometry": 
    6901        { 
    6902         "type": "Point", 
    6903         "coordinates": [-117.732055,33.794954] 
    6904        }, 
    6905    "properties":  
    6906        {"street": "S OF SANT CREEK", "color": "lime", "perpx": "-0.521007", "perpy": "0.853552"} 
    6907 },   
    6908 { 
    6909    "type": "Feature", 
    6910    "id": "241 S 34.03", 
    6911    "geometry": 
    6912        { 
    6913         "type": "Point", 
    6914         "coordinates": [-117.727285,33.798558] 
    6915        }, 
    6916    "properties":  
    6917        {"street": "N OF SANT CR1", "color": "lime", "perpx": "-0.634504", "perpy": "0.77292"} 
    6918 },   
    6919 { 
    6920    "type": "Feature", 
    6921    "id": "241 S 34.38", 
    6922    "geometry": 
    6923        { 
    6924         "type": "Point", 
    6925         "coordinates": [-117.725304,33.803726] 
    6926        }, 
    6927    "properties":  
    6928        {"street": "N OF SANT CR2", "color": "lime", "perpx": "-0.931918", "perpy": "0.36267"} 
    6929 },   
    6930 { 
    6931    "type": "Feature", 
    6932    "id": "241 S 34.72", 
    6933    "geometry": 
    6934        { 
    6935         "type": "Point", 
    6936         "coordinates": [-117.72335,33.808747] 
    6937        }, 
    6938    "properties":  
    6939        {"street": "S OF OAK", "color": "lime", "perpx": "-0.84356", "perpy": "0.537034"} 
    6940 },   
    6941 { 
    6942    "type": "Feature", 
    6943    "id": "241 S 35.08", 
    6944    "geometry": 
    6945        { 
    6946         "type": "Point", 
    6947         "coordinates": [-117.720094,33.81365] 
    6948        }, 
    6949    "properties":  
    6950        {"street": "N OF OAK", "color": "lime", "perpx": "-0.915178", "perpy": "0.40305"} 
    6951 },   
    6952 { 
    6953    "type": "Feature", 
    6954    "id": "241 S 35.43", 
    6955    "geometry": 
    6956        { 
    6957         "type": "Point", 
    6958         "coordinates": [-117.71784,33.818768] 
    6959        }, 
    6960    "properties":  
    6961        {"street": "S OF SCE OC", "color": "lime", "perpx": "-0.915178", "perpy": "0.40305"} 
    6962 },   
    6963 { 
    6964    "type": "Feature", 
    6965    "id": "241 S 35.82", 
    6966    "geometry": 
    6967        { 
    6968         "type": "Point", 
    6969         "coordinates": [-117.717155,33.824805] 
    6970        }, 
    6971    "properties":  
    6972        {"street": "WINDY RIDGE 1", "color": "lime", "perpx": "-0.999904", "perpy": "-0.013843"} 
    6973 },   
    6974 { 
    6975    "type": "Feature", 
    6976    "id": "241 S 36.14", 
    6977    "geometry": 
    6978        { 
    6979         "type": "Point", 
    6980         "coordinates": [-117.717224,33.829789] 
    6981        }, 
    6982    "properties":  
    6983        {"street": "WINDY RIDGE 2", "color": "lime", "perpx": "-0.990694", "perpy": "-0.136107"} 
    6984 },   
    6985 { 
    6986    "type": "Feature", 
    6987    "id": "241 S 36.43", 
    6988    "geometry": 
    6989        { 
    6990         "type": "Point", 
    6991         "coordinates": [-117.717841,33.83428] 
    6992        }, 
    6993    "properties":  
    6994        {"street": "WINDY RIDGE 3", "color": "lime", "perpx": "-0.990694", "perpy": "-0.136107"} 
    6995 },   
    6996 { 
    6997    "type": "Feature", 
    6998    "id": "241 S 36.82", 
    6999    "geometry": 
    7000        { 
    7001         "type": "Point", 
    7002         "coordinates": [-117.718159,33.840335] 
    7003        }, 
    7004    "properties":  
    7005        {"street": "W R WILDLIFE", "color": "lime", "perpx": "-0.985859", "perpy": "0.167575"} 
    7006 },   
    7007 { 
    7008    "type": "Feature", 
    7009    "id": "241 S 37.12", 
    7010    "geometry": 
    7011        { 
    7012         "type": "Point", 
    7013         "coordinates": [-117.717372,33.844965] 
    7014        }, 
    7015    "properties":  
    7016        {"street": "N OF W R WILDLIFE 1", "color": "lime", "perpx": "-0.999815", "perpy": "0.019254"} 
    7017 },   
    7018 { 
    7019    "type": "Feature", 
    7020    "id": "241 S 37.49", 
    7021    "geometry": 
    7022        { 
    7023         "type": "Point", 
    7024         "coordinates": [-117.717261,33.850729] 
    7025        }, 
    7026    "properties":  
    7027        {"street": "N OF W R WILDLIFE 2", "color": "lime", "perpx": "-0.999815", "perpy": "0.019254"} 
    7028 },   
    7029 { 
    7030    "type": "Feature", 
    7031    "id": "241 S 37.88", 
    7032    "geometry": 
    7033        { 
    7034         "type": "Point", 
    7035         "coordinates": [-117.717346,33.856811] 
    7036        }, 
    7037    "properties":  
    7038        {"street": "N OF W R WILDLIFE 3", "color": "lime", "perpx": "-0.999884", "perpy": "-0.015214"} 
    7039 },   
    7040 { 
    7041    "type": "Feature", 
    7042    "id": "241 S 38.23", 
    7043    "geometry": 
    7044        { 
    7045         "type": "Point", 
    7046         "coordinates": [-117.717429,33.862266] 
    7047        }, 
    7048    "properties":  
    7049        {"street": "S OF 91", "color": "lime", "perpx": "-0.999884", "perpy": "-0.015214"} 
    7050 },   
    7051  
    7052 { 
    7053    "type": "Feature", 
    7054    "id": "261 N 0.04", 
    7055    "geometry": 
    7056        { 
    7057         "type": "Point", 
    7058         "coordinates": [-117.800349,33.712252] 
    7059        }, 
    7060    "properties":  
    7061        {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
    7062 },   
    7063 { 
    7064    "type": "Feature", 
    7065    "id": "261 N 0.31", 
    7066    "geometry": 
    7067        { 
    7068         "type": "Point", 
    7069         "coordinates": [-117.797696,33.715376] 
    7070        }, 
    7071    "properties":  
    7072        {"street": "WALNUT 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    7073 },   
    7074 { 
    7075    "type": "Feature", 
    7076    "id": "261 N 0.5", 
    7077    "geometry": 
    7078        { 
    7079         "type": "Point", 
    7080         "coordinates": [-117.795181,33.717083] 
    7081        }, 
    7082    "properties":  
    7083        {"street": "S OF 5", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
    7084 },   
    7085 { 
    7086    "type": "Feature", 
    7087    "id": "261 N 0.9", 
    7088    "geometry": 
    7089        { 
    7090         "type": "Point", 
    7091         "coordinates": [-117.789435,33.720342] 
    7092        }, 
    7093    "properties":  
    7094        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "0.493349", "perpy": "-0.869832"} 
    7095 },   
    7096 { 
    7097    "type": "Feature", 
    7098    "id": "261 N 1.35", 
    7099    "geometry": 
    7100        { 
    7101         "type": "Point", 
    7102         "coordinates": [-117.782735,33.72367] 
    7103        }, 
    7104    "properties":  
    7105        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"} 
    7106 },   
    7107 { 
    7108    "type": "Feature", 
    7109    "id": "261 N 1.75", 
    7110    "geometry": 
    7111        { 
    7112         "type": "Point", 
    7113         "coordinates": [-117.777645,33.727564] 
    7114        }, 
    7115    "properties":  
    7116        {"street": "IRVINE BLVD 2", "color": "lime", "perpx": "0.607612", "perpy": "-0.794234"} 
    7117 },   
    7118 { 
    7119    "type": "Feature", 
    7120    "id": "261 N 2.24", 
    7121    "geometry": 
    7122        { 
    7123         "type": "Point", 
    7124         "coordinates": [-117.772751,33.733387] 
    7125        }, 
    7126    "properties":  
    7127        {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "0.766466", "perpy": "-0.642285"} 
    7128 },   
    7129 { 
    7130    "type": "Feature", 
    7131    "id": "261 N 2.24", 
    7132    "geometry": 
    7133        { 
    7134         "type": "Point", 
    7135         "coordinates": [-117.772751,33.733387] 
    7136        }, 
    7137    "properties":  
    7138        {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "0.766466", "perpy": "-0.642285"} 
    7139 },   
    7140 { 
    7141    "type": "Feature", 
    7142    "id": "261 N 2.71", 
    7143    "geometry": 
    7144        { 
    7145         "type": "Point", 
    7146         "coordinates": [-117.768065,33.738979] 
    7147        }, 
    7148    "properties":  
    7149        {"street": "PORTOLA  1", "color": "lime", "perpx": "0.904237", "perpy": "-0.42703"} 
    7150 },   
    7151 { 
    7152    "type": "Feature", 
    7153    "id": "261 N 3.16", 
    7154    "geometry": 
    7155        { 
    7156         "type": "Point", 
    7157         "coordinates": [-117.765231,33.74498] 
    7158        }, 
    7159    "properties":  
    7160        {"street": "PORTOLA 2", "color": "lime", "perpx": "0.983838", "perpy": "-0.179058"} 
    7161 },   
    7162 { 
    7163    "type": "Feature", 
    7164    "id": "261 N 3.51", 
    7165    "geometry": 
    7166        { 
    7167         "type": "Point", 
    7168         "coordinates": [-117.764319,33.749991] 
    7169        }, 
    7170    "properties":  
    7171        {"street": "PORTOLA 3", "color": "lime", "perpx": "0.984423", "perpy": "-0.175816"} 
    7172 },   
    7173 { 
    7174    "type": "Feature", 
    7175    "id": "261 N 3.79", 
    7176    "geometry": 
    7177        { 
    7178         "type": "Point", 
    7179         "coordinates": [-117.763603,33.754] 
    7180        }, 
    7181    "properties":  
    7182        {"street": "PORTOLA 4", "color": "lime", "perpx": "0.984423", "perpy": "-0.175816"} 
    7183 },   
    7184 { 
    7185    "type": "Feature", 
    7186    "id": "261 N 4.14", 
    7187    "geometry": 
    7188        { 
    7189         "type": "Point", 
    7190         "coordinates": [-117.76135,33.758685] 
    7191        }, 
    7192    "properties":  
    7193        {"street": "S OF UTILITY", "color": "lime", "perpx": "0.885102", "perpy": "-0.465397"} 
    7194 },   
    7195 { 
    7196    "type": "Feature", 
    7197    "id": "261 N 4.46", 
    7198    "geometry": 
    7199        { 
    7200         "type": "Point", 
    7201         "coordinates": [-117.759099,33.762966] 
    7202        }, 
    7203    "properties":  
    7204        {"street": "N OF UTILITY", "color": "lime", "perpx": "0.980133", "perpy": "-0.198343"} 
    7205 },   
    7206 { 
    7207    "type": "Feature", 
    7208    "id": "261 N 4.7", 
    7209    "geometry": 
    7210        { 
    7211         "type": "Point", 
    7212         "coordinates": [-117.758414,33.766351] 
    7213        }, 
    7214    "properties":  
    7215        {"street": "HANDY 1", "color": "lime", "perpx": "0.999501", "perpy": "-0.031586"} 
    7216 },   
    7217 { 
    7218    "type": "Feature", 
    7219    "id": "261 N 4.93", 
    7220    "geometry": 
    7221        { 
    7222         "type": "Point", 
    7223         "coordinates": [-117.75831,33.769642] 
    7224        }, 
    7225    "properties":  
    7226        {"street": "HANDY 2", "color": "lime", "perpx": "0.997022", "perpy": "-0.077121"} 
    7227 },   
    7228 { 
    7229    "type": "Feature", 
    7230    "id": "261 N 5.27", 
    7231    "geometry": 
    7232        { 
    7233         "type": "Point", 
    7234         "coordinates": [-117.757935,33.77449] 
    7235        }, 
    7236    "properties":  
    7237        {"street": "HANDY 3", "color": "lime", "perpx": "0.997022", "perpy": "-0.077121"} 
    7238 },   
    7239 { 
    7240    "type": "Feature", 
    7241    "id": "261 N 5.64", 
    7242    "geometry": 
    7243        { 
    7244         "type": "Point", 
    7245         "coordinates": [-117.75497,33.779145] 
    7246        }, 
    7247    "properties":  
    7248        {"street": "CHAPMAN", "color": "lime", "perpx": "0", "perpy": "0"} 
    7249 },   
    7250 { 
    7251    "type": "Feature", 
    7252    "id": "261 S 0.04", 
    7253    "geometry": 
    7254        { 
    7255         "type": "Point", 
    7256         "coordinates": [-117.800638,33.7124] 
    7257        }, 
    7258    "properties":  
    7259        {"street": "JAMBOREE", "color": "lime", "perpx": "0", "perpy": "0"} 
    7260 },   
    7261 { 
    7262    "type": "Feature", 
    7263    "id": "261 S 0.5", 
    7264    "geometry": 
    7265        { 
    7266         "type": "Point", 
    7267         "coordinates": [-117.795434,33.717315] 
    7268        }, 
    7269    "properties":  
    7270        {"street": "S OF 5", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
    7271 },   
    7272 { 
    7273    "type": "Feature", 
    7274    "id": "261 S 0.9", 
    7275    "geometry": 
    7276        { 
    7277         "type": "Point", 
    7278         "coordinates": [-117.789693,33.720604] 
    7279        }, 
    7280    "properties":  
    7281        {"street": "EL CAMINO REAL", "color": "lime", "perpx": "-0.497099", "perpy": "0.867694"} 
    7282 },   
    7283 { 
    7284    "type": "Feature", 
    7285    "id": "261 S 1.35", 
    7286    "geometry": 
    7287        { 
    7288         "type": "Point", 
    7289         "coordinates": [-117.782999,33.723902] 
    7290        }, 
    7291    "properties":  
    7292        {"street": "IRVINE BLVD 1", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"} 
    7293 },   
    7294 { 
    7295    "type": "Feature", 
    7296    "id": "261 S 1.75", 
    7297    "geometry": 
    7298        { 
    7299         "type": "Point", 
    7300         "coordinates": [-117.777924,33.727725] 
    7301        }, 
    7302    "properties":  
    7303        {"street": "IRVINE BLVD 2", "color": "lime", "perpx": "-0.601686", "perpy": "0.798733"} 
    7304 },   
    7305 { 
    7306    "type": "Feature", 
    7307    "id": "261 S 2.24", 
    7308    "geometry": 
    7309        { 
    7310         "type": "Point", 
    7311         "coordinates": [-117.773023,33.733529] 
    7312        }, 
    7313    "properties":  
    7314        {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "-0.769852", "perpy": "0.638223"} 
    7315 },   
    7316 { 
    7317    "type": "Feature", 
    7318    "id": "261 S 2.24", 
    7319    "geometry": 
    7320        { 
    7321         "type": "Point", 
    7322         "coordinates": [-117.773023,33.733529] 
    7323        }, 
    7324    "properties":  
    7325        {"street": "IRVINE RANCH FSTRK", "color": "lime", "perpx": "-0.769852", "perpy": "0.638223"} 
    7326 },   
    7327 { 
    7328    "type": "Feature", 
    7329    "id": "261 S 2.71", 
    7330    "geometry": 
    7331        { 
    7332         "type": "Point", 
    7333         "coordinates": [-117.768378,33.739132] 
    7334        }, 
    7335    "properties":  
    7336        {"street": "PORTOLA  1", "color": "lime", "perpx": "-0.910548", "perpy": "0.413404"} 
    7337 },   
    7338 { 
    7339    "type": "Feature", 
    7340    "id": "261 S 3.16", 
    7341    "geometry": 
    7342        { 
    7343         "type": "Point", 
    7344         "coordinates": [-117.765643,33.745156] 
    7345        }, 
    7346    "properties":  
    7347        {"street": "PORTOLA 2", "color": "lime", "perpx": "-0.982145", "perpy": "0.188125"} 
    7348 },   
    7349 { 
    7350    "type": "Feature", 
    7351    "id": "261 S 3.51", 
    7352    "geometry": 
    7353        { 
    7354         "type": "Point", 
    7355         "coordinates": [-117.764687,33.750147] 
    7356        }, 
    7357    "properties":  
    7358        {"street": "PORTOLA 3", "color": "lime", "perpx": "-0.984863", "perpy": "0.173336"} 
    7359 },   
    7360 { 
    7361    "type": "Feature", 
    7362    "id": "261 S 3.79", 
    7363    "geometry": 
    7364        { 
    7365         "type": "Point", 
    7366         "coordinates": [-117.763983,33.754147] 
    7367        }, 
    7368    "properties":  
    7369        {"street": "PORTOLA 4", "color": "lime", "perpx": "-0.984863", "perpy": "0.173336"} 
    7370 },   
    7371 { 
    7372    "type": "Feature", 
    7373    "id": "261 S 4.14", 
    7374    "geometry": 
    7375        { 
    7376         "type": "Point", 
    7377         "coordinates": [-117.761762,33.758827] 
    7378        }, 
    7379    "properties":  
    7380        {"street": "S OF UTILITY", "color": "lime", "perpx": "-0.884264", "perpy": "0.466987"} 
    7381 },   
    7382 { 
    7383    "type": "Feature", 
    7384    "id": "261 S 4.46", 
    7385    "geometry": 
    7386        { 
    7387         "type": "Point", 
    7388         "coordinates": [-117.759498,33.763114] 
    7389        }, 
    7390    "properties":  
    7391        {"street": "N OF UTILITY", "color": "lime", "perpx": "-0.980989", "perpy": "0.194064"} 
    7392 },   
    7393 { 
    7394    "type": "Feature", 
    7395    "id": "261 S 4.7", 
    7396    "geometry": 
    7397        { 
    7398         "type": "Point", 
    7399         "coordinates": [-117.758825,33.766516] 
    7400        }, 
    7401    "properties":  
    7402        {"street": "HANDY 1", "color": "lime", "perpx": "-0.999193", "perpy": "0.040173"} 
    7403 },   
    7404 { 
    7405    "type": "Feature", 
    7406    "id": "261 S 4.93", 
    7407    "geometry": 
    7408        { 
    7409         "type": "Point", 
    7410         "coordinates": [-117.758692,33.769824] 
    7411        }, 
    7412    "properties":  
    7413        {"street": "HANDY 2", "color": "lime", "perpx": "-0.997492", "perpy": "0.070782"} 
    7414 },   
    7415 { 
    7416    "type": "Feature", 
    7417    "id": "261 S 5.27", 
    7418    "geometry": 
    7419        { 
    7420         "type": "Point", 
    7421         "coordinates": [-117.758346,33.7747] 
    7422        }, 
    7423    "properties":  
    7424        {"street": "HANDY 3", "color": "lime", "perpx": "-0.997492", "perpy": "0.070782"} 
    7425 },   
    7426 { 
    7427    "type": "Feature", 
    7428    "id": "261 S 5.64", 
    7429    "geometry": 
    7430        { 
    7431         "type": "Point", 
    7432         "coordinates": [-117.75529,33.779357] 
    7433        }, 
    7434    "properties":  
    7435        {"street": "CHAPMAN", "color": "lime", "perpx": "0", "perpy": "0"} 
    7436 },   
    7437  
    7438 { 
    7439    "type": "Feature", 
    7440    "id": "405 N 0.93", 
    7441    "geometry": 
    7442        { 
    7443         "type": "Point", 
    7444         "coordinates": [-117.746598,33.64809] 
    7445        }, 
    7446    "properties":  
    7447        {"street": "IRVINE C1", "color": "lime", "perpx": "0.282096", "perpy": "0.959386"} 
    7448 },   
    7449 { 
    7450    "type": "Feature", 
    7451    "id": "405 N 1.11", 
    7452    "geometry": 
    7453        { 
    7454         "type": "Point", 
    7455         "coordinates": [-117.74955,33.648958] 
    7456        }, 
    7457    "properties":  
    7458        {"street": "IRVINE C2", "color": "lime", "perpx": "0", "perpy": "0"} 
    7459 },   
    7460 { 
    7461    "type": "Feature", 
    7462    "id": "405 N 1.57", 
    7463    "geometry": 
    7464        { 
    7465         "type": "Point", 
    7466         "coordinates": [-117.757101,33.651141] 
    7467        }, 
    7468    "properties":  
    7469        {"street": "N OF 133", "color": "lime", "perpx": "0.202053", "perpy": "0.979375"} 
    7470 },   
    7471 { 
    7472    "type": "Feature", 
    7473    "id": "405 N 1.93", 
    7474    "geometry": 
    7475        { 
    7476         "type": "Point", 
    7477         "coordinates": [-117.763194,33.652204] 
    7478        }, 
    7479    "properties":  
    7480        {"street": "S OF 133", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"} 
    7481 },   
    7482 { 
    7483    "type": "Feature", 
    7484    "id": "405 N 2.35", 
    7485    "geometry": 
    7486        { 
    7487         "type": "Point", 
    7488         "coordinates": [-117.770173,33.65368] 
    7489        }, 
    7490    "properties":  
    7491        {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "0.206915", "perpy": "0.978359"} 
    7492 },   
    7493 { 
    7494    "type": "Feature", 
    7495    "id": "405 N 3.04", 
    7496    "geometry": 
    7497        { 
    7498         "type": "Point", 
    7499         "coordinates": [-117.780107,33.659163] 
    7500        }, 
    7501    "properties":  
    7502        {"street": "SAND CANYON", "color": "lime", "perpx": "0", "perpy": "0"} 
    7503 },   
    7504 { 
    7505    "type": "Feature", 
    7506    "id": "405 N 3.31", 
    7507    "geometry": 
    7508        { 
    7509         "type": "Point", 
    7510         "coordinates": [-117.784046,33.661319] 
    7511        }, 
    7512    "properties":  
    7513        {"street": "N OF SAND CANYON", "color": "lime", "perpx": "0.480131", "perpy": "0.877197"} 
    7514 },   
    7515 { 
    7516    "type": "Feature", 
    7517    "id": "405 N 3.86", 
    7518    "geometry": 
    7519        { 
    7520         "type": "Point", 
    7521         "coordinates": [-117.793258,33.663379] 
    7522        }, 
    7523    "properties":  
    7524        {"street": "JEFFREY 1", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
    7525 },   
    7526 { 
    7527    "type": "Feature", 
    7528    "id": "405 N 4.03", 
    7529    "geometry": 
    7530        { 
    7531         "type": "Point", 
    7532         "coordinates": [-117.796176,33.663798] 
    7533        }, 
    7534    "properties":  
    7535        {"street": "JEFFREY 2", "color": "lime", "perpx": "0.142134", "perpy": "0.989847"} 
    7536 },   
    7537 { 
    7538    "type": "Feature", 
    7539    "id": "405 N 5.01", 
    7540    "geometry": 
    7541        { 
    7542         "type": "Point", 
    7543         "coordinates": [-117.812902,33.666407] 
    7544        }, 
    7545    "properties":  
    7546        {"street": "YALE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
    7547 },   
    7548 { 
    7549    "type": "Feature", 
    7550    "id": "405 N 5.05", 
    7551    "geometry": 
    7552        { 
    7553         "type": "Point", 
    7554         "coordinates": [-117.813561,33.66659] 
    7555        }, 
    7556    "properties":  
    7557        {"street": "SPRUCE", "color": "lime", "perpx": "0.267568", "perpy": "0.963539"} 
    7558 },   
    7559 { 
    7560    "type": "Feature", 
    7561    "id": "405 N 5.55", 
    7562    "geometry": 
    7563        { 
    7564         "type": "Point", 
    7565         "coordinates": [-117.821657,33.669218] 
    7566        }, 
    7567    "properties":  
    7568        {"street": "CULVER 1", "color": "lime", "perpx": "0.332642", "perpy": "0.943053"} 
    7569 },   
    7570 { 
    7571    "type": "Feature", 
    7572    "id": "405 N 5.74", 
    7573    "geometry": 
    7574        { 
    7575         "type": "Point", 
    7576         "coordinates": [-117.824699,33.670291] 
    7577        }, 
    7578    "properties":  
    7579        {"street": "CULVER 2", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
    7580 },   
    7581 { 
    7582    "type": "Feature", 
    7583    "id": "405 N 6.21", 
    7584    "geometry": 
    7585        { 
    7586         "type": "Point", 
    7587         "coordinates": [-117.832271,33.672851] 
    7588        }, 
    7589    "properties":  
    7590        {"street": "HARVARD", "color": "lime", "perpx": "0.320278", "perpy": "0.947323"} 
    7591 },   
    7592 { 
    7593    "type": "Feature", 
    7594    "id": "405 N 6.85", 
    7595    "geometry": 
    7596        { 
    7597         "type": "Point", 
    7598         "coordinates": [-117.842488,33.676465] 
    7599        }, 
    7600    "properties":  
    7601        {"street": "JAMBOREE1", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
    7602 },   
    7603 { 
    7604    "type": "Feature", 
    7605    "id": "405 N 7.07", 
    7606    "geometry": 
    7607        { 
    7608         "type": "Point", 
    7609         "coordinates": [-117.845871,33.677945] 
    7610        }, 
    7611    "properties":  
    7612        {"street": "JAMBOREE2", "color": "lime", "perpx": "0.400805", "perpy": "0.916164"} 
    7613 },   
    7614 { 
    7615    "type": "Feature", 
    7616    "id": "405 N 7.73", 
    7617    "geometry": 
    7618        { 
    7619         "type": "Point", 
    7620         "coordinates": [-117.85598,33.682442] 
    7621        }, 
    7622    "properties":  
    7623        {"street": "MACARTHUR 1", "color": "lime", "perpx": "0.408917", "perpy": "0.912572"} 
    7624 },   
    7625 { 
    7626    "type": "Feature", 
    7627    "id": "405 N 8.26", 
    7628    "geometry": 
    7629        { 
    7630         "type": "Point", 
    7631         "coordinates": [-117.864081,33.686072] 
    7632        }, 
    7633    "properties":  
    7634        {"street": "AIRPORT", "color": "lime", "perpx": "0.321527", "perpy": "0.9469"} 
    7635 },   
    7636 { 
    7637    "type": "Feature", 
    7638    "id": "405 N 8.4", 
    7639    "geometry": 
    7640        { 
    7641         "type": "Point", 
    7642         "coordinates": [-117.866348,33.686795] 
    7643        }, 
    7644    "properties":  
    7645        {"street": "RED HILL", "color": "lime", "perpx": "0.126754", "perpy": "0.991934"} 
    7646 },   
    7647 { 
    7648    "type": "Feature", 
    7649    "id": "405 N 9.46", 
    7650    "geometry": 
    7651        { 
    7652         "type": "Point", 
    7653         "coordinates": [-117.884653,33.687523] 
    7654        }, 
    7655    "properties":  
    7656        {"street": "BRISTOL 1", "color": "lime", "perpx": "0.0", "perpy": "1.0"} 
    7657 },   
    7658 { 
    7659    "type": "Feature", 
    7660    "id": "405 N 9.65", 
    7661    "geometry": 
    7662        { 
    7663         "type": "Point", 
    7664         "coordinates": [-117.887956,33.687523] 
    7665        }, 
    7666    "properties":  
    7667        {"street": "BRISTOL 2", "color": "lime", "perpx": "0.0", "perpy": "1.0"} 
    7668 },   
    7669 { 
    7670    "type": "Feature", 
    7671    "id": "405 N 10.9", 
    7672    "geometry": 
    7673        { 
    7674         "type": "Point", 
    7675         "coordinates": [-117.909664,33.688017] 
    7676        }, 
    7677    "properties":  
    7678        {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
    7679 },   
    7680 { 
    7681    "type": "Feature", 
    7682    "id": "405 N 11.4", 
    7683    "geometry": 
    7684        { 
    7685         "type": "Point", 
    7686         "coordinates": [-117.918196,33.688872] 
    7687        }, 
    7688    "properties":  
    7689        {"street": "HARBOR 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    7690 },   
    7691 { 
    7692    "type": "Feature", 
    7693    "id": "405 N 12.16", 
    7694    "geometry": 
    7695        { 
    7696         "type": "Point", 
    7697         "coordinates": [-117.930032,33.693692] 
    7698        }, 
    7699    "properties":  
    7700        {"street": "HAMPSHIRE", "color": "lime", "perpx": "0.384478", "perpy": "0.923134"} 
    7701 },   
    7702 { 
    7703    "type": "Feature", 
    7704    "id": "405 N 12.85", 
    7705    "geometry": 
    7706        { 
    7707         "type": "Point", 
    7708         "coordinates": [-117.940729,33.69816] 
     2572{ 
     2573   "type": "Feature", 
     2574   "id": "405 S 10.48", 
     2575   "geometry": 
     2576       { 
     2577        "type": "Point", 
     2578        "coordinates": [-117.902507,33.687582] 
     2579       }, 
     2580   "properties":  
     2581       {"street": "N OF 73", "color": "lime", "perpx": "-0.028158", "perpy": "-0.999603"} 
     2582},   
     2583{ 
     2584   "type": "Feature", 
     2585   "id": "405 S 11.2", 
     2586   "geometry": 
     2587       { 
     2588        "type": "Point", 
     2589        "coordinates": [-117.915002,33.687942] 
     2590       }, 
     2591   "properties":  
     2592       {"street": "HARBOR 1", "color": "lime", "perpx": "-0.248611", "perpy": "-0.968603"} 
     2593},   
     2594{ 
     2595   "type": "Feature", 
     2596   "id": "405 S 11.5", 
     2597   "geometry": 
     2598       { 
     2599        "type": "Point", 
     2600        "coordinates": [-117.91995,33.689212] 
     2601       }, 
     2602   "properties":  
     2603       {"street": "HARBOR 2", "color": "lime", "perpx": "-0.364549", "perpy": "-0.931184"} 
     2604},   
     2605{ 
     2606   "type": "Feature", 
     2607   "id": "405 S 12.16", 
     2608   "geometry": 
     2609       { 
     2610        "type": "Point", 
     2611        "coordinates": [-117.930222,33.693448] 
     2612       }, 
     2613   "properties":  
     2614       {"street": "HAMPSHIRE", "color": "lime", "perpx": "-0.385484", "perpy": "-0.922714"} 
     2615},   
     2616{ 
     2617   "type": "Feature", 
     2618   "id": "405 S 12.5", 
     2619   "geometry": 
     2620       { 
     2621        "type": "Point", 
     2622        "coordinates": [-117.9355,33.695653] 
    77092623       }, 
    77102624   "properties":  
     
    77132627{ 
    77142628   "type": "Feature", 
    7715    "id": "405 N 13.74", 
    7716    "geometry": 
    7717        { 
    7718         "type": "Point", 
    7719         "coordinates": [-117.953701,33.704947] 
    7720        }, 
    7721    "properties":  
    7722        {"street": "BROOKHUR1", "color": "lime", "perpx": "0.642988", "perpy": "0.765876"} 
    7723 },   
    7724 { 
    7725    "type": "Feature", 
    7726    "id": "405 N 13.97", 
    7727    "geometry": 
    7728        { 
    7729         "type": "Point", 
    7730         "coordinates": [-117.956518,33.707312] 
    7731        }, 
    7732    "properties":  
    7733        {"street": "BROOKHUR2", "color": "lime", "perpx": "0", "perpy": "0"} 
    7734 },   
    7735 { 
    7736    "type": "Feature", 
    7737    "id": "405 N 14.82", 
    7738    "geometry": 
    7739        { 
    7740         "type": "Point", 
    7741         "coordinates": [-117.966959,33.716027] 
    7742        }, 
    7743    "properties":  
    7744        {"street": "WARNER", "color": "lime", "perpx": "0.643494", "perpy": "0.765452"} 
    7745 },   
    7746 { 
    7747    "type": "Feature", 
    7748    "id": "405 N 15.17", 
    7749    "geometry": 
    7750        { 
    7751         "type": "Point", 
    7752         "coordinates": [-117.971245,33.719628] 
    7753        }, 
    7754    "properties":  
    7755        {"street": "MAGNOLIA1", "color": "lime", "perpx": "0.639234", "perpy": "0.769012"} 
    7756 },   
    7757 { 
    7758    "type": "Feature", 
    7759    "id": "405 N 15.39", 
    7760    "geometry": 
    7761        { 
    7762         "type": "Point", 
    7763         "coordinates": [-117.973953,33.721879] 
    7764        }, 
    7765    "properties":  
    7766        {"street": "MAGNOLIA2", "color": "lime", "perpx": "0", "perpy": "0"} 
    7767 },   
    7768 { 
    7769    "type": "Feature", 
    7770    "id": "405 N 16.52", 
    7771    "geometry": 
    7772        { 
    7773         "type": "Point", 
    7774         "coordinates": [-117.988885,33.732527] 
    7775        }, 
    7776    "properties":  
    7777        {"street": "BEACH 1", "color": "lime", "perpx": "0.571725", "perpy": "0.820445"} 
    7778 },   
    7779 { 
    7780    "type": "Feature", 
    7781    "id": "405 N 16.76", 
    7782    "geometry": 
    7783        { 
    7784         "type": "Point", 
    7785         "coordinates": [-117.992088,33.734759] 
    7786        }, 
    7787    "properties":  
    7788        {"street": "BEACH 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    7789 },   
    7790 { 
    7791    "type": "Feature", 
    7792    "id": "405 N 17.92", 
    7793    "geometry": 
    7794        { 
    7795         "type": "Point", 
    7796         "coordinates": [-118.00667,33.746378] 
    7797        }, 
    7798    "properties":  
    7799        {"street": "GOLDEN WEST", "color": "lime", "perpx": "0.642886", "perpy": "0.765962"} 
    7800 },   
    7801 { 
    7802    "type": "Feature", 
    7803    "id": "405 N 19.24", 
    7804    "geometry": 
    7805        { 
    7806         "type": "Point", 
    7807         "coordinates": [-118.022852,33.759918] 
    7808        }, 
    7809    "properties":  
    7810        {"street": "WESTMINISTER", "color": "lime", "perpx": "0", "perpy": "0"} 
    7811 },   
    7812 { 
    7813    "type": "Feature", 
    7814    "id": "405 N 22.55", 
    7815    "geometry": 
    7816        { 
    7817         "type": "Point", 
    7818         "coordinates": [-118.073325,33.774552] 
    7819        }, 
    7820    "properties":  
    7821        {"street": "SEAL BEACH 1", "color": "lime", "perpx": "-0.000845", "perpy": "1.0"} 
    7822 },   
    7823 { 
    7824    "type": "Feature", 
    7825    "id": "405 N 23.12", 
    7826    "geometry": 
    7827        { 
    7828         "type": "Point", 
    7829         "coordinates": [-118.083341,33.774556] 
    7830        }, 
    7831    "properties":  
    7832        {"street": "S OF 7TH ST", "color": "lime", "perpx": "0.026307", "perpy": "0.999654"} 
    7833 },   
    7834 { 
    7835    "type": "Feature", 
    7836    "id": "405 N 23.62", 
    7837    "geometry": 
    7838        { 
    7839         "type": "Point", 
    7840         "coordinates": [-118.089644,33.778545] 
    7841        }, 
    7842    "properties":  
    7843        {"street": "SALMON", "color": "lime", "perpx": "0.941439", "perpy": "0.337182"} 
    7844 },   
    7845 { 
    7846    "type": "Feature", 
    7847    "id": "405 N 23.92", 
    7848    "geometry": 
    7849        { 
    7850         "type": "Point", 
    7851         "coordinates": [-118.090834,33.782737] 
    7852        }, 
    7853    "properties":  
    7854        {"street": "S OF 605", "color": "lime", "perpx": "0.96041", "perpy": "0.278592"} 
    7855 },   
    7856 { 
    7857    "type": "Feature", 
    7858    "id": "405 N 24.12", 
    7859    "geometry": 
    7860        { 
    7861         "type": "Point", 
    7862         "coordinates": [-118.092441,33.785381] 
    7863        }, 
    7864    "properties":  
    7865        {"street": "N OF 605", "color": "lime", "perpx": "0", "perpy": "0"} 
    7866 },   
    7867 { 
    7868    "type": "Feature", 
    7869    "id": "405 S 0.77", 
    7870    "geometry": 
    7871        { 
    7872         "type": "Point", 
    7873         "coordinates": [-117.744091,33.647015] 
    7874        }, 
    7875    "properties":  
    7876        {"street": "IRVINE C1", "color": "lime", "perpx": "0", "perpy": "0"} 
    7877 },   
    7878 { 
    7879    "type": "Feature", 
    7880    "id": "405 S 0.96", 
    7881    "geometry": 
    7882        { 
    7883         "type": "Point", 
    7884         "coordinates": [-117.747203,33.64795] 
    7885        }, 
    7886    "properties":  
    7887        {"street": "IRVINE C2", "color": "lime", "perpx": "-0.287743", "perpy": "-0.957708"} 
    7888 },   
    7889 { 
    7890    "type": "Feature", 
    7891    "id": "405 S 1.57", 
    7892    "geometry": 
    7893        { 
    7894         "type": "Point", 
    7895         "coordinates": [-117.757205,33.650789] 
    7896        }, 
    7897    "properties":  
    7898        {"street": "N OF 133", "color": "lime", "perpx": "-0.197097", "perpy": "-0.980384"} 
    7899 },   
    7900 { 
    7901    "type": "Feature", 
    7902    "id": "405 S 1.93", 
    7903    "geometry": 
    7904        { 
    7905         "type": "Point", 
    7906         "coordinates": [-117.763315,33.651837] 
    7907        }, 
    7908    "properties":  
    7909        {"street": "S OF 133", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"} 
    7910 },   
    7911 { 
    7912    "type": "Feature", 
    7913    "id": "405 S 2.35", 
    7914    "geometry": 
    7915        { 
    7916         "type": "Point", 
    7917         "coordinates": [-117.770361,33.653346] 
    7918        }, 
    7919    "properties":  
    7920        {"street": "LAGUNA CANYON RD", "color": "lime", "perpx": "-0.209415", "perpy": "-0.977827"} 
    7921 },   
    7922 { 
    7923    "type": "Feature", 
    7924    "id": "405 S 2.88", 
    7925    "geometry": 
    7926        { 
    7927         "type": "Point", 
    7928         "coordinates": [-117.778085,33.657534] 
    7929        }, 
    7930    "properties":  
    7931        {"street": "SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"} 
    7932 },   
    7933 { 
    7934    "type": "Feature", 
    7935    "id": "405 S 3.31", 
    7936    "geometry": 
    7937        { 
    7938         "type": "Point", 
    7939         "coordinates": [-117.784273,33.660957] 
    7940        }, 
    7941    "properties":  
    7942        {"street": "N OF SAND CANYON", "color": "lime", "perpx": "-0.484045", "perpy": "-0.875043"} 
    7943 },   
    7944 { 
    7945    "type": "Feature", 
    7946    "id": "405 S 3.84", 
    7947    "geometry": 
    7948        { 
    7949         "type": "Point", 
    7950         "coordinates": [-117.793047,33.66293] 
    7951        }, 
    7952    "properties":  
    7953        {"street": "JEFFREY 1", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"} 
    7954 },   
    7955 { 
    7956    "type": "Feature", 
    7957    "id": "405 S 4.03", 
    7958    "geometry": 
    7959        { 
    7960         "type": "Point", 
    7961         "coordinates": [-117.796283,33.663404] 
    7962        }, 
    7963    "properties":  
    7964        {"street": "JEFFREY 2", "color": "lime", "perpx": "-0.144931", "perpy": "-0.989442"} 
    7965 },   
    7966 { 
    7967    "type": "Feature", 
    7968    "id": "405 S 5.01", 
    7969    "geometry": 
    7970        { 
    7971         "type": "Point", 
    7972         "coordinates": [-117.81298,33.666093] 
    7973        }, 
    7974    "properties":  
    7975        {"street": "YALE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"} 
    7976 },   
    7977 { 
    7978    "type": "Feature", 
    7979    "id": "405 S 5.05", 
    7980    "geometry": 
    7981        { 
    7982         "type": "Point", 
    7983         "coordinates": [-117.813632,33.666292] 
    7984        }, 
    7985    "properties":  
    7986        {"street": "SPRUCE", "color": "lime", "perpx": "-0.29192", "perpy": "-0.956443"} 
    7987 },   
    7988 { 
    7989    "type": "Feature", 
    7990    "id": "405 S 5.5", 
    7991    "geometry": 
    7992        { 
    7993         "type": "Point", 
    7994         "coordinates": [-117.820882,33.668738] 
    7995        }, 
    7996    "properties":  
    7997        {"street": "CULVER 1", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"} 
    7998 },   
    7999 { 
    8000    "type": "Feature", 
    8001    "id": "405 S 5.69", 
    8002    "geometry": 
    8003        { 
    8004         "type": "Point", 
    8005         "coordinates": [-117.823958,33.669737] 
    8006        }, 
    8007    "properties":  
    8008        {"street": "CULVER 2", "color": "lime", "perpx": "-0.30889", "perpy": "-0.951098"} 
    8009 },   
    8010 { 
    8011    "type": "Feature", 
    8012    "id": "405 S 6.21", 
    8013    "geometry": 
    8014        { 
    8015         "type": "Point", 
    8016         "coordinates": [-117.832329,33.672571] 
    8017        }, 
    8018    "properties":  
    8019        {"street": "HARVARD", "color": "lime", "perpx": "-0.314462", "perpy": "-0.94927"} 
    8020 },   
    8021 { 
    8022    "type": "Feature", 
    8023    "id": "405 S 6.8", 
    8024    "geometry": 
    8025        { 
    8026         "type": "Point", 
    8027         "coordinates": [-117.84179,33.675863] 
    8028        }, 
    8029    "properties":  
    8030        {"street": "JAMBOREE1", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"} 
    8031 },   
    8032 { 
    8033    "type": "Feature", 
    8034    "id": "405 S 7.01", 
    8035    "geometry": 
    8036        { 
    8037         "type": "Point", 
    8038         "coordinates": [-117.845019,33.677283] 
    8039        }, 
    8040    "properties":  
    8041        {"street": "JAMBOREE2", "color": "lime", "perpx": "-0.402558", "perpy": "-0.915394"} 
    8042 },   
    8043 { 
    8044    "type": "Feature", 
    8045    "id": "405 S 7.69", 
    8046    "geometry": 
    8047        { 
    8048         "type": "Point", 
    8049         "coordinates": [-117.855449,33.681922] 
    8050        }, 
    8051    "properties":  
    8052        {"street": "MACARTHUR1", "color": "lime", "perpx": "-0.399707", "perpy": "-0.916643"} 
    8053 },   
    8054 { 
    8055    "type": "Feature", 
    8056    "id": "405 S 8.26", 
    8057    "geometry": 
    8058        { 
    8059         "type": "Point", 
    8060         "coordinates": [-117.86423,33.685751] 
    8061        }, 
    8062    "properties":  
    8063        {"street": "AIRPORT", "color": "lime", "perpx": "-0.358185", "perpy": "-0.933651"} 
    8064 },   
    8065 { 
    8066    "type": "Feature", 
    8067    "id": "405 S 8.4", 
    8068    "geometry": 
    8069        { 
    8070         "type": "Point", 
    8071         "coordinates": [-117.866474,33.686517] 
    8072        }, 
    8073    "properties":  
    8074        {"street": "RED HILL", "color": "lime", "perpx": "-0.259554", "perpy": "-0.965729"} 
    8075 },   
    8076 { 
    8077    "type": "Feature", 
    8078    "id": "405 S 8.9", 
    8079    "geometry": 
    8080        { 
    8081         "type": "Point", 
    8082         "coordinates": [-117.875063,33.687245] 
    8083        }, 
    8084    "properties":  
    8085        {"street": "N OF 55", "color": "lime", "perpx": "0", "perpy": "0"} 
    8086 },   
    8087 { 
    8088    "type": "Feature", 
    8089    "id": "405 S 9.54", 
    8090    "geometry": 
    8091        { 
    8092         "type": "Point", 
    8093         "coordinates": [-117.88618,33.687251] 
    8094        }, 
    8095    "properties":  
    8096        {"street": "BRISTOL 1", "color": "lime", "perpx": "-0.013748", "perpy": "-0.999905"} 
    8097 },   
    8098 { 
    8099    "type": "Feature", 
    8100    "id": "405 S 10.28", 
    8101    "geometry": 
    8102        { 
    8103         "type": "Point", 
    8104         "coordinates": [-117.899035,33.68748] 
    8105        }, 
    8106    "properties":  
    8107        {"street": "FAIRVIEW", "color": "lime", "perpx": "0", "perpy": "0"} 
    8108 },   
    8109 { 
    8110    "type": "Feature", 
    8111    "id": "405 S 10.48", 
    8112    "geometry": 
    8113        { 
    8114         "type": "Point", 
    8115         "coordinates": [-117.902507,33.687582] 
    8116        }, 
    8117    "properties":  
    8118        {"street": "N OF 73", "color": "lime", "perpx": "-0.028158", "perpy": "-0.999603"} 
    8119 },   
    8120 { 
    8121    "type": "Feature", 
    8122    "id": "405 S 11.2", 
    8123    "geometry": 
    8124        { 
    8125         "type": "Point", 
    8126         "coordinates": [-117.915002,33.687942] 
    8127        }, 
    8128    "properties":  
    8129        {"street": "HARBOR 1", "color": "lime", "perpx": "-0.248611", "perpy": "-0.968603"} 
    8130 },   
    8131 { 
    8132    "type": "Feature", 
    8133    "id": "405 S 11.5", 
    8134    "geometry": 
    8135        { 
    8136         "type": "Point", 
    8137         "coordinates": [-117.91995,33.689212] 
    8138        }, 
    8139    "properties":  
    8140        {"street": "HARBOR 2", "color": "lime", "perpx": "-0.364549", "perpy": "-0.931184"} 
    8141 },   
    8142 { 
    8143    "type": "Feature", 
    8144    "id": "405 S 12.16", 
    8145    "geometry": 
    8146        { 
    8147         "type": "Point", 
    8148         "coordinates": [-117.930222,33.693448] 
    8149        }, 
    8150    "properties":  
    8151        {"street": "HAMPSHIRE", "color": "lime", "perpx": "-0.385484", "perpy": "-0.922714"} 
    8152 },   
    8153 { 
    8154    "type": "Feature", 
    8155    "id": "405 S 12.5", 
    8156    "geometry": 
    8157        { 
    8158         "type": "Point", 
    8159         "coordinates": [-117.9355,33.695653] 
    8160        }, 
    8161    "properties":  
    8162        {"street": "EUCLID", "color": "lime", "perpx": "0", "perpy": "0"} 
    8163 },   
    8164 { 
    8165    "type": "Feature", 
    81662629   "id": "405 S 13.3", 
    81672630   "geometry": 
     
    82602723   "properties":  
    82612724       {"street": "WESTMINSTER", "color": "lime", "perpx": "0", "perpy": "0"} 
    8262 },   
    8263 { 
    8264    "type": "Feature", 
    8265    "id": "405 S 20.69", 
    8266    "geometry": 
    8267        { 
    8268         "type": "Point", 
    8269         "coordinates": [-118.041297,33.77403] 
    8270        }, 
    8271    "properties":  
    8272        {"street": "BOLSA CHICA", "color": "lime", "perpx": "0", "perpy": "0"} 
    8273 },   
    8274 { 
    8275    "type": "Feature", 
    8276    "id": "405 S 22.54", 
    8277    "geometry": 
    8278        { 
    8279         "type": "Point", 
    8280         "coordinates": [-118.073289,33.774257] 
    8281        }, 
    8282    "properties":  
    8283        {"street": "SEAL BEACH 1", "color": "lime", "perpx": "-0.007511", "perpy": "-0.999972"} 
    8284 },   
    8285 { 
    8286    "type": "Feature", 
    8287    "id": "405 S 23.19", 
    8288    "geometry": 
    8289        { 
    8290         "type": "Point", 
    8291         "coordinates": [-118.084694,33.774466] 
    8292        }, 
    8293    "properties":  
    8294        {"street": "N OF 7TH ST", "color": "lime", "perpx": "-0.224563", "perpy": "-0.974459"} 
    8295 },   
    8296 { 
    8297    "type": "Feature", 
    8298    "id": "405 S 23.62", 
    8299    "geometry": 
    8300        { 
    8301         "type": "Point", 
    8302         "coordinates": [-118.089913,33.778421] 
    8303        }, 
    8304    "properties":  
    8305        {"street": "SALMON", "color": "lime", "perpx": "-0.946836", "perpy": "-0.321715"} 
    8306 },   
    8307 { 
    8308    "type": "Feature", 
    8309    "id": "405 S 23.92", 
    8310    "geometry": 
    8311        { 
    8312         "type": "Point", 
    8313         "coordinates": [-118.0911,33.782679] 
    8314        }, 
    8315    "properties":  
    8316        {"street": "S OF 605", "color": "lime", "perpx": "-0.966235", "perpy": "-0.257663"} 
    8317 },   
    8318 { 
    8319    "type": "Feature", 
    8320    "id": "405 S 24.12", 
    8321    "geometry": 
    8322        { 
    8323         "type": "Point", 
    8324         "coordinates": [-118.092624,33.785289] 
    8325        }, 
    8326    "properties":  
    8327        {"street": "N OF 605", "color": "lime", "perpx": "0", "perpy": "0"} 
    8328 },   
    8329  
    8330 { 
    8331    "type": "Feature", 
    8332    "id": "605 N 1.26", 
    8333    "geometry": 
    8334        { 
    8335         "type": "Point", 
    8336         "coordinates": [-118.082822,33.80097] 
    8337        }, 
    8338    "properties":  
    8339        {"street": "KATELLA 1", "color": "lime", "perpx": "0", "perpy": "0"} 
    8340 },   
    8341 { 
    8342    "type": "Feature", 
    8343    "id": "605 S 1.26", 
    8344    "geometry": 
    8345        { 
    8346         "type": "Point", 
    8347         "coordinates": [-118.083136,33.80104] 
    8348        }, 
    8349    "properties":  
    8350        {"street": "KATELLA 1", "color": "lime", "perpx": "-0.712287", "perpy": "0.701888"} 
    8351 },   
    8352 { 
    8353    "type": "Feature", 
    8354    "id": "605 S 1.49", 
    8355    "geometry": 
    8356        { 
    8357         "type": "Point", 
    8358         "coordinates": [-118.081675,33.804047] 
    8359        }, 
    8360    "properties":  
    8361        {"street": "KATELLA 2", "color": "lime", "perpx": "0", "perpy": "0"} 
    83622725}    
    83632726  ] 
  • trunk/webapps/dynamicdata/incident_script.xml

    r393 r415  
    22<!DOCTYPE TMC_SCRIPT SYSTEM "script.dtd"> 
    33 
    4 <TMC_SCRIPT title="System Test Script"> 
     4<TMC_SCRIPT title="Full Simulation"> 
    55 
    66        <SCRIPT_DATA> 
     
    1717                        <ALIAS>14-14</ALIAS> 
    1818                </NEW_UNIT> 
     19                <NEW_UNIT UnitNum = "14-17"> 
     20                        <STATUS>10-8</STATUS> 
     21                        <CURR_LOC>405 MacArthur Boulevard</CURR_LOC> 
     22                        <DESTINATION></DESTINATION> 
     23                        <AREA>14-Santa Maria</AREA> 
     24                        <BADGE_NUM>011304</BADGE_NUM> 
     25                        <OFFICER>James Hill</OFFICER> 
     26                        <OFFICE>Santa Maria Area</OFFICE> 
     27                        <TIMER>15053</TIMER> 
     28                        <AGY>CHP</AGY> 
     29                        <ALIAS>14-17</ALIAS> 
     30                </NEW_UNIT> 
     31                <NEW_UNIT UnitNum = "14-9"> 
     32                        <STATUS>10-8</STATUS> 
     33                        <CURR_LOC>55 Edinger Avenue</CURR_LOC> 
     34                        <DESTINATION></DESTINATION> 
     35                        <AREA>14-Santa Maria</AREA> 
     36                        <BADGE_NUM>012454</BADGE_NUM> 
     37                        <OFFICER>Bobby Hey</OFFICER> 
     38                        <OFFICE>Santa Maria Area</OFFICE> 
     39                        <TIMER>6394</TIMER> 
     40                        <AGY>CHP</AGY> 
     41                        <ALIAS>14-9</ALIAS> 
     42                </NEW_UNIT> 
    1943                <NEW_UNIT UnitNum = "9-9"> 
    2044                        <STATUS>10-8</STATUS> 
     
    2953                        <ALIAS>9-9</ALIAS> 
    3054                </NEW_UNIT> 
     55                <NEW_UNIT UnitNum = "14-S3"> 
     56                        <STATUS>10-8</STATUS> 
     57                        <CURR_LOC>73 Bear Street</CURR_LOC> 
     58                        <DESTINATION></DESTINATION> 
     59                        <AREA>14-Santa Maria</AREA> 
     60                        <BADGE_NUM>011250</BADGE_NUM> 
     61                        <OFFICER>James Tuchman</OFFICER> 
     62                        <OFFICE>Santa Maria Area</OFFICE> 
     63                        <TIMER>19005</TIMER> 
     64                        <AGY>CHP</AGY> 
     65                        <ALIAS>14-S3</ALIAS> 
     66                </NEW_UNIT> 
     67                <NEW_UNIT UnitNum = "9-15"> 
     68                        <STATUS>10-8</STATUS> 
     69                        <CURR_LOC>55 4th street</CURR_LOC> 
     70                        <DESTINATION></DESTINATION> 
     71                        <AREA>9-Templeton</AREA> 
     72                        <BADGE_NUM>013282</BADGE_NUM> 
     73                        <OFFICER>Sam Spellicy</OFFICER> 
     74                        <OFFICE>Templeton Area</OFFICE> 
     75                        <TIMER>23786</TIMER> 
     76                        <AGY>CHP</AGY> 
     77                        <ALIAS>9-15</ALIAS> 
     78                </NEW_UNIT> 
     79                <NEW_UNIT UnitNum = "9-19"> 
     80                        <STATUS>10-8</STATUS> 
     81                        <CURR_LOC>405 Culver</CURR_LOC> 
     82                        <DESTINATION></DESTINATION> 
     83                        <AREA>9-Templeton</AREA> 
     84                        <BADGE_NUM>012495</BADGE_NUM> 
     85                        <OFFICER>Michael Bay</OFFICER> 
     86                        <OFFICE>Templeton Area</OFFICE> 
     87                        <TIMER>15760</TIMER> 
     88                        <AGY>CHP</AGY> 
     89                        <ALIAS>9-19</ALIAS> 
     90                </NEW_UNIT> 
     91                <NEW_UNIT UnitNum = "28-24"> 
     92                        <STATUS>10-8</STATUS> 
     93                        <CURR_LOC>I-405 IRVINE CNTR</CURR_LOC> 
     94                        <DESTINATION></DESTINATION> 
     95                        <AREA>28-San Luis Obispo</AREA> 
     96                        <BADGE_NUM>011194</BADGE_NUM> 
     97                        <OFFICER>Greg Johnson</OFFICER> 
     98                        <OFFICE>San Luis Obispo Area</OFFICE> 
     99                        <TIMER>16987</TIMER> 
     100                        <AGY>CHP</AGY> 
     101                        <ALIAS>28-24</ALIAS> 
     102                </NEW_UNIT> 
     103                <NEW_UNIT UnitNum = "28-19"> 
     104                        <STATUS>10-8</STATUS> 
     105                        <CURR_LOC>I-5 / Sand Canyon</CURR_LOC> 
     106                        <DESTINATION></DESTINATION> 
     107                        <AREA>28-San Luis Obispo</AREA> 
     108                        <BADGE_NUM>013181</BADGE_NUM> 
     109                        <OFFICER>Andre Muller</OFFICER> 
     110                        <OFFICE>San Luis Obispo Area</OFFICE> 
     111                        <TIMER>18685</TIMER> 
     112                        <AGY>CHP</AGY> 
     113                        <ALIAS>28-19</ALIAS> 
     114                </NEW_UNIT> 
     115                <NEW_UNIT UnitNum = "28-13"> 
     116                        <STATUS>10-8</STATUS> 
     117                        <CURR_LOC>I-5 / 133</CURR_LOC> 
     118                        <DESTINATION></DESTINATION> 
     119                        <AREA>28-San Luis Obispo</AREA> 
     120                        <BADGE_NUM>015283</BADGE_NUM> 
     121                        <OFFICER>Craig O'Neil</OFFICER> 
     122                        <OFFICE>San Luis Obispo Area</OFFICE> 
     123                        <TIMER>14069</TIMER> 
     124                        <AGY>CHP</AGY> 
     125                        <ALIAS>28-13</ALIAS> 
     126                </NEW_UNIT> 
     127                <NEW_UNIT UnitNum = "28-11"> 
     128                        <STATUS>10-8</STATUS> 
     129                        <CURR_LOC>SR55 AT DYER</CURR_LOC> 
     130                        <DESTINATION></DESTINATION> 
     131                        <AREA>28-San Luis Obispo</AREA> 
     132                        <BADGE_NUM>012555</BADGE_NUM> 
     133                        <OFFICER>Alex Carlton</OFFICER> 
     134                        <OFFICE>San Luis Obispo Area</OFFICE> 
     135                        <TIMER>15860</TIMER> 
     136                        <AGY>CHP</AGY> 
     137                        <ALIAS>28-11</ALIAS> 
     138                </NEW_UNIT> 
     139                <NEW_UNIT UnitNum = "28-07"> 
     140                        <STATUS>10-8</STATUS> 
     141                        <CURR_LOC>I405 / CULVER OFFR</CURR_LOC> 
     142                        <DESTINATION></DESTINATION> 
     143                        <AREA>28-San Luis Obispo</AREA> 
     144                        <BADGE_NUM>013606</BADGE_NUM> 
     145                        <OFFICER>Gary Schmidt</OFFICER> 
     146                        <OFFICE>San Luis Obispo Area</OFFICE> 
     147                        <TIMER>14999</TIMER> 
     148                        <AGY>CHP</AGY> 
     149                        <ALIAS>28-7</ALIAS> 
     150                </NEW_UNIT> 
     151                <NEW_UNIT UnitNum = "28-S4"> 
     152                        <STATUS>10-8</STATUS> 
     153                        <CURR_LOC></CURR_LOC> 
     154                        <DESTINATION></DESTINATION> 
     155                        <AREA>28-San Luis Obispo</AREA> 
     156                        <BADGE_NUM>013565</BADGE_NUM> 
     157                        <OFFICER>Daniel Pierce</OFFICER> 
     158                        <OFFICE>San Luis Obispo Area</OFFICE> 
     159                        <TIMER>10606</TIMER> 
     160                        <AGY>CHP</AGY> 
     161                        <ALIAS>28-S4</ALIAS> 
     162                </NEW_UNIT> 
     163                <NEW_UNIT UnitNum = "9-22"> 
     164                        <STATUS>10-8</STATUS> 
     165                        <CURR_LOC>57 / Chapman</CURR_LOC> 
     166                        <DESTINATION></DESTINATION> 
     167                        <AREA>9-Templeton</AREA> 
     168                        <BADGE_NUM>012345</BADGE_NUM> 
     169                        <OFFICER>Victor Percival</OFFICER> 
     170                        <OFFICE>Templeton Area</OFFICE> 
     171                        <TIMER>24203</TIMER> 
     172                        <AGY>CHP</AGY> 
     173                        <ALIAS>9-22</ALIAS> 
     174                </NEW_UNIT> 
     175                <NEW_UNIT UnitNum = "9-23"> 
     176                        <STATUS>10-8</STATUS> 
     177                        <CURR_LOC>22 / Euclid Avenue</CURR_LOC> 
     178                        <DESTINATION></DESTINATION> 
     179                        <AREA>9-Templeton</AREA> 
     180                        <BADGE_NUM>011860</BADGE_NUM> 
     181                        <OFFICER>Michael Rocker</OFFICER> 
     182                        <OFFICE>Templeton Area</OFFICE> 
     183                        <TIMER>20184</TIMER> 
     184                        <AGY>CHP</AGY> 
     185                        <ALIAS>9-23</ALIAS> 
     186                </NEW_UNIT> 
     187                <NEW_UNIT UnitNum = "9-26"> 
     188                        <STATUS>10-8</STATUS> 
     189                        <CURR_LOC>57 / 91</CURR_LOC> 
     190                        <DESTINATION></DESTINATION> 
     191                        <AREA>9-Templeton Area</AREA> 
     192                        <BADGE_NUM>011480</BADGE_NUM> 
     193                        <OFFICER>Patrick King</OFFICER> 
     194                        <OFFICE>Templeton Area</OFFICE> 
     195                        <TIMER>14023</TIMER> 
     196                        <AGY>CHP</AGY> 
     197                        <ALIAS>9-26</ALIAS> 
     198                </NEW_UNIT> 
     199                <!-- 17 isn't a valid CHP office? --> 
     200                <NEW_UNIT UnitNum = "17-14"> 
     201                        <STATUS>10-8</STATUS> 
     202                        <CURR_LOC>405 / Euclid</CURR_LOC> 
     203                        <DESTINATION></DESTINATION> 
     204                        <AREA>14-Santa Maria</AREA> 
     205                        <BADGE_NUM>017935</BADGE_NUM> 
     206                        <OFFICER>William Bond</OFFICER> 
     207                        <OFFICE>Santa Maria Area</OFFICE> 
     208                        <TIMER>29877</TIMER> 
     209                        <AGY>CHP</AGY> 
     210                        <ALIAS>17-14</ALIAS> 
     211                </NEW_UNIT> 
     212                <NEW_UNIT UnitNum = "17-16"> 
     213                        <STATUS>10-8</STATUS> 
     214                        <CURR_LOC>S-405 / Euclid</CURR_LOC> 
     215                        <DESTINATION></DESTINATION> 
     216                        <AREA>14-Santa Maria</AREA> 
     217                        <BADGE_NUM>015839</BADGE_NUM> 
     218                        <OFFICER>Matthew McCarmick</OFFICER> 
     219                        <OFFICE>Santa Maria Area</OFFICE> 
     220                        <TIMER>23998</TIMER> 
     221                        <AGY>CHP</AGY> 
     222                        <ALIAS>17-16</ALIAS> 
     223                </NEW_UNIT> 
    31224        </SCRIPT_DATA> 
    32225 
     
    56249        <SCRIPT_EVENT> 
    57250                <TIME_INDEX>00:00:00</TIME_INDEX> 
    58                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     251                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
    59252                 
    60253                <CAD_DATA> 
     
    86279                        </HEADER_INFO> 
    87280                         
    88                         <LOCATION_INFO ID="101_N_405_ML"> 
     281                        <LOCATION_INFO ID="187_N_405_ML"> 
    89282                                <Route>405</Route> 
    90283                                <Direction>NB</Direction> 
     
    93286                        </LOCATION_INFO> 
    94287                         
     288                        <LOCATION_INFO ID="187_N_405_HV"> 
     289                                <Route>405</Route> 
     290                                <Direction>NB</Direction> 
     291                                <Postmile>8.4</Postmile> 
     292                                <Location_type>HV</Location_type>                                        
     293                        </LOCATION_INFO>         
     294                         
     295                        <LOCATION_INFO ID="187_S_55_ML"> 
     296                                <Route>55</Route> 
     297                                <Direction>SB</Direction> 
     298                                <Postmile>6.5</Postmile> 
     299                                <Location_type>ML</Location_type>                                        
     300                        </LOCATION_INFO> 
     301                         
    95302                </CAD_DATA>      
    96303                 
    97304                <GENERAL_INFO>                   
    98305                        <TITLE>Incident Description</TITLE> 
    99                         <TEXT>This is an ice cream truck on SB 55 overpass at 405. The truck is  
    100                           dispensing ice cream, causing a traffic jam.  
     306                        <TEXT>This is a stalled DOT truck on SB 55 overpass at 405. The truck is  
     307                          hit by a vehicle, the vehicle is vaulted over the railing, and a 6  
     308                          vehicle collision occurs below in the NB 405 lanes. The #2 and 3 lanes  
     309                          are blocked on SB 55 and the #1, 2, and 3 lanes are blocked on NB 405.  
     310                          The driver of the truck is uninjured, although there are 4 fatals, 2  
     311                          major injured, and 4 minor injured in the collision below. MAIT is  
     312                          called to the scene to investigate the collision and a Sig Alert is  
     313                          declared.  
    101314                        </TEXT> 
    102315                </GENERAL_INFO>  
    103316                 
    104317                <TELEPHONE>      
    105                         <STUDENT>Places a call to CHP Dispatch to notify of ice cream truck.</STUDENT> 
     318                        <STUDENT>Places a call to CHP Dispatch to notify of stalled DOT vehicle.</STUDENT> 
    106319                </TELEPHONE>                             
    107320                 
    108                 <MAINTENANCE_RADIO>You don't understand! I coulda had class. I coulda been a contender. I could've been somebody, instead of a bum, which is what I am.  
     321                <MAINTENANCE_RADIO>Dispatch, this is xxx. I'm on south 55 at the 405.   
     322                                My truck is out of service here, stuck in the lane.  I need CHP assistance ASAP!"  
    109323                </MAINTENANCE_RADIO>     
    110324                 
     
    112326 
    113327        <SCRIPT_EVENT> 
    114                 <TIME_INDEX>00:00:05</TIME_INDEX> 
    115                 <INCIDENT LogNum="101">Ice Cream</INCIDENT>      
    116                  
     328                <TIME_INDEX>00:01:00</TIME_INDEX> 
     329                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>  
     330 
    117331                <CAD_DATA>       
     332                        <CAD_INCIDENT_EVENT>     
     333                                <DETAIL>STALLED DOT SB SR-55 AT I-405</DETAIL>   
     334                                 
     335                                <PARAMICS LocationID="187_S_55_ML"> 
     336                                        <Status>NEW</Status> 
     337                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     338                                        <Lane_number>3</Lane_number> 
     339                                </PARAMICS>              
     340                        </CAD_INCIDENT_EVENT>            
     341                </CAD_DATA>      
     342        </SCRIPT_EVENT> 
     343        <SCRIPT_EVENT> 
     344                <TIME_INDEX>00:01:00</TIME_INDEX> 
     345                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     346                 
     347                <CAD_DATA> 
     348                        <CAD_INCIDENT_EVENT>             
     349                                <DETAIL>DEMO DETAIL 1</DETAIL> 
     350                        </CAD_INCIDENT_EVENT>    
     351                </CAD_DATA> 
     352        </SCRIPT_EVENT>  
     353    <SCRIPT_EVENT> 
     354                <TIME_INDEX>00:01:00</TIME_INDEX> 
     355                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     356                 
     357                <CAD_DATA> 
     358                        <CAD_INCIDENT_EVENT> 
     359                                <DETAIL>DEMO DETAIL 2a</DETAIL> 
     360                                <DETAIL>DEMO DETAIL 2b</DETAIL> 
     361                                <DETAIL>DEMO DETAIL 2c</DETAIL> 
     362                        </CAD_INCIDENT_EVENT>    
     363                </CAD_DATA> 
     364        </SCRIPT_EVENT> 
     365    <SCRIPT_EVENT> 
     366                <TIME_INDEX>00:01:00</TIME_INDEX> 
     367                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     368                 
     369                <CAD_DATA> 
     370                        <CAD_INCIDENT_EVENT> 
     371                                <DETAIL>DEMO DETAIL 3a</DETAIL> 
     372                                <DETAIL>DEMO DETAIL 3b</DETAIL> 
     373                                <DETAIL>DEMO DETAIL 3c</DETAIL> 
     374                        </CAD_INCIDENT_EVENT>    
     375                </CAD_DATA> 
     376        </SCRIPT_EVENT> 
     377        <SCRIPT_EVENT> 
     378                <TIME_INDEX>00:02:00</TIME_INDEX> 
     379                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>  
     380                 
     381                <CAD_DATA>       
    118382                        <CAD_INCIDENT_EVENT> 
    119383                                <UNIT UnitNum="14-14" Status="ENRT" Primary="true" Active="true"/> 
    120                                 <AUDIO Length = "25" Path = "101/10101.mp3" />   
     384                                <AUDIO Length = "25" Path = "187/18701.mp3" />   
    121385                        </CAD_INCIDENT_EVENT>            
    122386                </CAD_DATA>                      
    123387                 
    124                 <CHP_RADIO RadioFile="10101.mp3"> 
    125                         <DIALOG> 
    126                                 <LINE Role="Dispatch">Toto, I've a feeling we're not in Kansas anymore.</LINE>           
    127                                 <LINE Role="Field">I'm gonna make him an offer he can't refuse.</LINE> 
     388                <CHP_RADIO RadioFile="18701.mp3"> 
     389                        <DIALOG> 
     390                                <LINE Role="Dispatch">14-14 Santa Lucia</LINE>                           
     391                                <LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>                             
     392                                <LINE Role="Dispatch">14-14 Santa Lucia 11-25 stalled DOT truck southbound 55 overpass at 405.</LINE> 
     393                                <LINE Role="Field">Santa Lucia 14-14 10-4. Enroute from 55 at Dyer Rd.</LINE>                            
     394                                <LINE Role="Dispatch">14-14 Santa Lucia copies enroute from 55 at Dyer Rd.</LINE> 
    128395                        </DIALOG> 
    129396                </CHP_RADIO> 
    130397 
    131398                <CAD_EVALUATION> 
    132                         <EXPECTED_ACTION>Operator should be verifying incident 101 on CAD</EXPECTED_ACTION> 
     399                        <EXPECTED_ACTION>Operator should be verifying incident 187 on CAD</EXPECTED_ACTION> 
    133400                </CAD_EVALUATION> 
    134401                <ATMS_EVALUATION> 
     
    139406 
    140407        <SCRIPT_EVENT> 
    141                 <TIME_INDEX>00:00:30</TIME_INDEX> 
    142                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     408                <TIME_INDEX>00:03:00</TIME_INDEX> 
     409                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
    143410                 
    144411                <CAD_DATA> 
    145412                        <CAD_INCIDENT_EVENT>             
    146                                 <DETAIL>CELLULAR 911 RPT ICE CRM TRK CAUSING TRAFFIC JAM</DETAIL> 
    147                                 <AUDIO Length = "26" Path = "101/10102.mp3" /> 
     413                                <DETAIL>CELLULAR 911 RPT DOT HT, 2ND VEH OVER THE SIDE, UNVERIFIED</DETAIL> 
     414                                <AUDIO Length = "26" Path = "187/18702.mp3" /> 
    148415                        </CAD_INCIDENT_EVENT>    
    149416                </CAD_DATA> 
    150417 
    151                 <CHP_RADIO RadioFile="10102.mp3"> 
    152                         <DIALOG> 
    153                                 <LINE Role="Dispatch">Here's looking at you, kid.</LINE>                                 
    154                                 <LINE Role="Field">Go ahead, make my day.</LINE>                                 
    155                                 <LINE Role="Dispatch">What we've got here is failure to communicate.</LINE> 
    156                         </DIALOG> 
    157                 </CHP_RADIO> 
    158         </SCRIPT_EVENT> 
    159  
    160         <SCRIPT_EVENT> 
    161                 <TIME_INDEX>00:00:45</TIME_INDEX> 
    162                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     418                <CHP_RADIO RadioFile="18702.mp3"> 
     419                        <DIALOG> 
     420                                <LINE Role="Dispatch">14-14 Santa Lucia</LINE>                           
     421                                <LINE Role="Field">Santa Lucia 14-14 go ahead</LINE>                             
     422                                <LINE Role="Dispatch">14-14 Santa Lucia. Cellular 911 caller reports stalled vehicle on the 55/405 overpass was hit and a vehicle was pushed over the side.  Can you verify?</LINE>                              
     423                                <LINE Role="Field">Santa Lucia, negative, I'm one minute away.</LINE>                            
     424                                <LINE Role="Dispatch">14-14 Santa Lucia 10-4. One minute away.</LINE> 
     425                        </DIALOG> 
     426                </CHP_RADIO> 
     427        </SCRIPT_EVENT> 
     428 
     429        <SCRIPT_EVENT> 
     430                <TIME_INDEX>00:03:30</TIME_INDEX> 
     431                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     432                 
     433                <CAD_DATA> 
     434                        <CAD_INCIDENT_EVENT>             
     435                                <DETAIL>DUPLICATE CALL</DETAIL> 
     436                        </CAD_INCIDENT_EVENT>    
     437                </CAD_DATA> 
     438        </SCRIPT_EVENT> 
     439 
     440        <SCRIPT_EVENT> 
     441                <TIME_INDEX>00:04:30</TIME_INDEX> 
     442                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     443                 
     444                <CAD_DATA> 
     445                        <CAD_INCIDENT_EVENT>             
     446                                <DETAIL>DUPLICATE CALL</DETAIL> 
     447                        </CAD_INCIDENT_EVENT>    
     448                </CAD_DATA> 
     449        </SCRIPT_EVENT> 
     450 
     451        <SCRIPT_EVENT> 
     452                <TIME_INDEX>00:05:00</TIME_INDEX> 
     453                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     454                 
     455                <CAD_DATA> 
     456                        <CAD_INCIDENT_EVENT> 
     457                                <DETAIL>DOT HIT BY VEH, VEH OVER SIDE.</DETAIL> 
     458                                <DETAIL>2ND VEH LANDED NB 405 BELOW, LG COLLISION OCCUR. REQ 2 1141 CODE 2 UNITS ASSIST</DETAIL> 
     459                                <UNIT UnitNum="14-14" Status="1097" Primary="true" Active="true"/> 
     460                                <AUDIO Length = "42" Path = "187/18703.mp3" /> 
     461                                 
     462                                <PARAMICS LocationID="187_N_405_ML"> 
     463                                        <Status>NEW</Status> 
     464                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     465                                        <Lane_number>1</Lane_number> 
     466                                        <Lane_number>2</Lane_number> 
     467                                        <Lane_number>3</Lane_number> 
     468                                </PARAMICS>                                      
     469                                 
     470                                <PARAMICS LocationID="187_N_405_HV"> 
     471                                        <Status>NEW</Status> 
     472                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     473                                        <Lane_number>1</Lane_number> 
     474                                </PARAMICS>                                      
     475                                 
     476                                <PARAMICS LocationID="187_S_55_ML"> 
     477                                        <Status>CHANGED</Status> 
     478                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     479                                        <Lane_number>2</Lane_number> 
     480                                        <Lane_number>3</Lane_number> 
     481                                </PARAMICS>                      
     482                        </CAD_INCIDENT_EVENT>                    
     483                </CAD_DATA> 
     484 
     485                <CHP_RADIO RadioFile="18703.mp3"> 
     486                        <DIALOG> 
     487                                <LINE Role="Field">Santa Lucia 14-14</LINE>                              
     488                                <LINE Role="Dispatch">  14-14 Santa Lucia go ahead.</LINE> 
     489                                <LINE Role="Field">Santa Lucia 14-14 10-97 11-83 11-25.  It appears the DOT truck was hit by a vehicle and over the side landed in the northbound 405 lanes below.  A major collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE>                                 
     490                                <LINE Role="Dispatch">  14-14 Santa Lucia 10-4 10-97 11-83 11-25.  DOT truck was hit by vehicle and the vehicle over the side landed in the northbound 405 lanes below.  A large collision occurred below.  Request 11-41 Code 2 and a couple units to assist.</LINE> 
     491                        </DIALOG> 
     492                </CHP_RADIO> 
    163493                 
    164494                <CMS_EVALUATION cmsID="72" type="new">  
     
    170500                </CMS_EVALUATION> 
    171501                <FACILITATOR_EVALUATION> 
    172                         <EXPECTED_ACTION>Should be responding to incident 101</EXPECTED_ACTION> 
     502                        <EXPECTED_ACTION>Should be responding to incident 187</EXPECTED_ACTION> 
    173503                        <EXPECTED_ACTION>Should be monitoring ATMS operator</EXPECTED_ACTION> 
    174504                </FACILITATOR_EVALUATION> 
     505        </SCRIPT_EVENT> 
     506 
     507        <SCRIPT_EVENT> 
     508                <TIME_INDEX>00:05:30</TIME_INDEX> 
     509                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     510                 
     511                <CAD_DATA> 
     512                        <CAD_INCIDENT_EVENT>             
     513                                <DETAIL>DUPLICATE CALL</DETAIL> 
     514                        </CAD_INCIDENT_EVENT>    
     515                </CAD_DATA> 
     516        </SCRIPT_EVENT> 
     517 
     518        <SCRIPT_EVENT> 
     519                <TIME_INDEX>00:06:00</TIME_INDEX> 
     520                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     521                 
     522                <CAD_DATA>       
     523                        <CAD_INCIDENT_EVENT> 
     524                                <DETAIL>14-17 14-9 ENRT ASSIST 1183 1125</DETAIL> 
     525                                <UNIT UnitNum="14-17" Status="ENRT" Primary="false" Active="true"/> 
     526                                <UNIT UnitNum="14-9" Status="ENRT" Primary="false" Active="true"/> 
     527                                <AUDIO Length = "40" Path = "187/18704.mp3" /> 
     528                        </CAD_INCIDENT_EVENT>            
     529                </CAD_DATA>      
     530 
     531                <CHP_RADIO RadioFile="18704.mp3"> 
     532                        <DIALOG> 
     533                                <LINE Role="Dispatch">14-17, 14-9 Santa Lucia</LINE> 
     534                                <LINE Role="Field_1">Santa Lucia 14-17 go ahead.</LINE>  
     535                                <LINE Role="Field_2">Santa Lucia 14-9 go ahead.</LINE> 
     536                                <LINE Role="Dispatch">  14-17, 14-9 assist 14-14 11-83 11-25 northbound 405 at the 55 interchange.</LINE>                                
     537                                <LINE Role="Field_1">Santa Lucia 14-17 copies.  Enroute from 405 just south of Macarthur Boulevard.</LINE> 
     538                                <LINE Role="Field_2">14-9 10-4, enroute from 55 at Edinger Avenue.</LINE> 
     539                                <LINE Role="Dispatch">Santa Lucia copies 14-17 enroute from 405 just south of Macarthur and 14-9 enroute from 55 at Edinger.</LINE> 
     540                        </DIALOG> 
     541                </CHP_RADIO> 
     542        </SCRIPT_EVENT> 
     543 
     544        <SCRIPT_EVENT> 
     545                <TIME_INDEX>00:06:30</TIME_INDEX> 
     546                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     547                 
     548                <CAD_DATA> 
     549                        <CAD_INCIDENT_EVENT>             
     550                                <DETAIL>DUPLICATE CALL</DETAIL> 
     551                        </CAD_INCIDENT_EVENT>    
     552                </CAD_DATA> 
     553        </SCRIPT_EVENT> 
     554 
     555        <SCRIPT_EVENT> 
     556                <TIME_INDEX>00:07:00</TIME_INDEX> 
     557                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     558                 
     559                <CAD_DATA> 
     560                        <CAD_INCIDENT_EVENT> 
     561                                <DETAIL>DOT DRIVER UNINJURED, #2,3 LNS BLCKD SB 55.</DETAIL> 
     562                                <DETAIL>14-14 MVNG TO 405 ASSESS DMG</DETAIL> 
     563                                <AUDIO Length = "29" Path = "187/18705.mp3" /> 
     564                        </CAD_INCIDENT_EVENT> 
     565                         
     566                </CAD_DATA> 
     567 
     568                <CHP_RADIO RadioFile="18705.mp3"> 
     569                        <DIALOG> 
     570                                <LINE Role="Field">Santa Lucia 14-14</LINE>                              
     571                                <LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE> 
     572                                <LINE Role="Field">     Santa Lucia, the driver of the DOT truck is uninjured but the #2 and #3 lanes are now blocked on southbound 55.  I'm moving down to the 405 lanes to assess the damage.</LINE>                           
     573                                <LINE Role="Dispatch">  14-14 Santa-Lucia 10-4. Driver of the DOT truck is uninjured.  The #2 and #3 lanes are now blocked on southbound 55. Moving down to the 405 lanes to assess the damage.</LINE> 
     574                        </DIALOG> 
     575                </CHP_RADIO> 
     576                 
     577                <CMS_EVALUATION cmsID="72" type="update">  
     578                        <LOCATION>SB 55 @ WARNER AVE</LOCATION> 
     579                        <SAMPLE_MESSAGE> 
     580                                <CMS_LINE>ACCIDENT AHEAD</CMS_LINE> 
     581                                <CMS_LINE>AT 405 OVERPASS</CMS_LINE> 
     582                                <CMS_LINE>2 RT LANES BLKD</CMS_LINE> 
     583                        </SAMPLE_MESSAGE> 
     584                </CMS_EVALUATION>        
     585                 
    175586                <ACTIVITY_LOG_EVALUATION> 
    176587                        <EXPECTED_ACTION>Should be updating the incident board.</EXPECTED_ACTION> 
     
    180591 
    181592        <SCRIPT_EVENT> 
    182                 <TIME_INDEX>00:01:00</TIME_INDEX> 
    183                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     593                <TIME_INDEX>00:08:00</TIME_INDEX> 
     594                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
    184595 
    185596                <TELEPHONE> 
    186597                        <INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY TV channel 2.</INSTRUCTOR> 
    187                         <INSTRUCTOR Role="TV Reporter #1">I was told that there's free ice cream on SB 55. 
     598                        <INSTRUCTOR Role="TV Reporter #1">I was told that a car flew off an  
     599                                                                                 overpass causing a large pile-up on the freeway below. 
    188600                        </INSTRUCTOR> 
    189601                        <STUDENT>Incident should be confirmed</STUDENT> 
     
    197609 
    198610        <SCRIPT_EVENT> 
    199                 <TIME_INDEX>00:01:10</TIME_INDEX> 
    200                 <INCIDENT LogNum="102">Kangaroo</INCIDENT> 
     611                <TIME_INDEX>00:08:00</TIME_INDEX> 
     612                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
    201613                 
    202614                <CAD_DATA> 
     
    228640                        </HEADER_INFO> 
    229641                         
    230                         <LOCATION_INFO ID="102_N_5_ML"> 
     642                        <LOCATION_INFO ID="188_N_5_ML"> 
    231643                                <Route>5</Route> 
    232644                                <Direction>NB</Direction> 
     
    234646                                <Location_type>ML</Location_type>                                        
    235647                        </LOCATION_INFO>         
    236                                  
     648                         
     649                        <CAD_INCIDENT_EVENT>                     
     650                                <PARAMICS LocationID="188_N_5_ML"> 
     651                                        <Status>NEW</Status> 
     652                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     653                                        <Lane_number>3</Lane_number> 
     654                                        <Lane_number>4</Lane_number> 
     655                                        <Lane_number>5</Lane_number> 
     656                                </PARAMICS>                                      
     657                        </CAD_INCIDENT_EVENT>                                    
    237658                </CAD_DATA>              
    238659                 
    239660                <GENERAL_INFO> 
    240661                        <TITLE>Incident Description</TITLE> 
    241                         <TEXT>This is a Kangaroo on the freeway. 
     662                        <TEXT>This is a two vehicle collision between a tomato truck and a car. The  
     663                  truck spills tomatoes across lanes #3,4,5 right lanes plus  
     664                  shoulder of NB 5 just north of Lake Forest Drive. There is one 11-44  
     665                  and 2 major injured. Ambulance, fire, paramedics, additional units,  
     666                  Maintenance/coroner, and TMT are requested on this incident. 
    242667                        </TEXT> 
    243668                </GENERAL_INFO> 
     
    245670 
    246671        <SCRIPT_EVENT> 
    247                 <TIME_INDEX>00:01:20</TIME_INDEX> 
    248                 <INCIDENT LogNum="102">Kangaroo</INCIDENT> 
     672                <TIME_INDEX>00:10:00</TIME_INDEX> 
     673                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
    249674                 
    250675                <CAD_DATA> 
     
    252677                                <DETAIL>9-9 ENRT FRM I405 @ IRVINE CTR</DETAIL> 
    253678                                <UNIT UnitNum="9-9" Status="ENRT" Primary="true" Active="true"/> 
    254                                 <AUDIO Length = "25" Path = "101/10103.mp3" /> 
     679                                <AUDIO Length = "25" Path = "188/18801.mp3" /> 
    255680                        </CAD_INCIDENT_EVENT>    
    256681                </CAD_DATA>              
    257                 <CHP_RADIO RadioFile="10103.mp3"> 
    258                         <DIALOG> 
    259                                 <LINE Role="Dispatch">Fasten your seatbelts. It's going to be a bumpy night.</LINE>                              
    260                                 <LINE Role="Field">There's no place like home.</LINE>                            
    261                                 <LINE Role="Dispatch">Why don't you come up sometime and see me?</LINE>                          
    262                                 <LINE Role="Field">You know how to whistle, don't you, Steve? You just put your lips together and blow.</LINE>                           
    263                                 <LINE Role="Dispatch">Badges? We ain't got no badges! We don't need no badges!</LINE> 
    264                         </DIALOG> 
    265                 </CHP_RADIO>                             
     682                 
     683                <CHP_RADIO RadioFile="18801.mp3"> 
     684                        <DIALOG> 
     685                                <LINE Role="Dispatch">9-9 Santa Lucia</LINE>                             
     686                                <LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>                              
     687                                <LINE Role="Dispatch">9-9 Santa Lucia 11-79 northbound 5 just north of Lake Forest Drive.</LINE>                                 
     688                                <LINE Role="Field">Santa Lucia 9-9 copied enroute from 405 at Irvine Center.</LINE>                              
     689                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Enroute from 405 at Irvine Center.</LINE> 
     690                        </DIALOG> 
     691                </CHP_RADIO> 
     692                 
    266693                <CAD_EVALUATION> 
    267694                        <EXPECTED_ACTION>Operator should be monitoring the CAD</EXPECTED_ACTION> 
     
    271698                </ATMS_EVALUATION> 
    272699                <FACILITATOR_EVALUATION> 
    273                         <EXPECTED_ACTION>Should verify location and respond to incident 102</EXPECTED_ACTION> 
     700                        <EXPECTED_ACTION>Should verify location and respond to incident 188</EXPECTED_ACTION> 
    274701                </FACILITATOR_EVALUATION> 
    275702                 
     
    277704 
    278705        <SCRIPT_EVENT> 
    279                 <TIME_INDEX>00:01:40</TIME_INDEX> 
    280                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     706                <TIME_INDEX>00:11:00</TIME_INDEX> 
     707                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
    281708 
    282709                <TELEPHONE> 
     
    285712                        </INSTRUCTOR> 
    286713                        <INSTRUCTOR Role="Radio Reporter #1">I just heard over the scanner that  
    287                                                                                         you have a Ice Cream Truck on I405 at 55. 
     714                                                                                        you have a major accident on I405 at 55. 
    288715                        </INSTRUCTOR> 
    289716                        <STUDENT>Should confirm incident.</STUDENT> 
     
    291718                                                                                        happened? 
    292719                        </INSTRUCTOR> 
    293                         <STUDENT>A Ice Cream Truck occurred on NB 55 at 405. 
     720                        <STUDENT>A collision occurred on NB 55 at 405.  A vehicle went over rail  
     721                                             onto NB 405 causing a 6 car collision. 
    294722                        </STUDENT> 
    295723                </TELEPHONE> 
    296724        </SCRIPT_EVENT> 
    297725 
    298  
    299         <SCRIPT_EVENT> 
    300                 <TIME_INDEX>00:01:50</TIME_INDEX> 
    301                 <INCIDENT LogNum="101">Ice Cream</INCIDENT> 
     726        <SCRIPT_EVENT> 
     727                <TIME_INDEX>00:12:00</TIME_INDEX> 
     728                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     729 
     730                <CAD_DATA> 
     731                        <CAD_INCIDENT_EVENT> 
     732                                <DETAIL>14-14 1097, MULTIPLE 1144 NB 405 AT 55 OVERPASS, 6 VEH TC</DETAIL> 
     733                                <DETAIL>BLOCKING 3 INSIDE LNS NB 405. DRVR AND PSSNGR IN VEH 1144, 2 OTHER FATALS, MULT INJR, REQ CRNR AND SIGALERT</DETAIL> 
     734                                <AUDIO Length = "46" Path = "187/18706.mp3" /> 
     735                        </CAD_INCIDENT_EVENT>    
     736                </CAD_DATA> 
     737                 
     738                <CHP_RADIO RadioFile="18706.mp3"> 
     739                        <DIALOG> 
     740                                <LINE Role="Field">Santa Lucia 14-14</LINE>                              
     741                                <LINE Role="Dispatch">  14-14 Santa Lucia go ahead.</LINE>                               
     742                                <LINE Role="Field">     Santa Lucia 14-14 10-97. Multiple 1144 northbound 405 at 55  
     743                                        overpass. Six vehicle collision blocking the three inside  
     744                                        lanes. The driver and passenger of the car that went over  
     745                                        the railing are both 11-44. I've got two other fatals and  
     746                                        multiple injured down here. Request coroner and issue Sig  
     747                                        Alert. 
     748                                </LINE> 
     749                                 
     750                                <LINE Role="Dispatch">  14-14 Santa Lucia 10-4 10-97 11-80 11-25 northbound 405  
     751                                                at 55 overpass. Multiple 1144. Six vehicle collision blocking the three  
     752                                                inside lanes. The driver and passenger of the car that  
     753                                                went over the railing are 11-44, 2 other 11-44.   
     754                                                Multiple injuries, request coroner and send Sig Alert. 
     755                                </LINE> 
     756                        </DIALOG> 
     757                </CHP_RADIO>                                     
     758                 
     759                <CMS_EVALUATION cmsID="87" type="new">  
     760                        <LOCATION>NB 405 @ HARVARD</LOCATION> 
     761                        <SAMPLE_MESSAGE> 
     762                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     763                                <CMS_LINE>3 LEFT LNS BLKD</CMS_LINE> 
     764                        </SAMPLE_MESSAGE> 
     765                </CMS_EVALUATION> 
     766                <CMS_EVALUATION cmsID="88" type="new">  
     767                        <LOCATION>NB 405 @ ICD</LOCATION> 
     768                        <SAMPLE_MESSAGE> 
     769                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     770                                <CMS_LINE>3 LEFT LNS BLKD</CMS_LINE> 
     771                        </SAMPLE_MESSAGE> 
     772                </CMS_EVALUATION>                
     773                <ACTIVITY_LOG_EVALUATION> 
     774                        <EXPECTED_ACTION>Should fax and page sig alert information</EXPECTED_ACTION>     
     775                </ACTIVITY_LOG_EVALUATION> 
     776                 
     777        </SCRIPT_EVENT> 
     778         
     779 
     780        <SCRIPT_EVENT> 
     781                <TIME_INDEX>00:12:30</TIME_INDEX> 
     782                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
    302783                 
    303784                <CAD_DATA> 
     
    313794        </SCRIPT_EVENT> 
    314795         
     796        <SCRIPT_EVENT> 
     797                <TIME_INDEX>00:13:00</TIME_INDEX> 
     798                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     799                 
     800                <CAD_DATA> 
     801                        <CAD_INCIDENT_EVENT> 
     802                                <DETAIL>14-17 1097, PARAMEDICS 1097. 1184 SB 55 FOR DOT 1125</DETAIL> 
     803                                <UNIT UnitNum="14-17" Status="1097" Primary="true" Active="true"/> 
     804                                <AUDIO Length = "46" Path = "187/18707.mp3" />   
     805                        </CAD_INCIDENT_EVENT>    
     806                </CAD_DATA> 
     807                 
     808                <CHP_RADIO RadioFile="18707.mp3"> 
     809                        <DIALOG> 
     810                                <LINE Role="Field">Santa Lucia 14-17</LINE>                              
     811                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                                 
     812                                <LINE Role="Field">Santa Lucia 14-17 10-97. 1144 northbound 405 at 55.   
     813                        Paramedics are 10-97. We've gotta secure the scene southbound 55 for the DOT  
     814                        hazard. Has Caltrans been notified that their truck has been  
     815                        involved in a collision?</LINE>                          
     816                                <LINE Role="Dispatch">14-17 Santa Lucia 10-4 10-97 11-44 northbound 405  
     817                                                at 55. Paramedics 10-97. Will be doing 11-84 on southbound 55 for  
     818                                                DOT collision. Caltrans will be notified.                        
     819                                </LINE>  
     820                                <LINE Role="Field">Santa Lucia 14-17 10-4</LINE> 
     821                        </DIALOG> 
     822                </CHP_RADIO> 
     823        </SCRIPT_EVENT> 
     824 
     825 
     826        <SCRIPT_EVENT> 
     827                <TIME_INDEX>00:14:00</TIME_INDEX> 
     828                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     829 
     830                <CAD_DATA>       
     831                        <CAD_INCIDENT_EVENT> 
     832                                <DETAIL>9-9, FD, PARAMEDICS 1097.  TC SEMI W/TOMATOES AND VEH ON NB-5 #3,4,5 LNS</DETAIL> 
     833                                <DETAIL>TRCK ON FIRE, REQ CT CLNUP, UNITS 1184</DETAIL> 
     834                                <UNIT UnitNum="9-9" Status="1097" Primary="true" Active="true"/> 
     835                                <AUDIO Length = "39" Path = "188/18802.mp3" /> 
     836                        </CAD_INCIDENT_EVENT> 
     837                </CAD_DATA>              
     838 
     839                <CHP_RADIO RadioFile="18802.mp3"> 
     840                        <DIALOG> 
     841                                <LINE Role="Field">Santa Lucia 9-9</LINE> 
     842                                <LINE Role="Dispatch">9-9 go ahead Santa Lucia</LINE> 
     843                                <LINE Role="Field">Santa Lucia 9-9 10-97 11-79. Fire department and  
     844                                        parmedics 10-97.  Collision between semi truck carrying  
     845                                        tomatoes and vehicle in 2 right lanes.  Truck on fire and  
     846                                        tomatoes spilled over three right lanes. Request Caltrans to  
     847                                        clean up the tomatoes and units for 11-84.</LINE> 
     848                                <LINE Role="Dispatch">Santa Lucia 10-4, 9-9 10-97 11-79. Fire and  
     849                                                paramedics 10-97. Collision involves tomato truck and  
     850                                                car in two right lanes. Truck on fire and tomatoes over  
     851                                                three right lanes.  Request Caltrans.</LINE> 
     852                        </DIALOG> 
     853                </CHP_RADIO>             
     854                 
     855                <CMS_EVALUATION cmsID="31" type="new">  
     856                        <LOCATION>??</LOCATION> 
     857                        <SAMPLE_MESSAGE> 
     858                                <CMS_LINE>UR TIRES R RND</CMS_LINE> 
     859                        </SAMPLE_MESSAGE> 
     860                </CMS_EVALUATION> 
     861                <ACTIVITY_LOG_EVALUATION> 
     862                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     863                </ACTIVITY_LOG_EVALUATION> 
     864                <RADIO_EVALUATION> 
     865                        <EXPECTED_ACTION>Operator should have ensured that a maintenance team was dispatched</EXPECTED_ACTION> 
     866                </RADIO_EVALUATION> 
     867                 
     868        </SCRIPT_EVENT> 
     869 
     870        <SCRIPT_EVENT> 
     871                <TIME_INDEX>00:14:00</TIME_INDEX> 
     872                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     873                 
     874                <CAD_DATA> 
     875                        <CAD_INCIDENT_EVENT> 
     876                                <DETAIL>REQ MAIT, REQ 14-S UNIT, REQ TMT</DETAIL> 
     877                                <UNIT UnitNum="14-S3" Status="ENRT" Primary="false" Active="true"/> 
     878                                <AUDIO Length = "34" Path = "187/18708.mp3" /> 
     879                        </CAD_INCIDENT_EVENT>    
     880                </CAD_DATA>              
     881                 
     882                <CHP_RADIO RadioFile="18708.mp3"> 
     883                        <DIALOG> 
     884                                <LINE Role="Field">     Santa Lucia 14-14</LINE>                                 
     885                                <LINE Role="Dispatch">  14-14 Santa Lucia go ahead.</LINE>                               
     886                                <LINE Role="Field">     Santa Lucia, request MAIT, they'll have to investigate this  
     887                                        one.  Also, request 14-S unit and TMT.</LINE>                            
     888                                <LINE Role="Dispatch">  14-14 Santa Lucia copied request MAIT, 14-S unit, and TMT.</LINE>                                
     889                                <LINE Role="Dispatch">  14-S3 unit copy.</LINE>                          
     890                                <LINE Role="Field">     Santa Lucia 14-S3, 10-4 enroute from 73 at Bear Street.</LINE>                           
     891                                <LINE Role="Dispatch">  14-S3 Santa Lucia copies enroute from 73 at Bear Street.</LINE> 
     892                        </DIALOG> 
     893                </CHP_RADIO> 
     894                 
     895                <FACILITATOR_EVALUATION> 
     896                        <EXPECTED_ACTION>Should be alert and advising radio on TMT.</EXPECTED_ACTION> 
     897                </FACILITATOR_EVALUATION> 
     898                <RADIO_EVALUATION> 
     899                        <EXPECTED_ACTION>Operator should notify the TMT leader of incident 187</EXPECTED_ACTION> 
     900                </RADIO_EVALUATION>      
     901                 
     902                <TMT_RADIO>TMT leader espond to student action.  Dispatch appropriate units???</TMT_RADIO> 
     903                 
     904        </SCRIPT_EVENT> 
     905 
     906        <SCRIPT_EVENT> 
     907                <TIME_INDEX>00:15:00</TIME_INDEX> 
     908                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     909 
     910                <TELEPHONE> 
     911                        <INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio. 
     912                        </INSTRUCTOR> 
     913                        <INSTRUCTOR Role="Radio Reporter #2">I called earlier about the accident  
     914                                                                                        on I405. Have any more details come  
     915                                                                                        in on that incident? 
     916                        </INSTRUCTOR> 
     917                        <STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured.</STUDENT> 
     918                        <INSTRUCTOR Role="Radio Reporter #2">Do you have an alternate route I can recommend? 
     919                        </INSTRUCTOR> 
     920                        <STUDENT>Yes (TBD)</STUDENT>     
     921                </TELEPHONE> 
     922        </SCRIPT_EVENT> 
     923 
     924        <SCRIPT_EVENT> 
     925                <TIME_INDEX>00:16:00</TIME_INDEX> 
     926                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     927 
     928                <MAINTENANCE_RADIO>If Maintenance unit was sent out, radio the supervisor  
     929                        with a 10-97.  Say that you're going to await MAIT investigation and  
     930                        transport other Maintenance worker.                      
     931                </MAINTENANCE_RADIO> 
     932        </SCRIPT_EVENT> 
     933 
     934        <SCRIPT_EVENT> 
     935                <TIME_INDEX>00:17:00</TIME_INDEX> 
     936                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     937                 
     938                <CAD_DATA> 
     939                        <CAD_INCIDENT_EVENT> 
     940                                <DETAIL>14-9 1097, ASSIST 1184</DETAIL> 
     941                                <UNIT UnitNum="14-9" Status="1097" Primary="false" Active="true"/> 
     942                                <AUDIO Length = "22" Path = "187/18709.mp3" /> 
     943                        </CAD_INCIDENT_EVENT>            
     944                </CAD_DATA> 
     945 
     946                <CHP_RADIO RadioFile="18709.mp3"> 
     947                        <DIALOG> 
     948                                <LINE Role="Field">Santa Lucia 14-9.</LINE>                              
     949                                <LINE Role="Dispatch">14-9 Santa Lucia go ahead.</LINE>                          
     950                                <LINE Role="Field">Santa Lucia 14-9 10-97. Will assist 14-14 with 11-84.</LINE>                          
     951                                <LINE Role="Dispatch">14-9 Santa Lucia 10-4 10-97 northbound 405 at 55.  
     952                                                Will assist 14-14 with 11-84.</LINE> 
     953                        </DIALOG> 
     954                </CHP_RADIO> 
     955 
     956        </SCRIPT_EVENT> 
     957 
     958        <SCRIPT_EVENT> 
     959                <TIME_INDEX>00:18:00</TIME_INDEX> 
     960                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     961                 
     962                <CAD_DATA> 
     963                        <CAD_INCIDENT_EVENT> 
     964                                <DETAIL>TRAFFIC BACKING SB 55 REQ TMT MEDIUM DUTY 1185</DETAIL> 
     965                                <AUDIO Length = "24" Path = "187/18710.mp3" /> 
     966                        </CAD_INCIDENT_EVENT>            
     967                </CAD_DATA> 
     968                 
     969                <CHP_RADIO RadioFile="18710.mp3"> 
     970                        <DIALOG> 
     971                                <LINE Role="Field">Santa Lucia 14-17.</LINE> 
     972                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                         
     973                                <LINE Role="Field">Santa Lucia 14-17. Traffic is backing up on southbound 55.  
     974                                        Request TMT and medium duty 11-85 for the DOT truck.    </LINE>                  
     975                                <LINE Role="Dispatch">14-17 Santa Lucia 10-4. Traffic backing up on southbound  
     976                                                55.  Requesting TMT and medium duty 11-85.</LINE> 
     977                        </DIALOG> 
     978                </CHP_RADIO> 
     979                 
     980        </SCRIPT_EVENT> 
     981 
     982        <SCRIPT_EVENT> 
     983                <TIME_INDEX>00:19:00</TIME_INDEX> 
     984                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>          
     985 
     986                <CAD_DATA> 
     987                        <CAD_INCIDENT_EVENT> 
     988                                <DETAIL>4 1144'S, 2 1180'S, 4 1181'S</DETAIL> 
     989                                <AUDIO Length = "20" Path = "187/18711.mp3" /> 
     990                        </CAD_INCIDENT_EVENT>    
     991                </CAD_DATA> 
     992                 
     993                <CHP_RADIO RadioFile="18711.mp3"> 
     994                        <DIALOG> 
     995                                <LINE Role="Field">Santa Lucia 14-14</LINE>              
     996                                <LINE Role="Dispatch">14-14 Santa Lucia go ahead.</LINE> 
     997                                <LINE Role="Field">Santa Lucia 14-14. 4 11-44's, 2 11-80's, and 4 11-81's.</LINE>                
     998                                <LINE Role="Dispatch">14-14 Santa Lucia copies 4 11-44's,2 11-80's, and 4 11-81's.</LINE> 
     999                        </DIALOG> 
     1000                </CHP_RADIO> 
     1001 
     1002                <TELEPHONE> 
     1003                        <INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV."</INSTRUCTOR> 
     1004                        <INSTRUCTOR Role="TV Reporter #2">Have any more details come in on the pileup at 55/405?</INSTRUCTOR> 
     1005                        <STUDENT>Vehicles blocking 3 NB 405 lanes, 4 dead and 7 injured, ??? mile backup</STUDENT> 
     1006                        <INSTRUCTOR Role="TV Reporter #2">Do you have an alternate route I can recommend?</INSTRUCTOR> 
     1007                        <STUDENT>(pause for answer: Yes)</STUDENT> 
     1008                        <STUDENT>3 car collision, vehicles blocking #2,3,4 lanes.  Moderate injuries.</STUDENT> 
     1009                </TELEPHONE> 
     1010                 
     1011                <CMS_EVALUATION cmsID="95" type="new">  
     1012                        <LOCATION>NB 5 @ EL TORO</LOCATION> 
     1013                        <SAMPLE_MESSAGE> 
     1014                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     1015                                <CMS_LINE>3 RT LANES BLKD</CMS_LINE> 
     1016                        </SAMPLE_MESSAGE> 
     1017                </CMS_EVALUATION> 
     1018 
     1019        </SCRIPT_EVENT> 
     1020 
     1021        <SCRIPT_EVENT> 
     1022                <TIME_INDEX>00:20:00</TIME_INDEX> 
     1023                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1024                 
     1025                <CAD_DATA> 
     1026                        <CAD_INCIDENT_EVENT> 
     1027                                <DETAIL>9-15,9-19 ENRT FOR 1184</DETAIL> 
     1028                                <UNIT UnitNum="9-15" Status="ENRT" Primary="false" Active="true"/> 
     1029                                <UNIT UnitNum="9-19" Status="ENRT" Primary="false" Active="true"/> 
     1030                                <AUDIO Length = "38" Path = "188/18803.mp3" /> 
     1031                        </CAD_INCIDENT_EVENT>            
     1032                </CAD_DATA> 
     1033 
     1034                <CHP_RADIO RadioFile="18803.mp3"> 
     1035                        <DIALOG> 
     1036                                <LINE Role="Dispatch">9-15, 9-19 Santa Lucia</LINE>                              
     1037                                <LINE Role="Field_1">Santa Lucia 9-15 go ahead.</LINE>                           
     1038                                <LINE Role="Field_2">Santa Lucia go ahead to 9-19.</LINE>                                
     1039                                <LINE Role="Dispatch">9-15 and 9-19 Santa Lucia 11-84 for 11-79  
     1040                                                northbound 5 just north of Lake Forest Drive.</LINE>                             
     1041                                <LINE Role="Field_1">   Santa Lucia 9-15 10-4. Enroute from 55 at 4th Street.</LINE>                             
     1042                                <LINE Role="Field_2">Santa Lucia 9-19 copied enroute from 405 at Culver.</LINE>                          
     1043                                <LINE Role="Dispatch">Santa Lucia copies 9-15 enroute from 55 at 4th and 9-19  
     1044                                                enroute from 405 at Culver.</LINE> 
     1045                        </DIALOG> 
     1046                </CHP_RADIO> 
     1047 
     1048                <TELEPHONE> 
     1049                        <INSTRUCTOR Role="Radio Reporter #3">Hello, this is Bill Bradley at KCTR radio.</INSTRUCTOR> 
     1050                        <INSTRUCTOR Role="Radio Reporter #3">I heard here was a large collision on the 5.</INSTRUCTOR> 
     1051                        <INSTRUCTOR Role="Radio Reporter #3">What details do you have on that?</INSTRUCTOR> 
     1052                        <STUDENT>Semi and 2 cars, tomatoes over three right lanes.</STUDENT> 
     1053                        <INSTRUCTOR Role="Radio Reporter #3">Were there any injured?</INSTRUCTOR> 
     1054                        <STUDENT>Don't know yet.</STUDENT> 
     1055                </TELEPHONE> 
     1056 
     1057        </SCRIPT_EVENT> 
     1058 
     1059        <SCRIPT_EVENT> 
     1060                <TIME_INDEX>00:21:00</TIME_INDEX> 
     1061                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1062 
     1063                <CAD_DATA> 
     1064                        <CAD_INCIDENT_EVENT> 
     1065                                <DETAIL>1039 SABLAN TOWING</DETAIL> 
     1066                                <TOW Company="SABLAN TOWING" ConfNum="(949)555-2468" PubNum="(949)555-8899" Beat=""/> 
     1067                                <AUDIO Length = "18" Path = "187/18712.mp3" /> 
     1068                        </CAD_INCIDENT_EVENT>    
     1069                </CAD_DATA> 
     1070 
     1071                <CHP_RADIO RadioFile="18712.mp3"> 
     1072                        <DIALOG> 
     1073                                <LINE Role="Dispatch">  14-17 Santa Lucia information.</LINE>                            
     1074                                <LINE Role="Field">     Santa Lucia 14-17 go ahead.</LINE>                               
     1075                                <LINE Role="Dispatch">  14-17 Santa Lucia 10-39 Sablan's Towing.</LINE>                          
     1076                                <LINE Role="Field">     14-17 copied 10-39 Sablan's Towing.</LINE> 
     1077                        </DIALOG> 
     1078                </CHP_RADIO> 
     1079        </SCRIPT_EVENT> 
     1080 
     1081        <SCRIPT_EVENT> 
     1082                <TIME_INDEX>00:22:00</TIME_INDEX> 
     1083                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1084                 
     1085                <CAD_DATA> 
     1086                        <CAD_INCIDENT_EVENT> 
     1087                                <DETAIL>14-S3 1097 NB 405 @ 55</DETAIL> 
     1088                                <DETAIL>MAIT ETA 15</DETAIL> 
     1089                                <UNIT UnitNum="14-S3" Status="1097" Primary="false" Active="true"/> 
     1090                                <AUDIO Length = "26" Path = "187/18713.mp3" /> 
     1091                        </CAD_INCIDENT_EVENT>    
     1092                </CAD_DATA>                      
     1093 
     1094                <CHP_RADIO RadioFile="18713.mp3"> 
     1095                        <DIALOG> 
     1096                                <LINE Role="Field">Santa Lucia 14-S3</LINE>                              
     1097                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     1098                                <LINE Role="Field">Santa Lucia 10-97 northbound 405 at 55.  Do you  
     1099                                        have an ETA for MAIT?</LINE>                             
     1100                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4 10-97 northbound 405  
     1101                                                at 55. MAIT ETA 15 minutes.</LINE>                               
     1102                                <LINE Role="Field">Santa Lucia 14-S3 copies MAIT ETA 15.</LINE> 
     1103                        </DIALOG>                
     1104                </CHP_RADIO> 
     1105        </SCRIPT_EVENT> 
     1106 
     1107        <SCRIPT_EVENT> 
     1108                <TIME_INDEX>00:24:00</TIME_INDEX> 
     1109                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1110                 
     1111                <CAD_DATA> 
     1112                        <CAD_INCIDENT_EVENT> 
     1113                                <DETAIL>1141 1097, TRCK STLL FIRE, 2 1180 IN VEH, UNK IN TRCK</DETAIL> 
     1114                                <AUDIO Length = "32" Path = "188/18804.mp3" /> 
     1115                        </CAD_INCIDENT_EVENT>    
     1116                </CAD_DATA> 
     1117 
     1118                <CHP_RADIO RadioFile="18804.mp3"> 
     1119                        <DIALOG> 
     1120                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1121                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1122                                <LINE Role="Field">Santa Lucia 9-9. 11-41 10-97. Truck still engulfed in  
     1123                                        flames.  Two 11-80's in the vehicle. Unknown passengers in  
     1124                                        the truck. Request TMT, traffic backing up quickly.</LINE>                               
     1125                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-41 10-97. Truck still engulfed.   
     1126                                                Two 11-80's in vehicle and unknown passengers in truck.   
     1127                                                Request TMT, traffic backing up.</LINE> 
     1128                        </DIALOG> 
     1129                </CHP_RADIO>             
     1130                 
     1131 
     1132                <TELEPHONE> 
     1133                        <INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR> 
     1134                        <INSTRUCTOR Role="Radio Reporter #4">How many vehicles were involved in the  
     1135                                                                                        collision on northbound 5? 
     1136                        </INSTRUCTOR> 
     1137                        <STUDENT>1 semi, two cars.</STUDENT> 
     1138                        <INSTRUCTOR Role="Radio Reporter #4">How many lanes were blocked?</INSTRUCTOR> 
     1139                        <STUDENT>Three right lanes blocked.</STUDENT> 
     1140                        <INSTRUCTOR Role="Radio Reporter #4">Do you have an alternate route established?</INSTRUCTOR> 
     1141                        <STUDENT>What's it to you!?</STUDENT> 
     1142                </TELEPHONE> 
     1143                 
     1144                <FACILITATOR_EVALUATION> 
     1145                        <EXPECTED_ACTION>Should be assisting radio operator</EXPECTED_ACTION> 
     1146                </FACILITATOR_EVALUATION> 
     1147                <RADIO_EVALUATION> 
     1148                        <EXPECTED_ACTION>Operator should dispatch TMT</EXPECTED_ACTION> 
     1149                </RADIO_EVALUATION> 
     1150                 
     1151        </SCRIPT_EVENT> 
     1152 
     1153        <SCRIPT_EVENT> 
     1154                <TIME_INDEX>00:25:00</TIME_INDEX> 
     1155                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1156                 
     1157                <CAD_DATA> 
     1158                        <CAD_INCIDENT_EVENT> 
     1159                                <DETAIL>REQUEST 1185 BIG RIG AND 1185 ROT, ISSUE SIG ALERT</DETAIL> 
     1160                                <AUDIO Length = "23" Path = "188/18805.mp3" /> 
     1161                        </CAD_INCIDENT_EVENT> 
     1162                </CAD_DATA>                      
     1163                 
     1164 
     1165                <CHP_RADIO RadioFile="18805.mp3"> 
     1166                        <DIALOG> 
     1167                                <LINE Role="Field">Santa Lucia 9-9.</LINE> 
     1168                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE> 
     1169                                <LINE Role="Field">Santa Lucia 9-9. Roll 11-85 big rig and a rotational  
     1170                                        11-85.  Issue a Sig Alert, this could take a while.</LINE>                               
     1171                                <LINE Role="Dispatch">9-9 Santa Lucia copied roll 11-85 big rig and 11-85  
     1172                                                rotational. Issue a Sig Alert until further notice.</LINE> 
     1173                        </DIALOG> 
     1174                </CHP_RADIO> 
     1175                 
     1176                <TELEPHONE> 
     1177                        <INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR> 
     1178                        <INSTRUCTOR Role="Radio Reporter #5">What details do you have on the  
     1179                                                                                        collision Northbound 5 at Lake Forest Drive? 
     1180                        </INSTRUCTOR> 
     1181                        <STUDENT>Semi vs. two cars, tomatoes over lanes 3,4,5, two major  
     1182                                                 injured, unknown passenger in truc.</STUDENT> 
     1183                </TELEPHONE>             
     1184                 
     1185                <ACTIVITY_LOG_EVALUATION> 
     1186                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     1187                </ACTIVITY_LOG_EVALUATION> 
     1188                <FACILITATOR_EVALUATION> 
     1189                        <EXPECTED_ACTION>Should be ensuring a Sig Alert is issued</EXPECTED_ACTION> 
     1190                </FACILITATOR_EVALUATION> 
     1191                 
     1192                <MAINTENANCE_RADIO> 
     1193                        If Maintenance has not been requested by this time,  
     1194                        have someone call as CHP Dispatch and make a request for them. 
     1195                </MAINTENANCE_RADIO> 
     1196                 
     1197        </SCRIPT_EVENT> 
     1198 
     1199        <SCRIPT_EVENT> 
     1200                <TIME_INDEX>00:27:00</TIME_INDEX> 
     1201                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1202                 
     1203                <CAD_DATA> 
     1204                        <CAD_INCIDENT_EVENT> 
     1205                                <DETAIL>CRNR 1097, INJURED TRANSPORTED</DETAIL> 
     1206                                <AUDIO Length = "17" Path = "187/18714.mp3" /> 
     1207                        </CAD_INCIDENT_EVENT>    
     1208                </CAD_DATA> 
     1209 
     1210                <CHP_RADIO RadioFile="18714.mp3"> 
     1211                        <DIALOG> 
     1212                                <LINE Role="Field">Santa Lucia 14-S3.</LINE> 
     1213                                <LINE Role="Dispatch">14-S3 go ahead to Santa Lucia.</LINE> 
     1214                                <LINE Role="Field">Santa Lucia, coroner 10-97. The injured have been transported.</LINE> 
     1215                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4 coroner 10-97. Injured transported.</LINE> 
     1216                        </DIALOG> 
     1217                </CHP_RADIO>     
     1218                 
     1219                <ACTIVITY_LOG_EVALUATION> 
     1220                        <EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION> 
     1221                </ACTIVITY_LOG_EVALUATION> 
     1222                 
     1223        </SCRIPT_EVENT> 
     1224 
     1225        <SCRIPT_EVENT> 
     1226                <TIME_INDEX>00:30:00</TIME_INDEX> 
     1227                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1228                 
     1229                <CAD_DATA> 
     1230                        <CAD_INCIDENT_EVENT> 
     1231                                <DETAIL>9-15 1097, ADVS PD TO DIRECT TRAFFIC OFF AT LAKE FOREST </DETAIL> 
     1232                                <UNIT UnitNum="9-15" Status="1097" Primary="false" Active="true"/> 
     1233                                <AUDIO Length = "26" Path = "188/18806.mp3" /> 
     1234                        </CAD_INCIDENT_EVENT>    
     1235                </CAD_DATA> 
     1236                 
     1237                <CHP_RADIO RadioFile="18806.mp3"> 
     1238                        <DIALOG> 
     1239                                <LINE Role="Field">Santa Lucia 9-15.</LINE>                              
     1240                                <LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>                          
     1241                                <LINE Role="Field">Santa Lucia 9-15 10-97 11-80. Advise local PD that  
     1242                                        we are going to direct traffic off at Lake Forest off ramp and  
     1243                                        are closing the Lake Forest on ramp.</LINE>                              
     1244                                <LINE Role="Dispatch">Santa Lucia copies 9-15 10-97 11-80. Advise PD  
     1245                                                we're directing traffic off Lake Forest offramp and closing  
     1246                                                Lake Forest onramp.</LINE> 
     1247                        </DIALOG> 
     1248                </CHP_RADIO> 
     1249                 
     1250                <TELEPHONE> 
     1251                        <STUDENT>Student places call to Police Department</STUDENT> 
     1252                        <STUDENT>Student correctly notifies PD of incident location and details</STUDENT> 
     1253                </TELEPHONE> 
     1254 
     1255                <TMT_RADIO> 
     1256                        If no sign truck/s have been requested yet, a phone call needs to be  
     1257                        made from CHP Dispatch requesting them.                  
     1258                </TMT_RADIO> 
     1259 
     1260        </SCRIPT_EVENT> 
     1261 
     1262        <SCRIPT_EVENT> 
     1263                <TIME_INDEX>00:30:30</TIME_INDEX> 
     1264                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1265                 
     1266                <TELEPHONE> 
     1267                        <INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KRST radio. 
     1268                        </INSTRUCTOR> 
     1269                        <INSTRUCTOR Role="Radio Reporter #6">Is there an alternate route  
     1270                                                                                        established for the northbound 5  
     1271                                                                                        lanes due to the collision at Lake Forest Drive? 
     1272                        </INSTRUCTOR> 
     1273                        <STUDENT>Lake Forest East to Muirlands or Lake Forest West to Irvine Ctr.   
     1274                                Re-enter I5 at numerous locations</STUDENT> 
     1275                </TELEPHONE>               
     1276        </SCRIPT_EVENT> 
     1277         
     1278        <SCRIPT_EVENT> 
     1279                <TIME_INDEX>00:31:00</TIME_INDEX> 
     1280                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1281                 
     1282                <CAD_DATA> 
     1283                        <CAD_INCIDENT_EVENT> 
     1284                                <DETAIL>1039 COLLEGE OAK BIG RIG, CYCLE TOW FOR ROT</DETAIL> 
     1285                                <TOW Company="College Oak" ConfNum="(949)555-2990" PubNum="(949)555-5758" Beat=""/> 
     1286                                <TOW Company="Cycle" ConfNum="(949)555-2281" PubNum="(949)555-7162" Beat=""/> 
     1287                                <AUDIO Length = "20" Path = "188/18807.mp3" /> 
     1288                        </CAD_INCIDENT_EVENT>            
     1289                </CAD_DATA> 
     1290 
     1291                <CHP_RADIO RadioFile="18807.mp3"> 
     1292                        <DIALOG> 
     1293                                <LINE Role="Dispatch">9-9 Santa Lucia information</LINE>                                 
     1294                                <LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>                              
     1295                                <LINE Role="Dispatch">9-9 Santa Lucia 10-39 College Oak for big rig 11-85 and  
     1296                                                Cycle Tow for 11-85 rotational.</LINE>                           
     1297                                <LINE Role="Field">Santa Lucia 9-9 copied 10-39 College Oak and Cycle Tow.</LINE> 
     1298                        </DIALOG> 
     1299                </CHP_RADIO> 
     1300        </SCRIPT_EVENT>    
     1301 
     1302        <SCRIPT_EVENT> 
     1303                <TIME_INDEX>00:32:00</TIME_INDEX> 
     1304                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1305                 
     1306                <CAD_DATA> 
     1307                        <CAD_INCIDENT_EVENT> 
     1308                                <DETAIL>9-19 1097 ASSISTNG 1184</DETAIL> 
     1309                                <UNIT UnitNum="9-19" Status="1097" Primary="false" Active="true"/> 
     1310                                <AUDIO Length = "20" Path = "188/18808.mp3" /> 
     1311                        </CAD_INCIDENT_EVENT>    
     1312                </CAD_DATA> 
     1313 
     1314                <CHP_RADIO RadioFile="18808.mp3"> 
     1315                        <DIALOG> 
     1316                                <LINE Role="Field">Santa Lucia 9-19</LINE> 
     1317                                <LINE Role="Dispatch">9-19 go ahead to Santa Lucia</LINE>                                
     1318                                <LINE Role="Field">Santa Lucia 9-19 10-97 11-80. Assisting with 11-84.</LINE>                            
     1319                                <LINE Role="Dispatch">9-19 Santa Lucia copied 10-97 11-80. Assisting with 11-84.</LINE> 
     1320                        </DIALOG> 
     1321                </CHP_RADIO> 
     1322        </SCRIPT_EVENT> 
     1323 
     1324        <SCRIPT_EVENT> 
     1325                <TIME_INDEX>00:35:00</TIME_INDEX> 
     1326                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1327 
     1328                <CAD_DATA>       
     1329                        <CAD_INCIDENT_EVENT> 
     1330                                <DETAIL>MAIT 1097 STARTING INVESTIGATION SB SR55</DETAIL> 
     1331                                <AUDIO Length = "22" Path = "187/18715.mp3" /> 
     1332                        </CAD_INCIDENT_EVENT>    
     1333                </CAD_DATA> 
     1334                 
     1335                <CHP_RADIO RadioFile="187/18715.mp3"> 
     1336                        <DIALOG> 
     1337                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     1338                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     1339                                <LINE Role="Field">Santa Lucia 14-S3, MAIT is 10-97. They're starting their  
     1340                                        investigation on the 55 overpass.</LINE>                                 
     1341                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4 MAIT 10-97. Starting  
     1342                                                investigation on 55 overpass.</LINE> 
     1343                        </DIALOG> 
     1344                </CHP_RADIO> 
     1345                 
     1346                <ACTIVITY_LOG_EVALUATION> 
     1347                        <EXPECTED_ACTION>Should enter info for 10-97 MAIT</EXPECTED_ACTION> 
     1348                </ACTIVITY_LOG_EVALUATION> 
     1349 
     1350        </SCRIPT_EVENT> 
     1351 
     1352        <SCRIPT_EVENT> 
     1353                <TIME_INDEX>00:36:00</TIME_INDEX>  
     1354                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1355                 
     1356                <TELEPHONE> 
     1357                        <INSTRUCTOR Role="CHP Dispatch">Hello, CHP Dispatch.  Do you have traffic control enroute for NB 405 at 55</INSTRUCTOR> 
     1358                        <STUDENT>Do you mean sign truck crews or cones on the road?</STUDENT> 
     1359                        <INSTRUCTOR Role="CHP Dispatch">Cones</INSTRUCTOR> 
     1360                </TELEPHONE> 
     1361                 
     1362                <FACILITATOR_EVALUATION> 
     1363                        <EXPECTED_ACTION>Should interact with the dispatch operator regarding cone crews</EXPECTED_ACTION> 
     1364                </FACILITATOR_EVALUATION> 
     1365 
     1366        </SCRIPT_EVENT> 
     1367 
     1368        <SCRIPT_EVENT> 
     1369                <TIME_INDEX>00:37:00</TIME_INDEX> 
     1370                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>  
     1371                 
     1372                <CAD_DATA> 
     1373                        <CAD_INCIDENT_EVENT> 
     1374                                <DETAIL>MED DUTY 1185 1097, AWAIT FINISH MAIT BEFORE TOW VEH</DETAIL> 
     1375                                <AUDIO Length = "25" Path = "187/18716.mp3" /> 
     1376                        </CAD_INCIDENT_EVENT>    
     1377                </CAD_DATA> 
     1378 
     1379                <CHP_RADIO RadioFile="18716.mp3"> 
     1380                        <DIALOG> 
     1381                                <LINE Role="Field">Santa Lucia 14-17.</LINE>                             
     1382                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                                 
     1383                                <LINE Role="Field">Santa Lucia, medium duty 11-85 10-97. Will await the finish of  
     1384                                        MAIT investigation before towing vehicle.</LINE>                                 
     1385                                <LINE Role="Dispatch">14-17 Santa Lucia 10-4 medium rig 11-85 10-97. Will await  
     1386                                                the finish of MAIT investigation before towing vehicle.</LINE> 
     1387                        </DIALOG> 
     1388                </CHP_RADIO> 
     1389 
     1390        </SCRIPT_EVENT> 
     1391 
     1392        <SCRIPT_EVENT> 
     1393                <TIME_INDEX>00:38:00</TIME_INDEX> 
     1394                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1395                 
     1396                <CAD_DATA> 
     1397                        <CAD_INCIDENT_EVENT> 
     1398                                <DETAIL>1039 PD, SENDING 2 UNITS ASST 1184</DETAIL> 
     1399                                <AUDIO Length = "17" Path = "188/18809.mp3" /> 
     1400                        </CAD_INCIDENT_EVENT> 
     1401                </CAD_DATA> 
     1402                 
     1403                <CHP_RADIO RadioFile="18809.mp3"> 
     1404                        <DIALOG> 
     1405                                <LINE Role="Dispatch">9-9 Santa Lucia information.</LINE>                                
     1406                                <LINE Role="Field">Santa Lucia 9-9 go ahead.</LINE>                              
     1407                                <LINE Role="Dispatch">9-9 Santa Lucia 10-39 police department. Sending two  
     1408                                                units to assist with 11-84.</LINE>                               
     1409                                <LINE Role="Field">Santa Lucia 9-9 copied</LINE> 
     1410                        </DIALOG> 
     1411                </CHP_RADIO> 
     1412 
     1413                <TELEPHONE> 
     1414                        <INSTRUCTOR Role="TV Reporter #3">"Hello, this is Terry Webb at KTSV TV 11."</INSTRUCTOR> 
     1415                        <INSTRUCTOR Role="TV Reporter #3">My CAD is down, do you have any  
     1416                                                                                 incidents going on right now? 
     1417                        </INSTRUCTOR> 
     1418                        <STUDENT>Notify reporter of all current incidents.</STUDENT> 
     1419                        <INSTRUCTOR Role="TV Reporter #3">Give me the details on those.</INSTRUCTOR>  
     1420                        <STUDENT>Notify reporter of all current incident details.</STUDENT> 
     1421                </TELEPHONE> 
     1422 
     1423        </SCRIPT_EVENT> 
     1424 
     1425        <SCRIPT_EVENT> 
     1426                <TIME_INDEX>00:40:00</TIME_INDEX> 
     1427                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1428                 
     1429                <CAD_DATA> 
     1430                        <CAD_INCIDENT_EVENT> 
     1431                                <DETAIL>CRNR CONFIRMED FOUR FATAL, PREP TO TRANSPORT</DETAIL> 
     1432                                <AUDIO Length = "19" Path = "187/18717.mp3" /> 
     1433                        </CAD_INCIDENT_EVENT>    
     1434                </CAD_DATA> 
     1435                 
     1436                <CHP_RADIO RadioFile="18717.mp3"> 
     1437                        <DIALOG> 
     1438                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     1439                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     1440                                <LINE Role="Field">Santa Lucia 14-S3. The coroner has confirmed four fatals and  
     1441                                        is preparing them to be transported.</LINE>                              
     1442                                <LINE Role="Dispatch">14-S3 Santa Lucia copied coroner confirmed four fatals  
     1443                                                and preparing for transport</LINE> 
     1444                        </DIALOG> 
     1445                </CHP_RADIO> 
     1446        </SCRIPT_EVENT> 
     1447 
     1448        <SCRIPT_EVENT> 
     1449                <TIME_INDEX>00:42:00</TIME_INDEX> 
     1450                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1451                 
     1452                <CAD_DATA> 
     1453                        <CAD_INCIDENT_EVENT> 
     1454                                <DETAIL>1180S TRANSPORTED</DETAIL> 
     1455                                <AUDIO Length = "14" Path = "188/18810.mp3" /> 
     1456                        </CAD_INCIDENT_EVENT> 
     1457                </CAD_DATA> 
     1458 
     1459                <CHP_RADIO RadioFile="18810.mp3"> 
     1460                        <DIALOG> 
     1461                                <LINE Role="Field">Santa Lucia 9-9.</LINE> 
     1462                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE> 
     1463                                <LINE Role="Field">Santa Lucia 9-9. 11-80's transported.</LINE> 
     1464                                <LINE Role="Dispatch">9-9 Santa Lucia copied 11-80's transported.</LINE> 
     1465                        </DIALOG> 
     1466                </CHP_RADIO> 
     1467        </SCRIPT_EVENT> 
     1468 
     1469 
     1470        <SCRIPT_EVENT> 
     1471                <TIME_INDEX>00:43:00</TIME_INDEX> 
     1472                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1473                 
     1474                <CAD_DATA> 
     1475                        <CAD_INCIDENT_EVENT> 
     1476                                <DETAIL>9-9 FIRE OUT</DETAIL> 
     1477                                <AUDIO Length = "14" Path = "188/18811.mp3" /> 
     1478                        </CAD_INCIDENT_EVENT>    
     1479                </CAD_DATA> 
     1480                 
     1481                <CHP_RADIO RadioFile="18811.mp3"> 
     1482                        <DIALOG> 
     1483                                <LINE Role="Field">     Santa Lucia 9-9.</LINE>                          
     1484                                <LINE Role="Dispatch">  9-9 Santa Lucia go ahead.</LINE>                                 
     1485                                <LINE Role="Field">     Santa Lucia 9-9. The fire is out.</LINE>                                 
     1486                                <LINE Role="Dispatch">  9-9 Santa Lucia 10-4. Fire is out.</LINE> 
     1487                        </DIALOG> 
     1488                </CHP_RADIO> 
     1489                 
     1490                <ACTIVITY_LOG_EVALUATION> 
     1491                        <EXPECTED_ACTION>Should note that the fire has been put out</EXPECTED_ACTION> 
     1492                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     1493                </ACTIVITY_LOG_EVALUATION> 
     1494                <FACILITATOR_EVALUATION> 
     1495                        <EXPECTED_ACTION>should be active and responding to situation</EXPECTED_ACTION> 
     1496                </FACILITATOR_EVALUATION> 
     1497 
     1498        </SCRIPT_EVENT> 
     1499 
     1500        <SCRIPT_EVENT> 
     1501                <TIME_INDEX>00:44:00</TIME_INDEX> 
     1502                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1503                 
     1504                <CAD_DATA> 
     1505                        <CAD_INCIDENT_EVENT> 
     1506                                <DETAIL>LAKE FOREST ONRAMP CLOSED, DIRECTING TRAFFIC OFF LAKE FOREST OFFRAMP</DETAIL> 
     1507                                <AUDIO Length = "23" Path = "188/18812.mp3" /> 
     1508                        </CAD_INCIDENT_EVENT>            
     1509                </CAD_DATA> 
     1510 
     1511                <CHP_RADIO RadioFile="18812.mp3"> 
     1512                        <DIALOG> 
     1513                                <LINE Role="Field">Santa Lucia 9-15.</LINE>                              
     1514                                <LINE Role="Dispatch">9-15 Santa Lucia go ahead.</LINE>                          
     1515                                <LINE Role="Field">Santa Lucia 9-15. Lake Forest onramp closed. Directing 405 traffic  
     1516                                        off Lake Forest offramp.</LINE>                          
     1517                                <LINE Role="Dispatch">9-15 Santa Lucia 10-4. Lake Forest onramp closed.   
     1518                                        Directing 405 traffic off at Lake Forest offramp.</LINE> 
     1519                        </DIALOG> 
     1520                </CHP_RADIO> 
     1521 
     1522                <TELEPHONE> 
     1523                        <INSTRUCTOR Role="Radio Reporter #7">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR> 
     1524                        <INSTRUCTOR Role="Radio Reporter #7">Do you have an alternate established  
     1525                                                                                        for the norhtbound 5 lanes near Lake  
     1526                                                                                        Forest Drive? 
     1527                        </INSTRUCTOR> 
     1528                        <STUDENT>Same as before..</STUDENT> 
     1529                        <INSTRUCTOR Role="Radio Reporter #7">When are the lanes supposed to be open?    </INSTRUCTOR> 
     1530                        <STUDENT>No specific time, approx. 1 hour.</STUDENT> 
     1531                </TELEPHONE> 
     1532        </SCRIPT_EVENT> 
     1533 
     1534        <SCRIPT_EVENT> 
     1535                <TIME_INDEX>00:47:00</TIME_INDEX> 
     1536                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1537                 
     1538                <CAD_DATA> 
     1539                        <CAD_INCIDENT_EVENT> 
     1540                                <DETAIL>MAIT FINISHED W/ INVESTIGATION SB SR-55 AT I-405, PREP DOT TRCK FOR TOW</DETAIL> 
     1541                                <AUDIO Length = "24" Path = "187/18718.mp3" /> 
     1542                        </CAD_INCIDENT_EVENT>            
     1543                </CAD_DATA>              
     1544 
     1545                <CHP_RADIO RadioFile="18718.mp3"> 
     1546                        <DIALOG> 
     1547                                <LINE Role="Field">Santa Lucia 14-17.</LINE>                             
     1548                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                                 
     1549                                <LINE Role="Field">Santa Lucia, MAIT is finished with their investigation on  
     1550                                        the 55 overpass.  Preparing DOT truck for tow.</LINE>                            
     1551                                <LINE Role="Dispatch">14-17 Santa Lucia 10-4. MAIT is finished with their  
     1552                                                investigation on the 55 overpass. Preparing DOT truck  
     1553                                                for tow.</LINE> 
     1554                        </DIALOG> 
     1555                </CHP_RADIO> 
     1556        </SCRIPT_EVENT> 
     1557 
     1558        <SCRIPT_EVENT> 
     1559                <TIME_INDEX>00:48:00</TIME_INDEX> 
     1560                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1561                 
     1562                <CAD_DATA> 
     1563                        <CAD_INCIDENT_EVENT> 
     1564                                <DETAIL>1 1144 IN TRCK, REQ CRNR</DETAIL> 
     1565                                <AUDIO Length = "18" Path = "188/18813.mp3" /> 
     1566                        </CAD_INCIDENT_EVENT>    
     1567                </CAD_DATA> 
     1568                 
     1569                <CHP_RADIO RadioFile="18813.mp3"> 
     1570                        <DIALOG> 
     1571                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1572                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1573                                <LINE Role="Field">Santa Lucia 9-9. There is one 11-44 in the truck. Request coroner.</LINE>                             
     1574                                <LINE Role="Dispatch">9-9 Santa Lucia copied one 11-44 in truck. Request coroner.</LINE> 
     1575                        </DIALOG> 
     1576                </CHP_RADIO> 
     1577 
     1578                <ACTIVITY_LOG_EVALUATION> 
     1579                        <EXPECTED_ACTION>Should enter info for coroner request</EXPECTED_ACTION> 
     1580                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     1581                </ACTIVITY_LOG_EVALUATION> 
     1582                 
     1583                <TMT_RADIO>Sign truck/s are 97 at the end of the current queue.</TMT_RADIO> 
     1584 
     1585        </SCRIPT_EVENT> 
     1586 
     1587        <SCRIPT_EVENT> 
     1588                <TIME_INDEX>00:49:00</TIME_INDEX> 
     1589                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1590 
     1591                <TELEPHONE> 
     1592                        <INSTRUCTOR Role="Radio Reporter #8">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR> 
     1593                        <INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR> 
     1594                        <STUDENT>Notify reporter of current incidents.</STUDENT> 
     1595                        <INSTRUCTOR Role="Radio Reporter #8">What details do you have on those?</INSTRUCTOR> 
     1596                        <STUDENT>Notify reporter of current incident details.</STUDENT> 
     1597                </TELEPHONE> 
     1598 
     1599        </SCRIPT_EVENT> 
     1600 
     1601        <SCRIPT_EVENT> 
     1602                <TIME_INDEX>00:50:00</TIME_INDEX> 
     1603                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1604                 
     1605                <CAD_DATA> 
     1606                        <CAD_INCIDENT_EVENT> 
     1607                                <DETAIL>9-9 1039 CRNR, ETA 15</DETAIL> 
     1608                                <AUDIO Length = "16" Path = "188/18814.mp3" /> 
     1609                        </CAD_INCIDENT_EVENT>    
     1610                </CAD_DATA>              
     1611 
     1612                <CHP_RADIO RadioFile="18814.mp3"> 
     1613                        <DIALOG> 
     1614                                <LINE Role="Dispatch">  9-9 Santa Lucia</LINE>                           
     1615                                <LINE Role="Field">     Santa Lucia 9-9 go ahead.</LINE>                                 
     1616                                <LINE Role="Dispatch">  9-9 Santa Lucia 10-39 coroner, ETA is 15 minutes.</LINE>                                 
     1617                                <LINE Role="Field">     Santa Lucia 9-9 10-4.</LINE> 
     1618                        </DIALOG> 
     1619                </CHP_RADIO> 
     1620                 
     1621                <ACTIVITY_LOG_EVALUATION> 
     1622                        <EXPECTED_ACTION>Should enter info for 10-39 CORONER</EXPECTED_ACTION> 
     1623                </ACTIVITY_LOG_EVALUATION>               
     1624                 
     1625                <MAINTENANCE_RADIO> 
     1626                        Radio traffic between maintenance workers on site and maintenance dispatcher.  
     1627                        Dispatched crews are 10-97 and beginning the cleanup. 
     1628                </MAINTENANCE_RADIO> 
     1629 
     1630 
     1631        </SCRIPT_EVENT> 
     1632 
     1633        <SCRIPT_EVENT> 
     1634                <TIME_INDEX>00:51:00</TIME_INDEX> 
     1635                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1636                 
     1637                <CAD_DATA> 
     1638                        <CAD_INCIDENT_EVENT> 
     1639                                <DETAIL>CT 1097, STRTNG CLNUP OF TOMATOES</DETAIL> 
     1640                                <AUDIO Length = "18" Path = "188/18815.mp3" /> 
     1641                        </CAD_INCIDENT_EVENT>    
     1642                </CAD_DATA> 
     1643 
     1644                <CHP_RADIO RadioFile="18815.mp3"> 
     1645                        <DIALOG> 
     1646                                <LINE Role="Field">     Santa Lucia 9-9.</LINE>                          
     1647                                <LINE Role="Dispatch">  9-9 Santa Lucia go ahead.</LINE>                                 
     1648                                <LINE Role="Field">     Santa Lucia 9-9. Caltrans is 10-97. Starting cleanup of tomatoes.</LINE>                                 
     1649                                <LINE Role="Dispatch">  9-9 Santa Lucia 10-4. Caltrans 10-97. Starting cleanup of tomatoes.</LINE> 
     1650                        </DIALOG> 
     1651                </CHP_RADIO> 
     1652 
     1653                <TELEPHONE> 
     1654                        <INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news 2.</INSTRUCTOR> 
     1655                        <INSTRUCTOR Role="TV Reporter #4">I'm away from my CAD. What's going on  
     1656                                                                                 with the accident on northbound 5  
     1657                                                                                 involving the tomato truck spill? 
     1658                        </INSTRUCTOR> 
     1659                        <STUDENT>Fire out on truck, 11-44, will start cleanup.</STUDENT> 
     1660                        <INSTRUCTOR Role="TV Reporter #4">Was anybody killed in the collision.</INSTRUCTOR> 
     1661                        <STUDENT>One 11-44</STUDENT> 
     1662                </TELEPHONE> 
     1663 
     1664        </SCRIPT_EVENT> 
     1665 
     1666        <SCRIPT_EVENT> 
     1667                <TIME_INDEX>00:52:00</TIME_INDEX> 
     1668                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1669 
     1670                <TMT_RADIO>Radio traffic between TMT crew and TMT leader regarding current queue status</TMT_RADIO> 
     1671 
     1672        </SCRIPT_EVENT> 
     1673 
     1674        <SCRIPT_EVENT> 
     1675                <TIME_INDEX>00:53:00</TIME_INDEX> 
     1676                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1677                 
     1678                <CAD_DATA> 
     1679                        <CAD_INCIDENT_EVENT> 
     1680                                <DETAIL>1185 ROT 1097</DETAIL> 
     1681                                <AUDIO Length = "15" Path = "188/18816.mp3" /> 
     1682                        </CAD_INCIDENT_EVENT>    
     1683                </CAD_DATA> 
     1684 
     1685                <CHP_RADIO RadioFile="18816.mp3"> 
     1686                        <DIALOG> 
     1687                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1688                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1689                                <LINE Role="Field">Santa Lucia 9-9. 11-85 rotation 10-97.</LINE>                                 
     1690                                <LINE Role="Dispatch">  9-9 Santa Lucia copied 11-85 rotation 10-97.</LINE> 
     1691                        </DIALOG> 
     1692                </CHP_RADIO>     
     1693 
     1694                <TELEPHONE> 
     1695                        <INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR> 
     1696                        <INSTRUCTOR Role="Radio Reporter #9">What details do you have on the northbound 5 collision?</INSTRUCTOR> 
     1697                        <STUDENT>(pause for answer)</STUDENT> 
     1698                        <INSTRUCTOR Role="Radio Reporter #9">Is there an alternate route established?</INSTRUCTOR>  
     1699                        <STUDENT>(pause for answer)</STUDENT>                    
     1700                </TELEPHONE>             
     1701                 
     1702        </SCRIPT_EVENT> 
     1703 
     1704        <SCRIPT_EVENT> 
     1705                <TIME_INDEX>00:54:00</TIME_INDEX> 
     1706                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1707 
     1708                <CAD_DATA> 
     1709                        <CAD_INCIDENT_EVENT> 
     1710                                <DETAIL>MAIT STARTING INVESTIGATION NB 405 TO TAKE 30 MIN</DETAIL> 
     1711                                <AUDIO Length = "23" Path = "187/18719.mp3" /> 
     1712                        </CAD_INCIDENT_EVENT>    
     1713                </CAD_DATA> 
     1714 
     1715                <CHP_RADIO RadioFile="18719.mp3"> 
     1716                        <DIALOG> 
     1717                                <LINE Role="Field">     Santa Lucia 14-S3.</LINE>                                
     1718                                <LINE Role="Dispatch">  14-S3 Santa Lucia go ahead.</LINE>                               
     1719                                <LINE Role="Field">     Santa Lucia 14-S3. MAIT is starting investigation on  
     1720                                        northbound 405. The investigation should take 30 minutes.</LINE>                                 
     1721                                <LINE Role="Dispatch">  14-S3 Santa Lucia copied MAIT starting investigation on  
     1722                                                northbound 405. The investigation should take 30 minutes.</LINE> 
     1723                        </DIALOG> 
     1724                </CHP_RADIO> 
     1725 
     1726        </SCRIPT_EVENT> 
     1727 
     1728        <SCRIPT_EVENT> 
     1729                <TIME_INDEX>00:55:00</TIME_INDEX> 
     1730                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1731                 
     1732                <CAD_DATA> 
     1733                        <CAD_INCIDENT_EVENT> 
     1734                                <DETAIL>CLNUP NRLY FNSHD DOT RDY TO BE TWD, SB SR-55 LNS OPN IN 5</DETAIL> 
     1735                                <AUDIO Length = "25" Path = "187/18720.mp3" /> 
     1736                        </CAD_INCIDENT_EVENT>            
     1737                </CAD_DATA> 
     1738 
     1739                <CHP_RADIO RadioFile="18720.mp3"> 
     1740                        <DIALOG> 
     1741                                <LINE Role="Field">Santa Lucia 14-17.</LINE>                             
     1742                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                                 
     1743                                <LINE Role="Field">Santa Lucia, nearly finished with cleanup and the DOT truck  
     1744                                        is ready to be towed. Southbound 55 lanes open in 5 minutes.</LINE>                              
     1745                                <LINE Role="Dispatch">14-17 Santa Lucia 10-4. Nearly finished with cleanup and  
     1746                                                DOT truck is ready to be towed. Southbound 55 lanes open in 5.</LINE> 
     1747                        </DIALOG> 
     1748                </CHP_RADIO> 
     1749 
     1750        </SCRIPT_EVENT> 
     1751 
     1752        <SCRIPT_EVENT> 
     1753                <TIME_INDEX>00:56:00</TIME_INDEX> 
     1754                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1755                 
     1756                <CAD_DATA> 
     1757                        <CAD_INCIDENT_EVENT> 
     1758                                <DETAIL>WTNSSES, JOHN/BETTY JONES SAW TOMATO TRUCK LOSE CONTROL, FLIP OVER, VEH HIT, TRCK IMM CAUGHT FIRE</DETAIL> 
     1759                                <WITNESS Name="John/Betty Jones" Address="101 Lowland Dr." PhoneNum="(949)555-8375"/> 
     1760                                <AUDIO Length = "27" Path = "188/18817.mp3" /> 
     1761                        </CAD_INCIDENT_EVENT>            
     1762                </CAD_DATA> 
     1763 
     1764                <CHP_RADIO RadioFile="18817.mp3"> 
     1765                        <DIALOG> 
     1766                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1767                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1768                                <LINE Role="Field">Santa Lucia 9-9. Witnesses John and Betty Jones saw the  
     1769                                        tomato truck lose control, flip over, and the vehicle hit  
     1770                                        it. The truck then caught fire.</LINE>                           
     1771                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Witnesses John and Betty Jones saw  
     1772                                                tomato truck lose control, flip over, and vehicle hit  
     1773                                                it. Truck then immediately caught fire.</LINE> 
     1774                        </DIALOG> 
     1775                </CHP_RADIO> 
     1776 
     1777                <TELEPHONE> 
     1778                        <INSTRUCTOR Role="Public">Hello, is George there?</INSTRUCTOR> 
     1779                        <STUDENT>No, wrong number.</STUDENT> 
     1780                        <INSTRUCTOR Role="Public">Sorry, good bye.</INSTRUCTOR>  
     1781                </TELEPHONE> 
     1782 
     1783        </SCRIPT_EVENT> 
     1784 
     1785        <SCRIPT_EVENT> 
     1786                <TIME_INDEX>00:59:00</TIME_INDEX> 
     1787                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1788                 
     1789                <CAD_DATA> 
     1790                        <CAD_INCIDENT_EVENT> 
     1791                                <DETAIL>BIG RIG 1185 1097</DETAIL> 
     1792                                <AUDIO Length = "16" Path = "188/18818.mp3" /> 
     1793                        </CAD_INCIDENT_EVENT>    
     1794                </CAD_DATA> 
     1795 
     1796                <CHP_RADIO RadioFile="18818.mp3"> 
     1797                        <DIALOG> 
     1798                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1799                                <LINE Role="Dispatch">9-9 go ahead to Santa Lucia</LINE>                                 
     1800                                <LINE Role="Field">Santa Lucia 9-9, big rig 11-85 10-97.</LINE>                          
     1801                                <LINE Role="Dispatch">9-9 Santa Lucia copies, big rig 11-85 10-97.</LINE> 
     1802                        </DIALOG> 
     1803                </CHP_RADIO>     
     1804 
     1805                <TELEPHONE> 
     1806                        <INSTRUCTOR Role="Radio Reporter #10">"Hello, this is Bill Rasmussen at KTRC radio."</INSTRUCTOR> 
     1807                        <INSTRUCTOR Role="Radio Reporter #10">"Do you have any updated info on the  
     1808                                                                                        northbound 5 collision involving the  
     1809                                                                                        tomato truck?" 
     1810                        </INSTRUCTOR> 
     1811                        <STUDENT>Pause for answer.</STUDENT> 
     1812                        <INSTRUCTOR Role="Radio Reporter #10">When is it expected to be cleared.</INSTRUCTOR> 
     1813                        <STUDENT>Cleaning up now, no definite answer, approx. 30 minutes.</STUDENT> 
     1814                </TELEPHONE> 
     1815                 
     1816                <FACILITATOR_EVALUATION> 
     1817                        <EXPECTED_ACTION>Should call CHP to inquire for incident duration.  (Approx 30 minutes)</EXPECTED_ACTION> 
     1818                </FACILITATOR_EVALUATION> 
     1819 
     1820        </SCRIPT_EVENT> 
     1821 
     1822        <SCRIPT_EVENT> 
     1823                <TIME_INDEX>01:02:00</TIME_INDEX> 
     1824                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1825                 
     1826                <CAD_DATA> 
     1827                        <CAD_INCIDENT_EVENT> 
     1828                                <DETAIL>14-17 1097 DOT TRCK TWD, SB SR-55 OPN</DETAIL> 
     1829                                <AUDIO Length = "21" Path = "187/18721.mp3" /> 
     1830                                 
     1831                                <PARAMICS LocationID="187_S_55_ML"> 
     1832                                        <Status>CLEARED</Status> 
     1833                                </PARAMICS>                              
     1834                        </CAD_INCIDENT_EVENT>    
     1835                </CAD_DATA> 
     1836 
     1837                <CHP_RADIO RadioFile="18721.mp3"> 
     1838                        <DIALOG> 
     1839                                <LINE Role="Field">Santa Lucia 14-17.</LINE>                             
     1840                                <LINE Role="Dispatch">14-17 Santa Lucia go ahead.</LINE>                                 
     1841                                <LINE Role="Field">Santa Lucia 10-98, the DOT truck has been towed and the  
     1842                                        southbound 55 lanes are open.</LINE>                             
     1843                                <LINE Role="Dispatch">Santa Lucia copied 14-17 10-98. DOT truck towed and  
     1844                                                southbound 55 lanes open.</LINE> 
     1845                        </DIALOG> 
     1846                </CHP_RADIO> 
     1847                 
     1848                <CMS_EVALUATION cmsID="72" type="remove"> 
     1849                        <LOCATION>SB 55 @ WARNER AVE</LOCATION> 
     1850                </CMS_EVALUATION>                        
     1851                <ACTIVITY_LOG_EVALUATION> 
     1852                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     1853                </ACTIVITY_LOG_EVALUATION> 
     1854 
     1855                <MAINTENANCE_RADIO> 
     1856                        Maintenance workers are 10-98.  Truck has been towed and  
     1857                        taking maintenance worker, whose truck got hit, to the shop. 
     1858                </MAINTENANCE_RADIO>             
     1859 
     1860        </SCRIPT_EVENT> 
     1861 
     1862        <SCRIPT_EVENT> 
     1863                <TIME_INDEX>01:03:00</TIME_INDEX> 
     1864                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1865                 
     1866                <CAD_DATA> 
     1867                        <CAD_INCIDENT_EVENT> 
     1868                                <DETAIL>MAIT PARTIAL CMPLT, PICS TKN, NEED MSRMNTS, INTERVIEWS</DETAIL> 
     1869                                <AUDIO Length = "25" Path = "187/18722.mp3" /> 
     1870                        </CAD_INCIDENT_EVENT>    
     1871                </CAD_DATA> 
     1872                 
     1873                <CHP_RADIO RadioFile="18722.mp3"> 
     1874                        <DIALOG> 
     1875                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     1876                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     1877                                <LINE Role="Field">Santa Lucia 14-S3. MAIT has partially completed its  
     1878                                        investigation. Pictures have been taken, but still need to  
     1879                                        take measurements and conduct interviews.</LINE>                                 
     1880                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4. MAIT has partially completed its  
     1881                                                investigation.  Pictures have been taken, but still need  
     1882                                                to take measurements and conduct interviews.</LINE> 
     1883                        </DIALOG> 
     1884                </CHP_RADIO> 
     1885        </SCRIPT_EVENT> 
     1886 
     1887        <SCRIPT_EVENT> 
     1888                <TIME_INDEX>01:05:00</TIME_INDEX> 
     1889                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1890                 
     1891                <CAD_DATA> 
     1892                        <CAD_INCIDENT_EVENT> 
     1893                                <DETAIL>CT #3 LN ALMOST CLEARED OF TOMATOES</DETAIL> 
     1894                                <AUDIO Length = "17" Path = "188/18819.mp3" /> 
     1895                        </CAD_INCIDENT_EVENT>    
     1896                </CAD_DATA> 
     1897 
     1898                <CHP_RADIO RadioFile="18819.mp3"> 
     1899                        <DIALOG> 
     1900                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1901                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1902                                <LINE Role="Field">Santa Lucia 9-9. Caltrans has the #3 lane almost cleared of the tomatoes.</LINE>                              
     1903                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans has #3 almost cleared.</LINE> 
     1904                        </DIALOG> 
     1905                </CHP_RADIO> 
     1906 
     1907                <TELEPHONE> 
     1908                        <INSTRUCTOR Role="Radio Reporter #11">"Hello, this is Chris Rasmuessan at KWIT radio."</INSTRUCTOR> 
     1909                        <INSTRUCTOR Role="Radio Reporter #11">"Do you have an ETA for the opening of the lanes on Eastbound 91?" 
     1910                        </INSTRUCTOR> 
     1911                        <STUDENT>No to full opening, approx. 30 minutes, #3 lane nearly cleared.</STUDENT> 
     1912                </TELEPHONE> 
     1913 
     1914        </SCRIPT_EVENT> 
     1915 
     1916        <SCRIPT_EVENT> 
     1917                <TIME_INDEX>01:07:00</TIME_INDEX> 
     1918                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT>        
     1919                 
     1920                <CAD_DATA> 
     1921                        <CAD_INCIDENT_EVENT> 
     1922                                <DETAIL>CRNR 1097</DETAIL> 
     1923                                <AUDIO Length = "14" Path = "188/18820.mp3" /> 
     1924                        </CAD_INCIDENT_EVENT>    
     1925                </CAD_DATA> 
     1926                 
     1927                <CHP_RADIO RadioFile="31520.mp3"> 
     1928                        <DIALOG> 
     1929                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     1930                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     1931                                <LINE Role="Field">Santa Lucia 9-9, coroner 10-97.</LINE>                                
     1932                                <LINE Role="Dispatch">9-9 Santa Lucia copies coroner 10-97.</LINE> 
     1933                        </DIALOG> 
     1934                </CHP_RADIO> 
     1935                 
     1936                <ACTIVITY_LOG_EVALUATION> 
     1937                        <EXPECTED_ACTION>Should enter info for 10-97 coroner</EXPECTED_ACTION> 
     1938                </ACTIVITY_LOG_EVALUATION> 
     1939 
     1940        </SCRIPT_EVENT> 
     1941         
     1942         
     1943        <SCRIPT_EVENT> 
     1944                <TIME_INDEX>01:08:00</TIME_INDEX> 
     1945                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1946                 
     1947                <TELEPHONE> 
     1948                        <INSTRUCTOR Role="Radio Reporter #1">"Hello, this Dakota Crew at KTAK radio."</INSTRUCTOR> 
     1949                        <INSTRUCTOR Role="Radio Reporter #1">"Do you have any new incidents  
     1950                                                                                        within the last 20 minutes?" 
     1951                        </INSTRUCTOR> 
     1952                        <STUDENT>No.</STUDENT> 
     1953                        <INSTRUCTOR Role="Radio Reporter #1">Give me the details on that.</INSTRUCTOR> 
     1954                </TELEPHONE>             
     1955                 
     1956                <MAINTENANCE_RADIO> 
     1957                        Maintenance crew notifies dispatch that lane #3 is clear.  The #4,5 
     1958                        lanes should be clear in another 20-30 minutes. 
     1959                </MAINTENANCE_RADIO> 
     1960                 
     1961        </SCRIPT_EVENT> 
     1962 
     1963        <SCRIPT_EVENT> 
     1964                <TIME_INDEX>01:08:00</TIME_INDEX> 
     1965                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     1966                 
     1967                <CAD_DATA> 
     1968                        <CAD_INCIDENT_EVENT> 
     1969                                <DETAIL>REQ 6 ROT 1185</DETAIL> 
     1970                                <AUDIO Length = "17" Path = "187/18723.mp3" /> 
     1971                        </CAD_INCIDENT_EVENT>    
     1972                </CAD_DATA> 
     1973 
     1974                <CHP_RADIO RadioFile="18723.mp3"> 
     1975                        <DIALOG> 
     1976                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     1977                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     1978                                <LINE Role="Field">Santa Lucia 14-S3. Request 6 rotational 11-85's.</LINE>                               
     1979                                <LINE Role="Dispatch">14-S3 Santa Lucia copied requesting 6 rotational 11-85's.</LINE> 
     1980                        </DIALOG> 
     1981                </CHP_RADIO> 
     1982        </SCRIPT_EVENT> 
     1983 
     1984        <SCRIPT_EVENT> 
     1985                <TIME_INDEX>01:09:00</TIME_INDEX> 
     1986                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     1987                 
     1988                <CAD_DATA> 
     1989                        <CAD_INCIDENT_EVENT> 
     1990                                <DETAIL>VEH TOWED, #3 LN CLEARED, OPENING</DETAIL> 
     1991                                <AUDIO Length = "18" Path = "188/18821.mp3" /> 
     1992                                 
     1993                                <PARAMICS LocationID="188_N_5_ML"> 
     1994                                        <Status>CHANGED</Status> 
     1995                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     1996                                        <Lane_number>4</Lane_number> 
     1997                                        <Lane_number>5</Lane_number> 
     1998                                </PARAMICS>      
     1999                                 
     2000                        </CAD_INCIDENT_EVENT>            
     2001                </CAD_DATA> 
     2002                 
     2003                <CHP_RADIO RadioFile="18821.mp3"> 
     2004                        <DIALOG> 
     2005                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     2006                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     2007                                <LINE Role="Field">Santa Lucia 9-9. Vehicle towed. #3 lane cleared of  
     2008                                        tomatoes and opening lane now.</LINE>                            
     2009                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Vehicle towed, #3 lane cleared  
     2010                                                and opening lane now.</LINE> 
     2011                        </DIALOG> 
     2012                </CHP_RADIO> 
     2013 
     2014        </SCRIPT_EVENT> 
     2015 
     2016        <SCRIPT_EVENT> 
     2017                <TIME_INDEX>01:10:00</TIME_INDEX> 
     2018                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     2019 
     2020                <CAD_DATA> 
     2021                        <CAD_INCIDENT_EVENT> 
     2022                                <DETAIL>MAIT NEARLY COMPLETE, FINISHING INTERVIEWS, TOW ETA 10</DETAIL> 
     2023                                <AUDIO Length = "29" Path = "187/18724.mp3" /> 
     2024                        </CAD_INCIDENT_EVENT>            
     2025                </CAD_DATA> 
     2026 
     2027                <CHP_RADIO RadioFile="18724.mp3"> 
     2028                        <DIALOG> 
     2029                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     2030                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     2031                                <LINE Role="Field">Santa Lucia 14-S3. MAIT has nearly completed their  
     2032                                        investigation, they are finishing up the interviews. ETA  
     2033                                        tows?</LINE>                             
     2034                                <LINE Role="Dispatch">14-S3 Santa Lucia. MAIT has nearly completed their  
     2035                                                investigation, they are finishing up the interviews.  
     2036                                                Tow ETA 10 minutes.</LINE>                               
     2037                                <LINE Role="Field">Santa Lucia 14-S3 10-4 ETA 10.</LINE> 
     2038                        </DIALOG> 
     2039                </CHP_RADIO> 
     2040 
     2041                <TMT_RADIO>Have SB 55 TMT units go 10-98.</TMT_RADIO> 
     2042                 
     2043        </SCRIPT_EVENT> 
     2044 
     2045        <SCRIPT_EVENT> 
     2046                <TIME_INDEX>01:12:00</TIME_INDEX> 
     2047                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2048 
     2049                <CAD_DATA> 
     2050                        <CAD_INCIDENT_EVENT> 
     2051                                <DETAIL>1144 CNFRMD, #3 LN OPN, FULL OPNNG 20 MIN</DETAIL> 
     2052                                <AUDIO Length = "21" Path = "188/18822.mp3" /> 
     2053                        </CAD_INCIDENT_EVENT>            
     2054                </CAD_DATA> 
     2055 
     2056                <CHP_RADIO RadioFile="18822.mp3"> 
     2057                        <DIALOG> 
     2058                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     2059                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     2060                                <LINE Role="Field">Santa Lucia 9-9. Coroner has confirmed 11-44. #3 lane is  
     2061                                        open. Full opening in 20 minutes.</LINE>                                 
     2062                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. 11-44 confirmed. #3 lane open,  
     2063                                                full opening in 20.</LINE> 
     2064                        </DIALOG> 
     2065                </CHP_RADIO> 
     2066                 
     2067                <ACTIVITY_LOG_EVALUATION> 
     2068                        <EXPECTED_ACTION>Should enter info for confirmed 1144</EXPECTED_ACTION> 
     2069                </ACTIVITY_LOG_EVALUATION> 
     2070        </SCRIPT_EVENT> 
     2071 
     2072        <SCRIPT_EVENT> 
     2073                <TIME_INDEX>01:13:00</TIME_INDEX> 
     2074                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2075 
     2076                <TELEPHONE> 
     2077                        <INSTRUCTOR Role="TV Reporter #1">"Hello, this is Cameron Stevens at KCLY TV 2."</INSTRUCTOR> 
     2078                        <INSTRUCTOR Role="TV Reporter #1">"My CAD is down. Were there any  
     2079                                                                                 confirmed fatalities at the collision  
     2080                                                                                 northbound 5?" 
     2081                        </INSTRUCTOR> 
     2082                        <STUDENT>1 dead.</STUDENT> 
     2083                        <INSTRUCTOR Role="TV Reporter #1">"When are the lanes supposed to be open?"</INSTRUCTOR> 
     2084                        <STUDENT>#3 lane open, full opening in 20.</STUDENT> 
     2085                </TELEPHONE> 
     2086 
     2087        </SCRIPT_EVENT> 
     2088 
     2089        <SCRIPT_EVENT> 
     2090                <TIME_INDEX>01:15:00</TIME_INDEX> 
     2091                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2092                 
     2093                <CAD_DATA> 
     2094                        <CAD_INCIDENT_EVENT> 
     2095                                <DETAIL>CT NRLY FNSHD CLNUP, TRCK BEING PRPRD FOR 1185</DETAIL> 
     2096                                <AUDIO Length = "18" Path = "188/18823.mp3" /> 
     2097                        </CAD_INCIDENT_EVENT>    
     2098                </CAD_DATA> 
     2099 
     2100                <CHP_RADIO RadioFile="18823.mp3"> 
     2101                        <DIALOG> 
     2102                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     2103                                <LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE>                                
     2104                                <LINE Role="Field">Santa Lucia 9-9. Caltrans is nearly finished with cleanup.    
     2105                                        Truck being prepared for 11-85.</LINE>                           
     2106                                <LINE Role="Dispatch">  9-9 Santa Lucia 10-4. Caltrans nearly finished. Truck  
     2107                                                being prepared for 11-85.</LINE> 
     2108                        </DIALOG> 
     2109                </CHP_RADIO> 
     2110        </SCRIPT_EVENT> 
     2111 
     2112        <SCRIPT_EVENT> 
     2113                <TIME_INDEX>01:16:00</TIME_INDEX> 
     2114                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2115 
     2116                <TELEPHONE> 
     2117                        <INSTRUCTOR Role="Radio Reporter #2">"Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR> 
     2118                        <INSTRUCTOR Role="Radio Reporter #2">When is the roadway supposed to be cleared on the 5? 
     2119                        </INSTRUCTOR> 
     2120                        <STUDENT>#3 lane open, full opening in approx. 15.</STUDENT> 
     2121                </TELEPHONE> 
     2122 
     2123        </SCRIPT_EVENT> 
     2124 
     2125        <SCRIPT_EVENT> 
     2126                <TIME_INDEX>01:16:30</TIME_INDEX> 
     2127                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     2128 
     2129                <CAD_DATA> 
     2130                        <CAD_INCIDENT_EVENT> 
     2131                                <DETAIL>MAIT FINISHED INVESTIGATION 1098, START CLEANUP WHEN 1185S ARRIVE</DETAIL> 
     2132                                <AUDIO Length = "23" Path = "187/18725.mp3" /> 
     2133                        </CAD_INCIDENT_EVENT>    
     2134                </CAD_DATA> 
     2135 
     2136                <CHP_RADIO RadioFile="18725.mp3"> 
     2137                        <DIALOG> 
     2138                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     2139                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     2140                                <LINE Role="Field">Santa Lucia 14-S3. MAIT is finished with their investigation  
     2141                                        and 10-98. Will start cleanup when the 11-85's arrive.</LINE>                            
     2142                                <LINE Role="Dispatch">14-S3 Santa Lucia copied MAIT finished with  
     2143                                                investigation and 10-98. Start cleanup when 11-85's  
     2144                                                arrive.</LINE> 
     2145                        </DIALOG> 
     2146                </CHP_RADIO> 
     2147        </SCRIPT_EVENT> 
     2148 
     2149        <SCRIPT_EVENT> 
     2150                <TIME_INDEX>01:18:00</TIME_INDEX> 
     2151                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2152 
     2153                <MAINTENANCE_RADIO>Confirm completion of tomato cleanup.  Going 10-98</MAINTENANCE_RADIO> 
     2154        </SCRIPT_EVENT> 
     2155 
     2156        <SCRIPT_EVENT> 
     2157                <TIME_INDEX>01:19:00</TIME_INDEX> 
     2158                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT>  
     2159 
     2160                <CAD_DATA> 
     2161                        <CAD_INCIDENT_EVENT> 
     2162                                <DETAIL>1185 1097 PARTIAL OPENING IN 15</DETAIL> 
     2163                                <AUDIO Length = "21" Path = "187/18726.mp3" /> 
     2164                        </CAD_INCIDENT_EVENT>    
     2165                </CAD_DATA>              
     2166 
     2167                <CHP_RADIO RadioFile="18726.mp3"> 
     2168                        <DIALOG> 
     2169                                <LINE Role="Field">Santa Lucia 14-S3</LINE>                              
     2170                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     2171                                <LINE Role="Field">Santa Lucia 14-S3 11-85's 10-97. Partial opening in 15 minutes.</LINE>                                
     2172                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4 11-85's 10-97. Partial opening in 15 minutes.</LINE> 
     2173                        </DIALOG> 
     2174                </CHP_RADIO> 
     2175        </SCRIPT_EVENT> 
     2176 
     2177        <SCRIPT_EVENT> 
     2178                <TIME_INDEX>01:20:00</TIME_INDEX> 
     2179                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2180 
     2181                <CAD_DATA> 
     2182                        <CAD_INCIDENT_EVENT> 
     2183                                <DETAIL>CT 98 TOMATOES, LNS OPN IN 10</DETAIL> 
     2184                                <AUDIO Length = "17" Path = "188/18824.mp3" /> 
     2185                        </CAD_INCIDENT_EVENT>            
     2186                </CAD_DATA> 
     2187 
     2188                <CHP_RADIO RadioFile="18824.mp3"> 
     2189                        <DIALOG> 
     2190                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     2191                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     2192                                <LINE Role="Field">Santa Lucia 9-9. Caltrans done cleaning up the tomatoes.  
     2193                                        Lanes open in 10.</LINE>                                 
     2194                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Caltrans 98 with  
     2195                                                tomatoes, lanes open in 10.</LINE> 
     2196                        </DIALOG> 
     2197                </CHP_RADIO> 
     2198        </SCRIPT_EVENT> 
     2199 
     2200        <SCRIPT_EVENT> 
     2201                <TIME_INDEX>01:21:00</TIME_INDEX> 
     2202                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2203                 
     2204                <TELEPHONE> 
     2205                        <INSTRUCTOR Role="Radio Reporter #3">"Hello, this is Bill Bradley at KCTR radio."</INSTRUCTOR> 
     2206                        <INSTRUCTOR Role="Radio Reporter #3">"What kind of backup is there on  
     2207                                                                                        northbound 5 due to the tomato truck spill and collision?" 
     2208                        </INSTRUCTOR> 
     2209                        <STUDENT>Current queue from ATMS.</STUDENT> 
     2210                        <INSTRUCTOR Role="Radio Reporter #3">Are the lanes open soon?</INSTRUCTOR> 
     2211                        <STUDENT>10 minutes.</STUDENT> 
     2212                </TELEPHONE> 
     2213 
     2214        </SCRIPT_EVENT> 
     2215 
     2216        <SCRIPT_EVENT> 
     2217                <TIME_INDEX>01:23:00</TIME_INDEX> 
     2218                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2219                 
     2220                <CAD_DATA> 
     2221                        <MASTER_INC_NUM>145086SLO005</MASTER_INC_NUM> 
     2222                        <P>3</P> 
     2223                        <ADDITIONAL_INFO> 
     2224                                <TYPE_CODE>1031 - Crime in progress</TYPE_CODE> 
     2225                                <TYPE>1031</TYPE> 
     2226                        </ADDITIONAL_INFO> 
     2227                        <LOCATION> 
     2228                                <BEAT>28-24</BEAT> 
     2229                                <ADDRESS>NB/SB 405 at Jeffrey</ADDRESS> 
     2230                                <LOC>NB/SB 405 at Jeffrey</LOC> 
     2231                                <CITY>San Luis Obispo</CITY> 
     2232                                <AREA>28-San Luis Obispo</AREA> 
     2233                                <FIRE>San Luis Obispo</FIRE> 
     2234                                <LAW>San Luis Obispo</LAW> 
     2235                                <EMS>San Luis Obispo</EMS> 
     2236                        </LOCATION> 
     2237                        <GENERAL> 
     2238                                <AGY>CHP</AGY> 
     2239                        </GENERAL> 
     2240                 
     2241                        <HEADER_INFO> 
     2242                                <Type>1031</Type> 
     2243                                <Beat>28-24</Beat> 
     2244                                <TruncLoc>NB/SB 405 at Jeffrey</TruncLoc> 
     2245                                <FullLoc>NB/SB 405 at Jeffrey</FullLoc> 
     2246                        </HEADER_INFO> 
     2247                         
     2248                        <LOCATION_INFO ID="189_N_405_ML"> 
     2249                                <Route>405</Route> 
     2250                                <Direction>NB</Direction> 
     2251                                <Postmile>3.04</Postmile> 
     2252                                <Location_type>ML</Location_type>                                        
     2253                        </LOCATION_INFO> 
     2254                         
     2255                        <LOCATION_INFO ID="189_N_405_HV"> 
     2256                                <Route>405</Route> 
     2257                                <Direction>NB</Direction> 
     2258                                <Postmile>3.04</Postmile> 
     2259                                <Location_type>HV</Location_type>                                        
     2260                        </LOCATION_INFO> 
     2261 
     2262                        <LOCATION_INFO ID="189_S_405_ML"> 
     2263                                <Route>405</Route> 
     2264                                <Direction>SB</Direction> 
     2265                                <Postmile>5.55</Postmile> 
     2266                                <Location_type>ML</Location_type>                                        
     2267                        </LOCATION_INFO> 
     2268                         
     2269                        <LOCATION_INFO ID="189_S_405_HV"> 
     2270                                <Route>405</Route> 
     2271                                <Direction>SB</Direction> 
     2272                                <Postmile>5.55</Postmile> 
     2273                                <Location_type>HV</Location_type>                                        
     2274                        </LOCATION_INFO> 
     2275                         
     2276 
     2277                        <CAD_INCIDENT_EVENT>                     
     2278                                <DETAIL>CELLULAR 911 RPT SUICIDE BMBR AT I-405 @ JEFFREY, UNVERIFIED</DETAIL> 
     2279                                <DETAIL>1039 IRV PD, PD ENRT, 28-24 ENRT FROM I-405 @ IRVINE CNTR.</DETAIL> 
     2280                                <UNIT UnitNum="28-24" Status="ENRT" Primary="true" Active="true"/> 
     2281                                <AUDIO Length = "23" Path = "189/18901.mp3" /> 
     2282                        </CAD_INCIDENT_EVENT>            
     2283                         
     2284                </CAD_DATA>      
     2285 
     2286                <GENERAL_INFO>  
     2287                        <TITLE>Incident Description</TITLE> 
     2288                        <TEXT>This is a suicide attempt and a bomb threat. A man with a bomb  
     2289                  strapped to him is threatening to blow up the interchange at I-405 and 
     2290                  Jeffrey Road. The freeway interchange is shut down completely, causing  
     2291                  major backup in both directions on I-405. The man is eventually  
     2292                  apprehended after attempting to explode the bomb. The PD, additional  
     2293                  units, sign trucks, negotiator, and the bomb squad are sent to the  
     2294                  scene to assist. 
     2295                        </TEXT> 
     2296                </GENERAL_INFO> 
     2297 
     2298                <CHP_RADIO RadioFile="18901.mp3"> 
     2299                        <DIALOG> 
     2300                                <LINE Role="Dispatch">28-24 Santa Lucia.</LINE>                          
     2301                                <LINE Role="Field">Santa Lucia 28-24 go ahead.</LINE>                            
     2302                                <LINE Role="Dispatch">  28-24 Santa Lucia suicide attempt 405 on the Jeffrey  
     2303                                                overpass. The police department has been notified  
     2304                                                and is enroute.</LINE>                           
     2305                                <LINE Role="Field">     Santa Lucia 28-24 10-4. Enroute from 405 at Irvine Center.</LINE> 
     2306                        </DIALOG> 
     2307                </CHP_RADIO> 
     2308 
     2309                <ATMS_EVALUATION> 
     2310                        <EXPECTED_ACTION>Operator should be viewing CCTV cameras in vicinity of incident</EXPECTED_ACTION> 
     2311                </ATMS_EVALUATION> 
     2312 
     2313                <MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO> 
     2314 
     2315        </SCRIPT_EVENT> 
     2316 
     2317 
     2318        <SCRIPT_EVENT> 
     2319                <TIME_INDEX>01:24:00</TIME_INDEX> 
     2320                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2321 
     2322                <CAD_DATA> 
     2323                        <CAD_INCIDENT_EVENT> 
     2324                                <DETAIL>TRCK TWD, FD SPRYNG LNS, LNS OPN IN 5</DETAIL> 
     2325                                <AUDIO Length = "21" Path = "188/18825.mp3" /> 
     2326                        </CAD_INCIDENT_EVENT>            
     2327                </CAD_DATA> 
     2328 
     2329                <CHP_RADIO RadioFile="18825.mp3"> 
     2330                        <DIALOG> 
     2331                                <LINE Role="Field">Santa Lucia 9-9.</LINE>                               
     2332                                <LINE Role="Dispatch">9-9 Santa Lucia go ahead.</LINE>                           
     2333                                <LINE Role="Field">Santa Lucia 9-9. Truck towed. Fire department spraying lanes  
     2334                                        clean. Lanes open in 5.</LINE>                           
     2335                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. Truck towed. Fire department  
     2336                                                spraying lane clean, lanes open in 5.</LINE> 
     2337                        </DIALOG> 
     2338                </CHP_RADIO> 
     2339        </SCRIPT_EVENT> 
     2340 
     2341        <SCRIPT_EVENT> 
     2342                <TIME_INDEX>01:25:00</TIME_INDEX> 
     2343                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2344 
     2345                <TELEPHONE> 
     2346                        <INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR>  
     2347                        <INSTRUCTOR Role="Radio Reporter #4">Are the lanes open yet on  
     2348                                                                                        northbound 5 just north of Lake  
     2349                                                                                        Forest Drive. 
     2350                        </INSTRUCTOR> 
     2351                        <STUDENT>#3 open, all lanes open in 5.</STUDENT> 
     2352                        <INSTRUCTOR Role="Radio Reporter #4">Are there any other new incidents  
     2353                                                                                        going on right now? 
     2354                        </INSTRUCTOR> 
     2355                        <STUDENT>Notify reporter of new incidents.</STUDENT> 
     2356                </TELEPHONE> 
     2357                 
     2358        </SCRIPT_EVENT> 
     2359 
     2360        <SCRIPT_EVENT> 
     2361                <TIME_INDEX>01:25:00</TIME_INDEX> 
     2362                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2363 
     2364                <CAD_DATA> 
     2365                        <CAD_INCIDENT_EVENT> 
     2366                                <DETAIL>28-24 1097, PD 1097</DETAIL> 
     2367                                <UNIT UnitNum="28-24" Status="1097" Primary="true" Active="true"/> 
     2368                                <AUDIO Length = "18" Path = "189/18902.mp3" /> 
     2369                        </CAD_INCIDENT_EVENT>            
     2370                </CAD_DATA>      
     2371 
     2372                <CHP_RADIO RadioFile="18902.mp3"> 
     2373                        <DIALOG> 
     2374                                <LINE Role="Field">Santa Lucia 28-24.</LINE>                             
     2375                                <LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>                                 
     2376                                <LINE Role="Field">Santa Lucia 28-24 10-97 405 at Jeffrey.  
     2377                                                   Irvine PD is 10-97. 
     2378                                </LINE>                  
     2379                                <LINE Role="Dispatch">10-4, Copy you  are 97 with Irvine PD. 
     2380                                </LINE> 
     2381                        </DIALOG> 
     2382                </CHP_RADIO>             
     2383                 
     2384        </SCRIPT_EVENT> 
     2385 
     2386        <SCRIPT_EVENT> 
     2387                <TIME_INDEX>01:29:00</TIME_INDEX> 
     2388                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2389                 
     2390                <CAD_DATA> 
     2391                        <CAD_INCIDENT_EVENT> 
     2392                                <DETAIL>28-19 ENRT FROM I-5 AT SND CYN, 28-13 ENRT FROM I-5 AT 133</DETAIL> 
     2393                                <DETAIL>SHUT DWN NB I-405 AT SND CYN OFFR</DETAIL> 
     2394                                <UNIT UnitNum="28-19" Status="ENRT" Primary="false" Active="true"/> 
     2395                                <UNIT UnitNum="28-13" Status="ENRT" Primary="false" Active="true"/> 
     2396                                <AUDIO Length = "44" Path = "189/18903.mp3" /> 
     2397                        </CAD_INCIDENT_EVENT>            
     2398                </CAD_DATA>              
     2399 
     2400                <CHP_RADIO RadioFile="18903.mp3"> 
     2401                        <DIALOG> 
     2402                                <LINE Role="Dispatch">28-19 Santa Lucia.</LINE>                          
     2403                                <LINE Role="Field_1">Santa Lucia 28-19 go ahead.</LINE>                          
     2404                                <LINE Role="Dispatch">28-19 Santa Lucia 10-23.</LINE>                                    
     2405                                <LINE Role="Dispatch">(pause)</LINE>                             
     2406                                <LINE Role="Dispatch">28-13 Santa Lucia.</LINE>                          
     2407                                <LINE Role="Field_2">Santa Luica 28-13 go ahead.</LINE>                          
     2408                                <LINE Role="Dispatch">28-19 and 28-13 Santa Lucia, proceed to northbound 405  
     2409                                                to shut down the northbound lanes at the Sand Canyon off  
     2410                                                ramp. A man has threatened to blow up the 405 at  
     2411                                                Jeffrey interchange.</LINE> 
     2412                                 
     2413                                <LINE Role="Field_1">Santa Lucia 28-19 10-4. Enroute from I-5 at Sand Canyon.</LINE>                             
     2414                                <LINE Role="Field_2">Santa Lucia 28-13 copied, enroute from I-5 at 133.</LINE> 
     2415                        </DIALOG> 
     2416                </CHP_RADIO>                     
     2417                 
     2418        </SCRIPT_EVENT> 
     2419 
     2420        <SCRIPT_EVENT> 
     2421                <TIME_INDEX>01:30:00</TIME_INDEX> 
     2422                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     2423 
     2424                 
     2425                <CAD_DATA> 
     2426                        <CAD_INCIDENT_EVENT> 
     2427                                <DETAIL>OPN #2,3 LNS, FULL OPN IN 5</DETAIL> 
     2428                                <AUDIO Length = "20" Path = "187/18727.mp3" />                           
     2429                                 
     2430                                <PARAMICS LocationID="187_N_405_ML"> 
     2431                                        <Status>CHANGED</Status> 
     2432                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     2433                                        <Lane_number>1</Lane_number> 
     2434                                </PARAMICS>                                              
     2435                        </CAD_INCIDENT_EVENT>    
     2436                </CAD_DATA> 
     2437 
     2438                <CHP_RADIO RadioFile="18727.mp3"> 
     2439                        <DIALOG> 
     2440                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     2441                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead</LINE>                          
     2442                                <LINE Role="Field">Santa Lucia 14-S3. We have opened the #2 and #3 lanes. Full  
     2443                                        opening in 5 minutes.</LINE>                             
     2444                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4. #2 and #3 lanes open, full opening in 5.</LINE> 
     2445                        </DIALOG> 
     2446                </CHP_RADIO> 
     2447                 
     2448                <CMS_EVALUATION cmsID="87" type="update"> 
     2449                        <LOCATION>NB 405 @ HARVARD</LOCATION> 
     2450                        <SAMPLE_MESSAGE> 
     2451                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     2452                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     2453                        </SAMPLE_MESSAGE> 
     2454                </CMS_EVALUATION> 
     2455                <CMS_EVALUATION cmsID="88" type="update"> 
     2456                        <LOCATION>NB 405 @ ICD</LOCATION> 
     2457                        <SAMPLE_MESSAGE> 
     2458                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     2459                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     2460                        </SAMPLE_MESSAGE> 
     2461                </CMS_EVALUATION> 
     2462                <CMS_EVALUATION cmsID="95" type="update"> 
     2463                        <LOCATION>NB 5 @ EL TORO</LOCATION> 
     2464                        <SAMPLE_MESSAGE> 
     2465                                <CMS_LINE>ACCIDENT AT HWY-55</CMS_LINE> 
     2466                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     2467                        </SAMPLE_MESSAGE> 
     2468                </CMS_EVALUATION> 
     2469                <ACTIVITY_LOG_EVALUATION> 
     2470                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     2471                </ACTIVITY_LOG_EVALUATION>               
     2472 
     2473        </SCRIPT_EVENT> 
     2474 
     2475        <SCRIPT_EVENT> 
     2476                <TIME_INDEX>01:31:00</TIME_INDEX> 
     2477                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2478                 
     2479                <CAD_DATA> 
     2480                        <CAD_INCIDENT_EVENT> 
     2481                                <DETAIL>ALL LNS CLR, 9-15 OPENING LAKE FOREST ONRAMP</DETAIL> 
     2482                                <DETAIL>9-9,9-15,9-19 1098</DETAIL> 
     2483                                <UNIT UnitNum="9-9" Status="1098" Primary="true" Active="false"/> 
     2484                                <UNIT UnitNum="9-15" Status="1098" Primary="false" Active="false"/> 
     2485                                <UNIT UnitNum="9-19" Status="1098" Primary="false" Active="false"/> 
     2486                                <AUDIO Length = "25" Path = "188/18827.mp3" /> 
     2487                                 
     2488                                <PARAMICS LocationID="188_N_5_ML"> 
     2489                                        <Status>CLEARED</Status> 
     2490                                </PARAMICS>              
     2491                        </CAD_INCIDENT_EVENT>    
     2492                </CAD_DATA>      
     2493                 
     2494                <CHP_RADIO RadioFile="18827.mp3"> 
     2495                        <DIALOG>  
     2496                                <LINE Role="Field">Santa Lucia 9-9</LINE> 
     2497                                <LINE Role="Dispatch">9-9 go ahead to Santa Lucia.</LINE> 
     2498                                <LINE Role="Field">Santa Lucia 9-9. All lanes are clear.  9-15 is opening Lake Forest Onramp.  All units are 10-98.</LINE>                               
     2499                                <LINE Role="Dispatch">9-9 Santa Lucia 10-4. All lanes open.  9-15 opening Lake Forest Onramp. 
     2500                                                9-9. 9-15, 9-19 are 1098.</LINE>         
     2501                        </DIALOG> 
     2502                </CHP_RADIO> 
     2503                 
     2504                <ACTIVITY_LOG_EVALUATION> 
     2505                        <EXPECTED_ACTION>Should cancel Sig Alert</EXPECTED_ACTION> 
     2506                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     2507                </ACTIVITY_LOG_EVALUATION> 
     2508                <FACILITATOR_EVALUATION> 
     2509                        <EXPECTED_ACTION>Should be handling situation well</EXPECTED_ACTION> 
     2510                </FACILITATOR_EVALUATION> 
     2511                 
     2512        </SCRIPT_EVENT> 
     2513 
     2514        <SCRIPT_EVENT> 
     2515                <TIME_INDEX>01:31:00</TIME_INDEX> 
     2516                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2517                 
     2518                <CAD_DATA> 
     2519                        <CAD_INCIDENT_EVENT> 
     2520                                <DETAIL>28-11 ENRT FROM I405 AT BRISTOL, 28-07 ENRT FROM SR55 AT DYER</DETAIL> 
     2521                                <DETAIL>28-11 28-07 TO SHT DWN SB I405 AT CULVER OFFR</DETAIL> 
     2522                                <UNIT UnitNum="28-11" Status="ENRT" Primary="false" Active="true"/> 
     2523                                <UNIT UnitNum="28-07" Status="ENRT" Primary="false" Active="true"/> 
     2524                                <AUDIO Length = "45" Path = "189/18904.mp3" /> 
     2525                        </CAD_INCIDENT_EVENT>            
     2526                </CAD_DATA>      
     2527 
     2528                <CHP_RADIO RadioFile="18904.mp3"> 
     2529                        <DIALOG> 
     2530                                <LINE Role="Dispatch">  28-11 Santa Lucia.</LINE> 
     2531                                <LINE Role="Field_1">   Santa Lucia 28-11 go ahead.</LINE> 
     2532                                <LINE Role="Dispatch">  28-11 Santa Lucia 10-23.</LINE> 
     2533                                <LINE Role="Dispatch">  28-07 Santa Lucia.</LINE> 
     2534                                <LINE Role="Field_2">   Santa Lucia 28-07 go ahead.</LINE> 
     2535                                <LINE Role="Dispatch">  28-11 and 28-07 Santa Lucia, proceed to southbound I405  
     2536                                                        to shut down the southbound lanes at the Culver Dr off  
     2537                                                        ramp. A man has threatened to blow up the 405 at  
     2538                                                        Jeffrey interchange.</LINE> 
     2539                                <LINE Role="Field_1">   Santa Lucia, 28-11 10-4 enroute from 405 at Bristol Sreet.</LINE> 
     2540                                <LINE Role="Field_2">   Santa Lucia, 28-07 10-4. Enroute from 55 at Dyer.</LINE> 
     2541                        </DIALOG> 
     2542                </CHP_RADIO> 
     2543                 
     2544                <TELEPHONE> 
     2545                        <INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 11. 
     2546                        </INSTRUCTOR> 
     2547                        <INSTRUCTOR Role="TV Reporter #2">I just heard about a suicide attempt on I405. 
     2548                        </INSTRUCTOR> 
     2549                        <STUDENT>Confirm report.</STUDENT> 
     2550                        <INSTRUCTOR Role="TV Reporter #2">"Where exactly is it located, I would  
     2551                                                                                         like to send a camera out there?" 
     2552                        </INSTRUCTOR> 
     2553                        <STUDENT>I405 at Jeffrey Dr.</STUDENT> 
     2554                        <INSTRUCTOR Role="TV Reporter #2">"Are you closing down any of the lanes?"</INSTRUCTOR> 
     2555                        <STUDENT>Closing down the whole interchange.</STUDENT> 
     2556                </TELEPHONE> 
     2557 
     2558                <ATMS_EVALUATION> 
     2559                        <EXPECTED_ACTION>HAR should note incident. Should note interchange closed  
     2560                                                         when all lanes have been closed. HAR's #3 and #4 might  
     2561                                                         also note interchange closed. 
     2562                        </EXPECTED_ACTION> 
     2563                </ATMS_EVALUATION> 
     2564 
     2565        </SCRIPT_EVENT> 
     2566 
     2567 
     2568        <SCRIPT_EVENT> 
     2569                <TIME_INDEX>01:32:00</TIME_INDEX> 
     2570                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2571 
     2572                <CAD_DATA> 
     2573                        <CAD_INCIDENT_EVENT> 
     2574                                <DETAIL>PD CLOSING JEFFREY AND UNIV DR, SENDING NEGOTIATOR, REQ SIGALERT</DETAIL> 
     2575                                <AUDIO Length = "30" Path = "189/18905.mp3" /> 
     2576                        </CAD_INCIDENT_EVENT>            
     2577                </CAD_DATA>      
     2578                 
     2579                <CHP_RADIO RadioFile="18905.mp3"> 
     2580                        <DIALOG> 
     2581                                <LINE Role="Field">Santa Lucia 28-24.</LINE>                             
     2582                                <LINE Role="Dispatch">28-24 Santa Lucia go ahead.</LINE>                                 
     2583                                <LINE Role="Field">Santa Lucia 28-24. The police department is taking care of  
     2584                                        the Jeffrey Road and University Drive closures. They have  
     2585                                        sent for a negotiator to talk the man down. Issue a Sig  
     2586                                        Alert on this one, we'll be here a while.</LINE>                                 
     2587                                <LINE Role="Dispatch">28-24 Santa Lucia 10-4. PD closing Jeffrey Road and  
     2588                                                University Drive and sending negotiator to talk man  
     2589                                                down.   Requesting Sig Alert until further notice.</LINE> 
     2590                        </DIALOG> 
     2591                </CHP_RADIO> 
     2592 
     2593                <TELEPHONE> 
     2594                        <INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio. 
     2595                        </INSTRUCTOR> 
     2596                        <INSTRUCTOR Role="Radio Reporter #5">I was told that both the northbound  
     2597                                                                                        and southbound I405 lanes are going  
     2598                                                                                        to be closed due to a suicide  
     2599                                                                                        attempt. What details do you have on  
     2600                                                                                        that? 
     2601                        </INSTRUCTOR> 
     2602                        <STUDENT>Gives details of closure.</STUDENT> 
     2603                        <INSTRUCTOR Role="Radio Reporter #5">Is a detour being set up?</INSTRUCTOR> 
     2604                        <STUDENT>Don't know as of yet.</STUDENT> 
     2605                </TELEPHONE> 
     2606                 
     2607                <FACILITATOR_EVALUATION> 
     2608                        <EXPECTED_ACTION>Should ensure HQ Comm is notified</EXPECTED_ACTION> 
     2609                        <EXPECTED_ACTION>Should notify District Duty Officer</EXPECTED_ACTION> 
     2610                </FACILITATOR_EVALUATION> 
     2611 
     2612        </SCRIPT_EVENT> 
     2613 
     2614        <SCRIPT_EVENT> 
     2615                <TIME_INDEX>01:35:00</TIME_INDEX> 
     2616                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     2617                 
     2618                <CAD_DATA> 
     2619                        <CAD_INCIDENT_EVENT> 
     2620                                <DETAIL>VEH TWD, LNS OPN, 14-S, 14-9, 14-14 1098</DETAIL> 
     2621                                <UNIT UnitNum="14-14" Status="1098" Primary="true" Active="false"/> 
     2622                                <UNIT UnitNum="14-17" Status="1098" Primary="false" Active="false"/> 
     2623                                <UNIT UnitNum="14-9" Status="1098" Primary="false" Active="false"/> 
     2624                                <UNIT UnitNum="14-S3" Status="1098" Primary="false" Active="false"/> 
     2625                                <AUDIO Length = "23" Path = "187/18728.mp3" /> 
     2626                                 
     2627                                <PARAMICS LocationID="187_N_405_ML"> 
     2628                                        <Status>CLEARED</Status> 
     2629                                </PARAMICS>                                                      
     2630                                 
     2631                                <PARAMICS LocationID="187_N_405_HV"> 
     2632                                        <Status>CLEARED</Status> 
     2633                                </PARAMICS>                      
     2634                        </CAD_INCIDENT_EVENT>    
     2635                </CAD_DATA> 
     2636                 
     2637                <CHP_RADIO RadioFile="18728.mp3"> 
     2638                        <DIALOG> 
     2639                                <LINE Role="Field">Santa Lucia 14-S3.</LINE>                             
     2640                                <LINE Role="Dispatch">14-S3 Santa Lucia go ahead.</LINE>                                 
     2641                                <LINE Role="Field">Santa Lucia 14-S3. Vehicles have been towed and lanes open.  
     2642                                        All units are 10-98.</LINE>                              
     2643                                <LINE Role="Dispatch">14-S3 Santa Lucia 10-4. Vehicles towed and lanes open.   
     2644                                                14-S3,14-9, and 14-14 are 10-98.</LINE> 
     2645                        </DIALOG> 
     2646                </CHP_RADIO> 
     2647 
     2648                <TELEPHONE> 
     2649                        <INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV TV channel 11. 
     2650                        </INSTRUCTOR> 
     2651                        <INSTRUCTOR Role="TV Reporter #3">Are the lanes clear NB 405 at 55? 
     2652                        </INSTRUCTOR> 
     2653                        <STUDENT>Lanes were just cleared.</STUDENT> 
     2654                        <INSTRUCTOR Role="TV Reporter #3">How many were injured in that accident? 
     2655                        </INSTRUCTOR> 
     2656                        <STUDENT>There were 3 dead and 7 injured.</STUDENT> 
     2657                </TELEPHONE> 
     2658                 
     2659                <CMS_EVALUATION cmsID="87" type="remove"> 
     2660                        <LOCATION>NB 405 @ HARVARD</LOCATION> 
     2661                </CMS_EVALUATION> 
     2662                <CMS_EVALUATION cmsID="88" type="remove"> 
     2663                        <LOCATION>NB 405 @ ICD</LOCATION> 
     2664                </CMS_EVALUATION> 
     2665                <CMS_EVALUATION cmsID="95" type="remove"> 
     2666                        <LOCATION>NB 5 @ EL TORO</LOCATION> 
     2667                </CMS_EVALUATION> 
     2668                <ACTIVITY_LOG_EVALUATION> 
     2669                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     2670                </ACTIVITY_LOG_EVALUATION>               
     2671                <FACILITATOR_EVALUATION> 
     2672                        <EXPECTED_ACTION>Should be alert to the situation</EXPECTED_ACTION> 
     2673                </FACILITATOR_EVALUATION> 
     2674                 
     2675        </SCRIPT_EVENT> 
     2676 
     2677        <SCRIPT_EVENT> 
     2678                <TIME_INDEX>01:36:00</TIME_INDEX> 
     2679                <INCIDENT LogNum="188">Tomato Truck Spill/Fire</INCIDENT> 
     2680 
     2681                <TMT_RADIO>TMT units go 10-98.  Traffic is back to normal</TMT_RADIO> 
     2682 
     2683        </SCRIPT_EVENT> 
     2684 
     2685        <SCRIPT_EVENT> 
     2686                <TIME_INDEX>01:36:00</TIME_INDEX> 
     2687                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2688 
     2689                <CAD_DATA> 
     2690                        <CAD_INCIDENT_EVENT> 
     2691                                <DETAIL>28-13 1097, 10-23 28-19 B4 CLOSING NB LNS, 1039 DOT FOR SIGN TRUCKS</DETAIL> 
     2692                                <UNIT UnitNum="28-13" Status="1097" Primary="false" Active="true"/> 
     2693                                <AUDIO Length = "33" Path = "189/18906.mp3" /> 
     2694                        </CAD_INCIDENT_EVENT>            
     2695                </CAD_DATA>              
     2696                 
     2697                <CHP_RADIO RadioFile="18906.mp3"> 
     2698                        <DIALOG> 
     2699                                <LINE Role="Field">Santa Lucia 28-13.</LINE>                             
     2700                                <LINE Role="Dispatch">28-13 Santa Lucia go ahead.</LINE>                                 
     2701                                <LINE Role="Field">Santa Lucia 28-13 10-97 northbound 405 at Sand Canyon.  Will  
     2702                                        10-23 28-19 and then proceed to close down northbound lanes.  
     2703                                        Do we have any sign trucks enroute yet to assist with the  
     2704                                        closure?</LINE>                          
     2705                                <LINE Role="Dispatch">Santa Lucia copied 28-13 10-97 northbound 405 at Sand  
     2706                                                Canyon. 10-23 28-19 before closing northbound lanes. Checking on TMT.</LINE> 
     2707                        </DIALOG> 
     2708                </CHP_RADIO> 
     2709                 
     2710                <ATMS_EVALUATION> 
     2711                        <EXPECTED_ACTION> 
     2712                        </EXPECTED_ACTION> 
     2713                </ATMS_EVALUATION> 
     2714                 
     2715                <MAINTENANCE_RADIO>Get TMT rolling.</MAINTENANCE_RADIO> 
     2716                 
     2717        </SCRIPT_EVENT> 
     2718 
     2719        <SCRIPT_EVENT> 
     2720                <TIME_INDEX>01:37:00</TIME_INDEX> 
     2721                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2722                 
     2723                <CAD_DATA> 
     2724                        <CAD_INCIDENT_EVENT> 
     2725                                <DETAIL>28-11 1097, CLSNG DWN SB LNS AT CULVER DR OFFR</DETAIL> 
     2726                                <UNIT UnitNum="28-11" Status="1097" Primary="false" Active="true"/> 
     2727                                <AUDIO Length = "21" Path = "189/18907.mp3" /> 
     2728                                 
     2729                                <PARAMICS LocationID="189_S_405_ML"> 
     2730                                        <Status>NEW</Status> 
     2731                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     2732                                        <Lane_number>1</Lane_number> 
     2733                                        <Lane_number>2</Lane_number> 
     2734                                        <Lane_number>3</Lane_number> 
     2735                                        <Lane_number>4</Lane_number>                             
     2736                                </PARAMICS>      
     2737 
     2738                                <PARAMICS LocationID="189_S_405_HV"> 
     2739                                        <Status>NEW</Status> 
     2740                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     2741                                        <Lane_number>1</Lane_number>             
     2742                                </PARAMICS>                              
     2743                        </CAD_INCIDENT_EVENT>            
     2744                </CAD_DATA>      
     2745 
     2746                <CHP_RADIO RadioFile="18907.mp3"> 
     2747                        <DIALOG> 
     2748                                <LINE Role="Field">Santa Lucia 28-11.</LINE>                             
     2749                                <LINE Role="Dispatch">28-11 Santa Lucia go ahead.</LINE>                                 
     2750                                <LINE Role="Field">Santa Lucia 28-11 10-97 405 at Culver offramp.   
     2751                                        Proceeding to close down the southbound lanes.</LINE>                            
     2752                                <LINE Role="Dispatch">Santa Lucia copied 28-11 10-97 405 at Culver offramp.  
     2753                                        Closing southbound lanes.</LINE> 
     2754                        </DIALOG> 
     2755                </CHP_RADIO> 
     2756 
     2757                <TELEPHONE> 
     2758                        <INSTRUCTOR Role="CHP Dispatch">Hello, this is CHP Dispatch.</INSTRUCTOR> 
     2759                        <STUDENT>Have sign trucks been sent to the bomb threat at the  
     2760                                                 I405 and Jeffrey Road overpass?</STUDENT> 
     2761                        <STUDENT>Responds correctly to question.</STUDENT> 
     2762                        <STUDENT>Notifies maintenace station to dispatch sign trucks.</STUDENT> 
     2763                </TELEPHONE> 
     2764                 
     2765                <CMS_EVALUATION cmsID="89" type="new">  
     2766                        <LOCATION>SB 405 @ Von Karmen</LOCATION> 
     2767                        <SAMPLE_MESSAGE> 
     2768                                <CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE>  
     2769                                <CMS_LINE>USE OTHER ROUTES</CMS_LINE> 
     2770                        </SAMPLE_MESSAGE> 
     2771                </CMS_EVALUATION> 
     2772                 
     2773                <CMS_EVALUATION cmsID="86" type="new">  
     2774                        <LOCATION>TBD</LOCATION> 
     2775                        <SAMPLE_MESSAGE> 
     2776                                <CMS_LINE>FWY CLOSED AT CULVER DR</CMS_LINE>  
     2777                                <CMS_LINE>USE OTHER ROUTES</CMS_LINE> 
     2778                        </SAMPLE_MESSAGE> 
     2779                </CMS_EVALUATION> 
     2780                 
     2781                <CMS_EVALUATION cmsID="72" type="new">  
     2782                        <LOCATION>SB 55 @ Warner</LOCATION> 
     2783                        <SAMPLE_MESSAGE> 
     2784                                <CMS_LINE>S-405 CLOSED AT CULVER DR</CMS_LINE>  
     2785                                <CMS_LINE>USE OTHER ROUTES</CMS_LINE> 
     2786                        </SAMPLE_MESSAGE> 
     2787                </CMS_EVALUATION> 
     2788 
     2789        </SCRIPT_EVENT> 
     2790 
     2791        <SCRIPT_EVENT> 
     2792                <TIME_INDEX>01:38:00</TIME_INDEX> 
     2793                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2794 
     2795                <CAD_DATA> 
     2796                        <CAD_INCIDENT_EVENT> 
     2797                                <DETAIL>28-13, 28-19 SHUTTING DWN NB 405 LNS AT SAND CYN ST OFFR</DETAIL> 
     2798                                <UNIT UnitNum="28-19" Status="1097" Primary="false" Active="true"/> 
     2799                                <AUDIO Length = "30" Path = "189/18908.mp3" /> 
     2800                                 
     2801                                <PARAMICS LocationID="189_N_405_ML"> 
     2802                                        <Status>NEW</Status> 
     2803                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     2804                                        <Lane_number>1</Lane_number> 
     2805                                        <Lane_number>2</Lane_number> 
     2806                                        <Lane_number>3</Lane_number> 
     2807                                        <Lane_number>4</Lane_number>     
     2808                                        <Lane_number>5</Lane_number>                             
     2809                                </PARAMICS>      
     2810                                 
     2811                                <PARAMICS LocationID="189_N_405_HV"> 
     2812                                        <Status>NEW</Status> 
     2813                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     2814                                        <Lane_number>1</Lane_number>                             
     2815                                </PARAMICS>      
     2816                        </CAD_INCIDENT_EVENT>            
     2817                </CAD_DATA>      
     2818 
     2819                <CHP_RADIO RadioFile="18908.mp3"> 
     2820                        <DIALOG> 
     2821                                <LINE Role="Field">Santa Lucia 28-19.</LINE>                             
     2822                                <LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>                                 
     2823                                <LINE Role="Field">Santa Lucia 28-19 10-97 northbound 405 at Sand Canyon.   
     2824                                        28-13 and I are proceeding to shut down the northbound 405 lanes  
     2825                                        at the Sand Canyon offramp.</LINE>                               
     2826                                <LINE Role="Dispatch">Santa Lucia copied 28-19 10-97 northbound 405 at Sand  
     2827                                                Canyon. 28-13, 28-19 shutting down northbound 405 lanes at  
     2828                                                Sand Canyon off ramp.</LINE> 
     2829                        </DIALOG> 
     2830                </CHP_RADIO> 
     2831                 
     2832                <TELEPHONE> 
     2833                        <INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ TV. 
     2834                        </INSTRUCTOR> 
     2835                        <INSTRUCTOR Role="TV Reporter #4">I heard over the scanner that there is  
     2836                                                                                 a bomb threat on the 5. 
     2837                        </INSTRUCTOR> 
     2838                        <STUDENT>Correct location is I405.</STUDENT> 
     2839                        <INSTRUCTOR Role="TV Reporter #4">I would like to send a helicopter out  
     2840                                                                                 there, what are the details on the  
     2841                                                                                 threat? 
     2842                        </INSTRUCTOR> 
     2843                </TELEPHONE>     
     2844                 
     2845                <CMS_EVALUATION cmsID="88" type="new">  
     2846                        <LOCATION>TBD</LOCATION> 
     2847                        <SAMPLE_MESSAGE> 
     2848                                <CMS_LINE>FWY CLOSED AT SAND CYN AVE</CMS_LINE>  
     2849                                <CMS_LINE>USE HWY-133</CMS_LINE> 
     2850                        </SAMPLE_MESSAGE> 
     2851                </CMS_EVALUATION>                
     2852                 
     2853                <CMS_EVALUATION cmsID="95" type="new">  
     2854                        <LOCATION>NB 5 @ El Toro</LOCATION> 
     2855                        <SAMPLE_MESSAGE> 
     2856                                <CMS_LINE>N-405 CLOSED AT SAND CYN AVE</CMS_LINE>  
     2857                                <CMS_LINE>USE OTHER ROUTES</CMS_LINE> 
     2858                        </SAMPLE_MESSAGE> 
     2859                </CMS_EVALUATION> 
     2860                 
     2861        </SCRIPT_EVENT> 
     2862 
     2863        <SCRIPT_EVENT> 
     2864                <TIME_INDEX>01:39:00</TIME_INDEX> 
     2865                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2866 
     2867                <TELEPHONE> 
     2868                        <INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KNOW TV 2.</INSTRUCTOR> 
     2869                        <INSTRUCTOR Role="TV Reporter #1">I heard about a suicide on the 405,  
     2870                                                                                 what details do you have on that? 
     2871                        </INSTRUCTOR> 
     2872                        <STUDENT>Located I405 and Jeffrey overpass, man has bomb  
     2873                                                 strapped to himself, closing down I405 in both directions. 
     2874                        </STUDENT> 
     2875                </TELEPHONE> 
     2876 
     2877        </SCRIPT_EVENT> 
     2878 
     2879        <SCRIPT_EVENT> 
     2880                <TIME_INDEX>01:40:00</TIME_INDEX> 
     2881                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2882 
     2883                <CAD_DATA> 
     2884                        <CAD_INCIDENT_EVENT> 
     2885                                <DETAIL>28-07 1097 ASSTNG 28-11 CLSNG SB LNS AT CULVER OFFR</DETAIL> 
     2886                                <UNIT UnitNum="28-07" Status="1097" Primary="false" Active="true"/> 
     2887                                <AUDIO Length = "23" Path = "189/18909.mp3" /> 
     2888                        </CAD_INCIDENT_EVENT>            
     2889                </CAD_DATA>      
     2890 
     2891                <CHP_RADIO RadioFile="18909.mp3"> 
     2892                        <DIALOG> 
     2893                                <LINE Role="Field">Santa Lucia 28-07.</LINE>                             
     2894                                <LINE Role="Dispatch">28-07 go ahead to Santa Lucia.</LINE>                              
     2895                                <LINE Role="Field">Santa Lucia 28-07 10-97 southbound 405 at Culver Dr.  
     2896                                        Assisting 28-11 with the closure.</LINE>                                 
     2897                                <LINE Role="Dispatch">Santa Lucia copied 28-07 10-97 southbound 405 at Culver  
     2898                                                Drive. Assisting 28-11 with closure.</LINE> 
     2899                        </DIALOG> 
     2900                </CHP_RADIO>             
     2901                 
     2902                <TMT_RADIO>If no sign trucks have been requested yet, another  
     2903                                                 phone call needs to be made from CHP Dispatch  
     2904                                                 requesting them. 
     2905                </TMT_RADIO>             
     2906                 
     2907        </SCRIPT_EVENT> 
     2908 
     2909        <SCRIPT_EVENT> 
     2910                <TIME_INDEX>01:41:00</TIME_INDEX> 
     2911                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2912                 
     2913                <CAD_DATA> 
     2914                        <CAD_INCIDENT_EVENT> 
     2915                                <DETAIL>28-S4 1097 I5 JEFFREY AVE ASSIST</DETAIL> 
     2916                                <UNIT UnitNum="28-S4" Status="1097" Primary="false" Active="true"/> 
     2917                                <AUDIO Length = "19" Path = "189/18910.mp3" /> 
     2918                        </CAD_INCIDENT_EVENT>            
     2919                </CAD_DATA>      
     2920 
     2921                <CHP_RADIO RadioFile="18910.mp3"> 
     2922                        <DIALOG> 
     2923                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     2924                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     2925                                <LINE Role="Field">Santa Lucia 28-S4 10-97 I-405 at Jeffrey overpass.</LINE>                             
     2926                                <LINE Role="Dispatch">Santa Lucia copied 28-S4 10-97 I-405 at Jeffrey Road.</LINE> 
     2927                        </DIALOG> 
     2928                </CHP_RADIO> 
     2929 
     2930                <TELEPHONE> 
     2931                        <INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio. 
     2932                        </INSTRUCTOR> 
     2933                        <INSTRUCTOR Role="Radio Reporter #6">Is the surrounding residential area  
     2934                                                                                        around the bomb threat being evacuated? 
     2935                        </INSTRUCTOR> 
     2936                        <STUDENT>They don't know, although the correct answer will be no.</STUDENT> 
     2937                </TELEPHONE> 
     2938                 
     2939        </SCRIPT_EVENT> 
     2940 
     2941        <SCRIPT_EVENT> 
     2942                <TIME_INDEX>01:43:00</TIME_INDEX> 
     2943                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2944                 
     2945                <CAD_DATA> 
     2946                        <CAD_INCIDENT_EVENT> 
     2947                                <DETAIL>PD STTNG DETOURS, SB TRFFC OFF AT CULVER AVE, NB TRFFC OFF AT SAND CYN</DETAIL> 
     2948                                <AUDIO Length = "22" Path = "189/18911.mp3" /> 
     2949                        </CAD_INCIDENT_EVENT>            
     2950                </CAD_DATA>              
     2951                 
     2952                <CHP_RADIO RadioFile="18911.mp3"> 
     2953                        <DIALOG> 
     2954                                <LINE Role="Field">     Santa Lucia 28-S4.</LINE>                                
     2955                                <LINE Role="Dispatch">  28-S4 go ahead to Santa Lucia.</LINE>                            
     2956                                <LINE Role="Field">     Santa Lucia 28-S4. Irvine PD is setting up  
     2957                                        detours through the city for the northbound and southbound  
     2958                                        405 traffic. 
     2959                                </LINE>                          
     2960                                <LINE Role="Dispatch">  28-S4 Santa Lucia 10-4. Police department setting up  
     2961                                                detours through the city for all traffic. 
     2962                                </LINE> 
     2963                        </DIALOG> 
     2964                </CHP_RADIO> 
     2965 
     2966                <TELEPHONE> 
     2967                        <INSTRUCTOR Role="Public">Hello, I just saw on TV that there is bomb  
     2968                                                                   on the I405 near University Drive. 
     2969                        </INSTRUCTOR> 
     2970                        <STUDENT>Confirm report.</STUDENT> 
     2971                        <INSTRUCTOR Role="Public">"I live nearby, Is that area evacuated?</INSTRUCTOR> 
     2972                        <STUDENT>No, not to the best of my knowledge.   </STUDENT> 
     2973                </TELEPHONE> 
     2974 
     2975                <ACTIVITY_LOG_EVALUATION> 
     2976                        <EXPECTED_ACTION>Should have posted a Sig Alert by this time</EXPECTED_ACTION> 
     2977                </ACTIVITY_LOG_EVALUATION> 
     2978                 
     2979        </SCRIPT_EVENT> 
     2980 
     2981        <SCRIPT_EVENT> 
     2982                <TIME_INDEX>01:44:00</TIME_INDEX> 
     2983                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     2984 
     2985                <CAD_DATA> 
     2986                        <CAD_INCIDENT_EVENT> 
     2987                                <DETAIL>NEGOTIATOR 1097</DETAIL> 
     2988                                <AUDIO Length = "20" Path = "189/18912.mp3" /> 
     2989                        </CAD_INCIDENT_EVENT>            
     2990                </CAD_DATA>              
     2991 
     2992                <CHP_RADIO RadioFile="18912.mp3"> 
     2993                        <DIALOG> 
     2994                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     2995                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     2996                                <LINE Role="Field">Santa Lucia 28-S4. Negotiator is 10-97 and attempting to  
     2997                                        talk the man down.</LINE>                                
     2998                                <LINE Role="Dispatch">Santa Lucia 28-S4 10-4. Negotiator is 10-97 and  
     2999                                                attempting to talk man down.</LINE> 
     3000                        </DIALOG> 
     3001                </CHP_RADIO> 
     3002                 
     3003                <ACTIVITY_LOG_EVALUATION> 
     3004                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     3005                </ACTIVITY_LOG_EVALUATION>       
     3006 
     3007        </SCRIPT_EVENT> 
     3008 
     3009        <SCRIPT_EVENT> 
     3010                <TIME_INDEX>01:45:00</TIME_INDEX> 
     3011                <INCIDENT LogNum="187">Stalled DOT/Traffic Collision</INCIDENT> 
     3012                 
     3013                <TMT_RADIO>Have NB 405 TMT units go 10-98.</TMT_RADIO> 
     3014        </SCRIPT_EVENT> 
     3015 
     3016        <SCRIPT_EVENT> 
     3017                <TIME_INDEX>01:45:00</TIME_INDEX> 
     3018                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3019                 
     3020                <CAD_DATA> 
     3021                        <CAD_INCIDENT_EVENT> 
     3022                                <DETAIL>NB LNS SHUT DOWN</DETAIL> 
     3023                                <AUDIO Length = "16" Path = "189/18913.mp3" /> 
     3024                        </CAD_INCIDENT_EVENT>            
     3025                </CAD_DATA>              
     3026 
     3027                <CHP_RADIO RadioFile="18913.mp3"> 
     3028                        <DIALOG> 
     3029                                <LINE Role="Field">Santa Lucia 28-19.</LINE>                             
     3030                                <LINE Role="Dispatch">28-19 Santa Lucia go ahead.</LINE>                                 
     3031                                <LINE Role="Field">Santa Lucia 28-19. The northbound lanes are shut down.</LINE>                                 
     3032                                <LINE Role="Dispatch">28-19 Santa Lucia 10-4. Northbound lanes are shut down.</LINE> 
     3033                        </DIALOG> 
     3034                </CHP_RADIO> 
     3035                 
     3036        </SCRIPT_EVENT> 
     3037 
     3038        <SCRIPT_EVENT> 
     3039                <TIME_INDEX>01:46:00</TIME_INDEX> 
     3040                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3041 
     3042                <CAD_DATA> 
     3043                        <CAD_INCIDENT_EVENT> 
     3044                                <DETAIL>SUSP WON'T ALLOW NEGOTIATOR NEAR HIM</DETAIL> 
     3045                                <AUDIO Length = "22" Path = "189/18914.mp3" /> 
     3046                        </CAD_INCIDENT_EVENT>            
     3047                </CAD_DATA>              
     3048 
     3049                <CHP_RADIO RadioFile="18914.mp3"> 
     3050                        <DIALOG> 
     3051                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3052                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     3053                                <LINE Role="Field">Santa Lucia 28-S4. This is going to take a while. The man  
     3054                                        won't let the negotiator get close to him.</LINE>                                
     3055                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiations will take a while,  
     3056                                                man won't let the negotiator get close to him.</LINE> 
     3057                        </DIALOG> 
     3058                </CHP_RADIO> 
     3059                 
     3060                <ACTIVITY_LOG_EVALUATION> 
     3061                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     3062                </ACTIVITY_LOG_EVALUATION> 
     3063 
     3064        </SCRIPT_EVENT> 
     3065 
     3066        <SCRIPT_EVENT> 
     3067                <TIME_INDEX>01:47:00</TIME_INDEX> 
     3068                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3069 
     3070                <CAD_DATA> 
     3071                        <CAD_INCIDENT_EVENT> 
     3072                                <DETAIL>28-07 SB LNS SHUT DOWN</DETAIL> 
     3073                                <AUDIO Length = "19" Path = "189/18915.mp3" /> 
     3074                        </CAD_INCIDENT_EVENT>            
     3075                </CAD_DATA>              
     3076                 
     3077                <CHP_RADIO RadioFile="18915.mp3"> 
     3078                        <DIALOG> 
     3079                                <LINE Role="Field">Santa Lucia 28-07.</LINE>                             
     3080                                <LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>                                 
     3081                                <LINE Role="Field">Santa Lucia 28-07. The southbound lanes have been shut down.  
     3082                                        Traffic is building up quickly.</LINE>                           
     3083                                <LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes shut down.   
     3084                                                Traffic building up quickly.</LINE> 
     3085                        </DIALOG> 
     3086                </CHP_RADIO> 
     3087 
     3088        </SCRIPT_EVENT> 
     3089 
     3090        <SCRIPT_EVENT> 
     3091                <TIME_INDEX>01:50:00</TIME_INDEX> 
     3092                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3093 
     3094                <CAD_DATA> 
     3095                        <CAD_INCIDENT_EVENT> 
     3096                                <DETAIL>SUSP IS CALMING DOWN.  BOMB SQD 1097</DETAIL> 
     3097                                <AUDIO Length = "18" Path = "189/18916.mp3" /> 
     3098                        </CAD_INCIDENT_EVENT>            
     3099                </CAD_DATA>              
     3100                 
     3101                <CHP_RADIO RadioFile="18916.mp3"> 
     3102                        <DIALOG> 
     3103                                <LINE Role="Field">Santa Lucia 28-S4.</LINE> 
     3104                                <LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE> 
     3105                                <LINE Role="Field">Santa Lucia 28-S4. The man is calming down. The bomb squad is 10-97.</LINE> 
     3106                                <LINE Role="Dispatch">  28-S4 Santa Lucia 10-4. Man calming down. Bomb squad 10-97.</LINE> 
     3107                        </DIALOG> 
     3108                </CHP_RADIO> 
     3109                 
     3110                <ACTIVITY_LOG_EVALUATION> 
     3111                        <EXPECTED_ACTION>Should enter info for 10-97 Bomb Squad</EXPECTED_ACTION> 
     3112                </ACTIVITY_LOG_EVALUATION> 
     3113 
     3114 
     3115                <TMT_RADIO>>Call saying the sign trucks are 10-97.  Queue update.</TMT_RADIO> 
     3116                 
     3117        </SCRIPT_EVENT> 
     3118         
     3119        <SCRIPT_EVENT> 
     3120                <TIME_INDEX>01:51:00</TIME_INDEX> 
     3121                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3122                 
     3123                <CAD_DATA> 
     3124                        <MASTER_INC_NUM>145086SLO006</MASTER_INC_NUM> 
     3125                        <P>5</P> 
     3126                        <ADDITIONAL_INFO> 
     3127                                <TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE> 
     3128                                <TYPE>1179</TYPE> 
     3129                        </ADDITIONAL_INFO> 
     3130                        <LOCATION> 
     3131                                <BEAT>9-22</BEAT> 
     3132                                <ADDRESS>NB5 JNO Main Street</ADDRESS> 
     3133                                <LOC>NB5 JNO Main Street</LOC> 
     3134                                <CITY>Templeton</CITY> 
     3135                                <AREA>9-Templeton</AREA> 
     3136                                <FIRE>Templeton</FIRE> 
     3137                                <LAW>Templeton</LAW> 
     3138                                <EMS>Templeton</EMS> 
     3139                        </LOCATION> 
     3140                        <GENERAL> 
     3141                                <AGY>CHP</AGY> 
     3142                        </GENERAL> 
     3143                 
     3144                        <HEADER_INFO> 
     3145                                <Type>1179</Type> 
     3146                                <Beat>9-22</Beat> 
     3147                                <TruncLoc>NB5 JNO Main St</TruncLoc> 
     3148                                <FullLoc>NB5 JNO Main St</FullLoc> 
     3149                        </HEADER_INFO> 
     3150                         
     3151                        <LOCATION_INFO ID="190_N_5_ML"> 
     3152                                <Route>5</Route> 
     3153                                <Direction>NB</Direction> 
     3154                                <Postmile>33.2</Postmile> 
     3155                                <Location_type>ML</Location_type>                                        
     3156                        </LOCATION_INFO> 
     3157                         
     3158                        <CAD_INCIDENT_EVENT> 
     3159                                <PARAMICS LocationID="190_N_5_ML"> 
     3160                                        <Status>NEW</Status> 
     3161                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     3162                                        <Lane_number>3</Lane_number> 
     3163                                        <Lane_number>4</Lane_number>                             
     3164                                </PARAMICS>              
     3165                        </CAD_INCIDENT_EVENT> 
     3166                         
     3167                </CAD_DATA>              
     3168                 
     3169                <GENERAL_INFO>  
     3170                        <TITLE>Incident Description</TITLE> 
     3171                        <TEXT>This is a collision involving a tanker truck  
     3172                  and a car that block the #3 and 4 lanes on NB I-5 just north of  
     3173                  Main Street. There are 2 minor injured and 1 major injured.  
     3174                  Liquid is leaking out of the tanker truck which is identified as milk.  
     3175                  The leak is plugged and the fire department sprays the milk down the  
     3176                  drain. The fire department, ambulance, additional units, TMT, a big  
     3177                  rig tow, and a rotational tow are sent to the scene.</TEXT> 
     3178                </GENERAL_INFO> 
     3179 
     3180                <MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO> 
     3181        </SCRIPT_EVENT> 
     3182 
     3183        <SCRIPT_EVENT> 
     3184                <TIME_INDEX>01:53:00</TIME_INDEX> 
     3185                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3186                 
     3187                <CAD_DATA> 
     3188                        <CAD_INCIDENT_EVENT>                     
     3189                                <DETAIL>9-22 ENRT FROM 57 @ CHAPMAN</DETAIL> 
     3190                                <UNIT UnitNum="9-22" Status="ENRT" Primary="true" Active="true"/> 
     3191                                <AUDIO Length = "24" Path = "190/19001.mp3" /> 
     3192                                 
     3193                        </CAD_INCIDENT_EVENT>                                    
     3194                </CAD_DATA>              
     3195 
     3196                <CHP_RADIO RadioFile="19001.mp3"> 
     3197                        <DIALOG> 
     3198                                <LINE Role="Dispatch">9-22 Santa Lucia.</LINE>                           
     3199                                <LINE Role="Field">Santa Lucia 9-22 go ahead.</LINE>                             
     3200                                <LINE Role="Dispatch">9-22 Santa Lucia 11-79 northbound 5 just north of Main Street.</LINE>                              
     3201                                <LINE Role="Field">Santa Lucia 9-22 copies, enroute from 57 at Chapman Ave.</LINE>                               
     3202                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Enroute from 57 at Chapman Ave.</LINE> 
     3203                        </DIALOG> 
     3204                </CHP_RADIO> 
     3205                 
     3206                <CAD_EVALUATION> 
     3207                        <EXPECTED_ACTION>Should shold be verifying incident 190 on the CAD.</EXPECTED_ACTION> 
     3208                </CAD_EVALUATION>        
     3209                <ATMS_EVALUATION> 
     3210                        <EXPECTED_ACTION>Should try to confirm the incident with a CCTV cameras.</EXPECTED_ACTION> 
     3211                </ATMS_EVALUATION> 
     3212        </SCRIPT_EVENT> 
     3213 
     3214        <SCRIPT_EVENT> 
     3215                <TIME_INDEX>01:54:00</TIME_INDEX> 
     3216                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3217 
     3218                <TELEPHONE> 
     3219                        <INSTRUCTOR Role="Mayor">"Hello, this is Mayor Krom of Irvine." 
     3220                        </INSTRUCTOR> 
     3221                        <INSTRUCTOR Role="Mayor">I just heard that a bomb went off on I405. Was  
     3222                                                                 anyone injured or killed? 
     3223                        </INSTRUCTOR> 
     3224                        <STUDENT>Not true - no bomb was not detonated.</STUDENT> 
     3225                </TELEPHONE> 
     3226        </SCRIPT_EVENT> 
     3227 
     3228        <SCRIPT_EVENT> 
     3229                <TIME_INDEX>01:56:00</TIME_INDEX> 
     3230                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT>            
     3231 
     3232                <TMT_RADIO>Queue update</TMT_RADIO> 
     3233        </SCRIPT_EVENT> 
     3234 
     3235        <SCRIPT_EVENT> 
     3236                <TIME_INDEX>01:58:00</TIME_INDEX> 
     3237                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3238                 
     3239                <CAD_DATA> 
     3240                        <CAD_INCIDENT_EVENT>                     
     3241                                <DETAIL>9-22 1097 2 VEH TC, VEH VS TANKER TRK, BLKNG #3,4</DETAIL> 
     3242                                <DETAIL>UNID LIQUID LEAKING FROM TNKR, NEED TO CLOSE NB LANES, REQ UNITS</DETAIL> 
     3243                                <UNIT UnitNum="9-22" Status="1097" Primary="true" Active="true"/> 
     3244                                <AUDIO Length = "37" Path = "190/19002.mp3" />           
     3245                        </CAD_INCIDENT_EVENT>    
     3246                </CAD_DATA>      
     3247 
     3248                <CHP_RADIO RadioFile="19002.mp3"> 
     3249                        <DIALOG> 
     3250                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     3251                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     3252                                <LINE Role="Field">Santa Lucia 9-22 1097 JNO Main St. 2 vehicle collision  
     3253                                        between tanker truck and vehicle blocking #3, 4 lanes.   
     3254                                        Unidentified liquid leaking out of the tanker. Request  
     3255                                        additional units, we're going to have to shut down the  
     3256                                        northbound lanes until we identify the susbstance.</LINE>                                
     3257                                <LINE Role="Dispatch">Santa Lucia copied. 9-22 10-97.  2 vehicle  
     3258                                                collision, tanker truck and vehicle, blocking #3, 4.  
     3259                                                Unidentified liquid leaking out of tanker. Request  
     3260                                                units to shut down NB lanes.</LINE> 
     3261                        </DIALOG> 
     3262                </CHP_RADIO> 
     3263                 
     3264                <CMS_EVALUATION cmsID="93" type="new">  
     3265                        <LOCATION>NB-5 S/O Redhill</LOCATION> 
     3266                        <SAMPLE_MESSAGE> 
     3267                                <CMS_LINE>ACCIDENT</CMS_LINE> 
     3268                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     3269                                <CMS_LINE>2 RT LANES BLKD</CMS_LINE> 
     3270                        </SAMPLE_MESSAGE> 
     3271                </CMS_EVALUATION>                                
     3272                 
     3273                <CMS_EVALUATION cmsID="94" type="new">  
     3274                        <LOCATION>TBD</LOCATION> 
     3275                        <SAMPLE_MESSAGE> 
     3276                                <CMS_LINE>ACCIDENT N-5</CMS_LINE> 
     3277                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     3278                                <CMS_LINE>2 RT LANES BLKD</CMS_LINE> 
     3279                        </SAMPLE_MESSAGE> 
     3280                </CMS_EVALUATION>                
     3281 
     3282                <MAINTENANCE_RADIO>TMT Earliest possible request for sign trucks. Send trucks if requested. 
     3283                </MAINTENANCE_RADIO> 
     3284                 
     3285        </SCRIPT_EVENT> 
     3286 
     3287        <SCRIPT_EVENT> 
     3288                <TIME_INDEX>01:59:00</TIME_INDEX> 
     3289                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3290 
     3291                <CAD_DATA> 
     3292                        <CAD_INCIDENT_EVENT>                     
     3293                                <DETAIL>9-23, 9-26 ENRT TO ASSIST 9-22</DETAIL> 
     3294                                <UNIT UnitNum="9-23" Status="ENRT" Primary="false" Active="true"/> 
     3295                                <UNIT UnitNum="9-26" Status="ENRT" Primary="false" Active="true"/> 
     3296                                <AUDIO Length = "41" Path = "190/19003.mp3" />           
     3297                        </CAD_INCIDENT_EVENT>    
     3298                </CAD_DATA>              
     3299 
     3300                <CHP_RADIO RadioFile="19003.mp3"> 
     3301                        <DIALOG> 
     3302                                <LINE Role="Dispatch">9-23, 9-26 Santa Lucia.</LINE>                             
     3303                                <LINE Role="Field_1">Santa Lucia 9-23 go ahead.</LINE>                           
     3304                                <LINE Role="Field_2">Santa Lucia 9-26 go ahead.</LINE>                           
     3305                                <LINE Role="Dispatch">9-23 and 9-26 Santa Lucia, 1179 northbound 5  
     3306                                                just north of Main St blocking #3,4 .  22 request assistance closing freeway.</LINE>                             
     3307                                <LINE Role="Field_1">Santa Lucia 9-23 10-4. Enroute from 22 just south of  
     3308                                                Euclid Avenue.</LINE>                            
     3309                                <LINE Role="Field_2">Santa Lucia 10-4. 9-26 enroute from 57 at 91.</LINE>                                
     3310                                <LINE Role="Dispatch">Santa Lucia copied 9-23, 9-26 enroute.</LINE> 
     3311                        </DIALOG> 
     3312                </CHP_RADIO> 
     3313 
     3314        </SCRIPT_EVENT> 
     3315 
     3316        <SCRIPT_EVENT> 
     3317                <TIME_INDEX>02:00:00</TIME_INDEX> 
     3318                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3319 
     3320                <CAD_DATA> 
     3321                        <CAD_INCIDENT_EVENT>                     
     3322                                <DETAIL>1141, FD 1097, TRCK DRVR 1180 UNCONCIOUS, 2 1181S, LIQUID LEAKING INTO #2 LN. #2,3,4 BLKD AT THIS TIME</DETAIL> 
     3323                                <AUDIO Length = "35" Path = "190/19004.mp3" />           
     3324                                 
     3325                                <PARAMICS LocationID="190_N_5_ML"> 
     3326                                        <Status>CHANGED</Status> 
     3327                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     3328                                        <Lane_number>2</Lane_number> 
     3329                                        <Lane_number>3</Lane_number> 
     3330                                        <Lane_number>4</Lane_number>                             
     3331                                </PARAMICS>                                      
     3332                                 
     3333                        </CAD_INCIDENT_EVENT>    
     3334                </CAD_DATA>      
     3335 
     3336                <CHP_RADIO RadioFile="19004.mp3"> 
     3337                        <DIALOG> 
     3338                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     3339                                <LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>                               
     3340                                <LINE Role="Field">Santa Lucia 9-22. 1141 is 1097. The  
     3341                                        driver of the truck is 1180 and unconscious. There are 2  
     3342                                        1181s in the other vehicle. The liquid is leaking out into  
     3343                                        the #2 lane. #2,3,4 lanes blocked at this time.</LINE>                           
     3344                                <LINE Role="Dispatch">9-22 Santa Lucia copies. 1141 1097. 1  
     3345                                                1180 and 2 1181's.  Liquid leaking into #2 lane.  #2,3,4 lanes are blocked.</LINE> 
     3346                        </DIALOG> 
     3347                </CHP_RADIO> 
     3348                 
     3349                <TELEPHONE> 
     3350                        <INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio. 
     3351                        </INSTRUCTOR> 
     3352                        <INSTRUCTOR Role="Radio Reporter #7">I just caught on the scanner that  
     3353                                                                                        there was some type of spill on 57. 
     3354                        </INSTRUCTOR> 
     3355                        <STUDENT>Confirm incident.</STUDENT> 
     3356                        <INSTRUCTOR Role="Radio Reporter #7">What kind of details do you have  
     3357                                                                                        on the collision? 
     3358                        </INSTRUCTOR> 
     3359                        <STUDENT>Truck vs car, #3 and 4 lanes blocked, liquid spill in lanes.</STUDENT> 
     3360                </TELEPHONE> 
     3361                 
     3362                <CMS_EVALUATION cmsID="93" type="update">  
     3363                        <LOCATION>TBD</LOCATION> 
     3364                        <SAMPLE_MESSAGE> 
     3365                                <CMS_LINE>ACCIDENT</CMS_LINE> 
     3366                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     3367                                <CMS_LINE>3 RT LANES BLKD</CMS_LINE> 
     3368                        </SAMPLE_MESSAGE> 
     3369                </CMS_EVALUATION>                                
     3370                 
     3371                <CMS_EVALUATION cmsID="94" type="update">  
     3372                        <LOCATION>TBD</LOCATION> 
     3373                        <SAMPLE_MESSAGE> 
     3374                                <CMS_LINE>ACCIDENT N-5</CMS_LINE> 
     3375                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     3376                                <CMS_LINE>3 RT LANES BLKD</CMS_LINE> 
     3377                        </SAMPLE_MESSAGE> 
     3378                </CMS_EVALUATION>                        
     3379                 
     3380        </SCRIPT_EVENT> 
     3381 
     3382        <SCRIPT_EVENT> 
     3383                <TIME_INDEX>02:01:00</TIME_INDEX> 
     3384                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3385                 
     3386                <CAD_DATA> 
     3387                        <CAD_INCIDENT_EVENT> 
     3388                                <DETAIL>NEGOTIATOR MAKING PROGRESS, SUSP MAY SURRENDER</DETAIL> 
     3389                                <AUDIO Length = "21" Path = "189/18919.mp3" /> 
     3390                        </CAD_INCIDENT_EVENT>            
     3391                </CAD_DATA>              
     3392                 
     3393                <CHP_RADIO RadioFile="18919.mp3"> 
     3394                        <DIALOG> 
     3395                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3396                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     3397                                <LINE Role="Field">Santa Lucia 28-S4. The negotiator has made some  
     3398                                        progress. Looks like the man is about to give himself up.</LINE>                                 
     3399                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Negotiator has made progress and  
     3400                                                looks like the man is about to give himself up.</LINE> 
     3401                        </DIALOG> 
     3402                </CHP_RADIO> 
     3403        </SCRIPT_EVENT> 
     3404 
     3405 
     3406        <SCRIPT_EVENT> 
     3407                <TIME_INDEX>02:01:00</TIME_INDEX> 
     3408                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3409 
     3410                <CAD_DATA> 
     3411                        <CAD_INCIDENT_EVENT> 
     3412                                <DETAIL>DONT HAVE TO SHUT THE FWY, LIQUID ID'D AS MILK.  #1 LN WILL REMAIN OPEN.</DETAIL> 
     3413                                <DETAIL>ATTEMPTING TO CONTROL THE LEAK. REQ BIG RIG AND ROT 1185</DETAIL> 
     3414                                <AUDIO Length = "27" Path = "190/19005.mp3" /> 
     3415                        </CAD_INCIDENT_EVENT>            
     3416                </CAD_DATA>      
     3417 
     3418                <CHP_RADIO RadioFile="19005.mp3"> 
     3419                        <DIALOG> 
     3420                                <LINE Role="Field">Santa Lucia 9-22.</LINE> 
     3421                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE> 
     3422                                <LINE Role="Field">Santa Lucia 9-22. We don't have to shut down all the lanes,  
     3423                                        the liquid is milk. Attempting to control the leak.  Request big  
     3424                                        rig 11-85 and 11-85 rotational.</LINE> 
     3425                                <LINE Role="Dispatch">9-22 Santa Lucia copied don't have to close all lanes,  
     3426                                                liquid is milk. Attempting to control the leak. Requesting big  
     3427                                                rig and rotational 11-85's.</LINE> 
     3428                        </DIALOG> 
     3429                </CHP_RADIO> 
     3430 
     3431                <TELEPHONE> 
     3432                        <INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio. 
     3433                        </INSTRUCTOR> 
     3434                        <INSTRUCTOR Role="Radio Reporter #8">I just heard the northbound lanes  
     3435                                                                                        on 57 are being closed. 
     3436                        </INSTRUCTOR> 
     3437                        <STUDENT>Confirmation.</STUDENT> 
     3438                        <INSTRUCTOR Role="Radio Reporter #8">Why are they closing the lanes. 
     3439                        </INSTRUCTOR> 
     3440                        <STUDENT>Liquid spill, collision.</STUDENT> 
     3441                        <INSTRUCTOR Role="Radio Reporter #8">How long are they expected to be  
     3442                                                                                        closed. 
     3443                        </INSTRUCTOR> 
     3444                        <STUDENT>Until cleanup - no definitive answer.</STUDENT> 
     3445                </TELEPHONE> 
     3446                 
     3447                <ACTIVITY_LOG_EVALUATION> 
     3448                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     3449                </ACTIVITY_LOG_EVALUATION> 
     3450                 
     3451        </SCRIPT_EVENT> 
     3452 
     3453 
     3454        <SCRIPT_EVENT> 
     3455                <TIME_INDEX>02:02:00</TIME_INDEX> 
     3456                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3457                 
     3458                <TELEPHONE> 
     3459                        <INSTRUCTOR Role="TV Reporter #2">"Hello, this is Fred Roppel at KNOW TV  
     3460                                                                                 Channel 3." 
     3461                        </INSTRUCTOR> 
     3462                        <INSTRUCTOR Role="TV Reporter #2">"Has a bomb been found yet at the 405  
     3463                                                                                 and Jeffrey interchange?" 
     3464                        </INSTRUCTOR> 
     3465                        <STUDENT>No bomb has been found.</STUDENT> 
     3466                        <INSTRUCTOR Role="TV Reporter #2">"When will they be done with their search?" 
     3467                        </INSTRUCTOR> 
     3468                        <STUDENT>Unknown, but about 10 minutes.</STUDENT> 
     3469                        <INSTRUCTOR Role="TV Reporter #2">"Are there any other incidents going on  
     3470                                                                                 right now?" 
     3471                        </INSTRUCTOR> 
     3472                        <STUDENT>Notify reporter of incidents.</STUDENT> 
     3473                        <INSTRUCTOR Role="TV Reporter #2">"What are their details?"</INSTRUCTOR> 
     3474                        <STUDENT>Notify reporter of incident details.</STUDENT> 
     3475                </TELEPHONE> 
     3476 
     3477        </SCRIPT_EVENT> 
     3478 
     3479        <SCRIPT_EVENT> 
     3480                <TIME_INDEX>02:03:00</TIME_INDEX> 
     3481                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3482 
     3483                <TELEPHONE> 
     3484                        <INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio. 
     3485                        </INSTRUCTOR> 
     3486                        <INSTRUCTOR Role="Radio Reporter #9">How many lanes are blocked by the  
     3487                                                                                        collision on 57 at Katella? 
     3488                        </INSTRUCTOR> 
     3489                        <STUDENT>#3 and 4 lanes blocked, milk in #2 lane.</STUDENT> 
     3490                        <INSTRUCTOR Role="Radio Reporter #9">How many Injured are there?</INSTRUCTOR> 
     3491                        <STUDENT>3 injured.</STUDENT> 
     3492                </TELEPHONE> 
     3493                 
     3494                <ATMS_EVALUATION> 
     3495                        <EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION> 
     3496                </ATMS_EVALUATION> 
     3497                 
     3498        </SCRIPT_EVENT> 
     3499 
     3500        <SCRIPT_EVENT> 
     3501                <TIME_INDEX>02:04:00</TIME_INDEX> 
     3502                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3503                 
     3504                <CAD_DATA> 
     3505                        <CAD_INCIDENT_EVENT> 
     3506                                <DETAIL>9-23 1097, REQ TMT, TRAFFIC BACKING</DETAIL> 
     3507                                <UNIT UnitNum="9-23" Status="1097" Primary="true" Active="true"/> 
     3508                                <AUDIO Length = "21" Path = "190/19006.mp3" /> 
     3509                        </CAD_INCIDENT_EVENT>            
     3510                </CAD_DATA>      
     3511 
     3512                <CHP_RADIO RadioFile="19006.mp3"> 
     3513                        <DIALOG> 
     3514                                <LINE Role="Field">Santa Lucia 9-23.</LINE>                              
     3515                                <LINE Role="Dispatch">9-23 Santa Lucia go ahead.</LINE>                          
     3516                                <LINE Role="Field">Santa Lucia 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE>                              
     3517                                <LINE Role="Dispatch">Santa Lucia copies 9-23 10-97 11-80. Request TMT, traffic is backing up.</LINE> 
     3518                        </DIALOG> 
     3519                </CHP_RADIO> 
     3520 
     3521                 
     3522                <TMT_RADIO> 
     3523                        Time of request by CHP officers in the field for sign  
     3524                                                 trucks. Send sign trucks to scene when requested. 
     3525                                                 ***CONTROL ROOM ACTION*** - Call TMC, ask for TMT 
     3526                </TMT_RADIO> 
     3527                 
     3528                 
     3529        </SCRIPT_EVENT> 
     3530 
     3531        <SCRIPT_EVENT> 
     3532                <TIME_INDEX>02:05:00</TIME_INDEX> 
     3533                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3534 
     3535 
     3536                <TMT_RADIO>Queue Update</TMT_RADIO> 
     3537                 
     3538        </SCRIPT_EVENT> 
     3539 
     3540        <SCRIPT_EVENT> 
     3541                <TIME_INDEX>02:06:00</TIME_INDEX> 
     3542                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3543 
     3544                <CAD_DATA> 
     3545                        <CAD_INCIDENT_EVENT> 
     3546                                <DETAIL>MAN TRIED TO DETONATE THE DEVICE, BOMB DIDNT ACTIVATE, PD APPRHNDNG</DETAIL> 
     3547                                <AUDIO Length = "23" Path = "189/18921.mp3" /> 
     3548                        </CAD_INCIDENT_EVENT>            
     3549                </CAD_DATA>                      
     3550                 
     3551                <CHP_RADIO RadioFile="18921.mp3"> 
     3552                        <DIALOG> 
     3553                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3554                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     3555                                <LINE Role="Field">Santa Lucia 28-S4. The man just tried to blow himself up,  
     3556                                        but the bomb didn't go off! The police department is  
     3557                                        apprehending him now.</LINE>                             
     3558                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man attempted to blow up the  
     3559                                                interchange and is being apprehended by the PD.</LINE> 
     3560                        </DIALOG> 
     3561                </CHP_RADIO> 
     3562        </SCRIPT_EVENT> 
     3563 
     3564        <SCRIPT_EVENT> 
     3565                <TIME_INDEX>02:08:00</TIME_INDEX> 
     3566                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3567 
     3568                <CAD_DATA> 
     3569                        <CAD_INCIDENT_EVENT> 
     3570                                <DETAIL>SUSP IN CUSTODY, BOMB SQD INSPECTING BOMB</DETAIL> 
     3571                                <AUDIO Length = "20" Path = "189/18922.mp3" /> 
     3572                        </CAD_INCIDENT_EVENT>            
     3573                </CAD_DATA>      
     3574 
     3575                <CHP_RADIO RadioFile="18922.mp3"> 
     3576                        <DIALOG> 
     3577                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3578                                <LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>                              
     3579                                <LINE Role="Field">Santa Lucia 28-S4. The man is in custody, and the bomb squad  
     3580                                        is attempting to diffuse the bomb.</LINE>                                
     3581                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. Man in custody, and bomb squad  
     3582                                                diffusing the bomb.</LINE> 
     3583                        </DIALOG> 
     3584                </CHP_RADIO> 
     3585        </SCRIPT_EVENT> 
     3586 
     3587        <SCRIPT_EVENT> 
     3588                <TIME_INDEX>02:09:00</TIME_INDEX> 
     3589                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3590 
     3591                <TMT_RADIO>Queue update</TMT_RADIO> 
     3592 
     3593        </SCRIPT_EVENT> 
     3594 
     3595        <SCRIPT_EVENT> 
     3596                <TIME_INDEX>02:11:00</TIME_INDEX> 
     3597                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3598                 
     3599                <CAD_DATA> 
     3600                        <CAD_INCIDENT_EVENT> 
     3601                                <DETAIL>PREPARING TO TRANSPORT VICTIMS, #1 LN OPN</DETAIL> 
     3602                                <AUDIO Length = "15" Path = "190/19007.mp3" /> 
     3603                        </CAD_INCIDENT_EVENT>            
     3604                </CAD_DATA>              
     3605 
     3606                <CHP_RADIO RadioFile="19007.mp3"> 
     3607                        <DIALOG> 
     3608                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     3609                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     3610                                <LINE Role="Field">Santa Lucia 9-22. The victims are being prepared for  
     3611                                        transport.</LINE>                                
     3612                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Victims being prepared for  
     3613                                                transport.</LINE> 
     3614                        </DIALOG> 
     3615                </CHP_RADIO> 
     3616 
     3617        </SCRIPT_EVENT> 
     3618 
     3619        <SCRIPT_EVENT> 
     3620                <TIME_INDEX>02:11:30</TIME_INDEX> 
     3621                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3622                 
     3623                <TELEPHONE> 
     3624                        <INSTRUCTOR Role="Radio Reporter #10">Hello, this is Jim Sanso at KTAK  
     3625                                                                                         radio. 
     3626                        </INSTRUCTOR> 
     3627                        <INSTRUCTOR Role="Radio Reporter #10">I just heard about a large  
     3628                                                                                         collision and spill on the 55. 
     3629                        </INSTRUCTOR> 
     3630                        <STUDENT>Correct location is on northbound 57.</STUDENT> 
     3631                        <INSTRUCTOR Role="Radio Reporter #10">Give me the details on that. 
     3632                        </INSTRUCTOR> 
     3633                        <STUDENT>Gives details regarding incident.</STUDENT> 
     3634                </TELEPHONE> 
     3635        </SCRIPT_EVENT> 
     3636 
     3637        <SCRIPT_EVENT> 
     3638                <TIME_INDEX>02:12:00</TIME_INDEX> 
     3639                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3640                 
     3641                <RADIO_EVALUATION> 
     3642                        <EXPECTED_ACTION>Operator should have requested sign truck(s)</EXPECTED_ACTION> 
     3643                </RADIO_EVALUATION> 
     3644 
     3645        </SCRIPT_EVENT> 
     3646 
     3647 
     3648        <SCRIPT_EVENT> 
     3649                <TIME_INDEX>02:13:00</TIME_INDEX> 
     3650                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3651 
     3652                <CAD_DATA> 
     3653                        <CAD_INCIDENT_EVENT> 
     3654                                <DETAIL>9-26 1097 VICTIMS TRANSPORTED</DETAIL> 
     3655                                <UNIT UnitNum="9-26" Status="1097" Primary="false" Active="true"/> 
     3656                                <AUDIO Length = "15" Path = "190/19008.mp3" /> 
     3657                        </CAD_INCIDENT_EVENT>            
     3658                </CAD_DATA>              
     3659                 
     3660                <CHP_RADIO RadioFile="19008.mp3"> 
     3661                        <DIALOG> 
     3662                                <LINE Role="Field">Santa Lucia 9-26.</LINE>                              
     3663                                <LINE Role="Dispatch">9-26 Santa Lucia go ahead.</LINE>                          
     3664                                <LINE Role="Field">Santa Lucia I'm 1097.  The victims have been transported.</LINE>                              
     3665                                <LINE Role="Dispatch">  Santa Lucia copies 9-26 10-97. Victims transported.</LINE> 
     3666                        </DIALOG> 
     3667                </CHP_RADIO> 
     3668 
     3669                <TELEPHONE> 
     3670                        <INSTRUCTOR Role="Radio Reporter #11">Hello, this is Bill Rasmussen at KTRC radio. 
     3671                        </INSTRUCTOR> 
     3672                        <INSTRUCTOR Role="Radio Reporter #11">What details do you have on the collision on 57. 
     3673                        </INSTRUCTOR> 
     3674                        <STUDENT>Tanker vs. car, milk spill, 3 lanes blocked, 3 injured.</STUDENT> 
     3675                        <INSTRUCTOR Role="Radio Reporter #11">Is there an alternate route  
     3676                                                                                        established, that I could tell my listeners? 
     3677                        </INSTRUCTOR> 
     3678                        <STUDENT>Alternate route??</STUDENT> 
     3679                </TELEPHONE> 
     3680                 
     3681        </SCRIPT_EVENT> 
     3682 
     3683        <SCRIPT_EVENT> 
     3684                <TIME_INDEX>02:14:00</TIME_INDEX> 
     3685                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3686 
     3687                <CAD_DATA> 
     3688                        <CAD_INCIDENT_EVENT> 
     3689                                <DETAIL>CODE A, BOMB DEFUSED, LNS BEING OPENED</DETAIL> 
     3690                                <AUDIO Length = "19" Path = "189/18923.mp3" /> 
     3691                                 
     3692                                <PARAMICS LocationID="189_N_405_ML"> 
     3693                                        <Status>CLEARED</Status> 
     3694                                </PARAMICS>      
     3695                                 
     3696                                <PARAMICS LocationID="189_N_405_HV"> 
     3697                                        <Status>CLEARED</Status> 
     3698                                </PARAMICS>              
     3699                                 
     3700                                <PARAMICS LocationID="189_S_405_ML"> 
     3701                                        <Status>CLEARED</Status> 
     3702                                </PARAMICS>      
     3703                                 
     3704                                <PARAMICS LocationID="189_S_405_HV"> 
     3705                                        <Status>CLEARED</Status> 
     3706                                </PARAMICS>              
     3707                                 
     3708                        </CAD_INCIDENT_EVENT>            
     3709                </CAD_DATA>      
     3710                 
     3711                <CHP_RADIO RadioFile="18923.mp3"> 
     3712                        <DIALOG> 
     3713                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3714                                <LINE Role="Dispatch">28-S4 go ahead to Santa Lucia.</LINE>                              
     3715                                <LINE Role="Field">Santa Lucia 28-S4. The bomb has been diffused. We're opening  
     3716                                        the lanes now.</LINE>                            
     3717                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. The bomb has been diffused and  
     3718                                                lanes are being opened.</LINE> 
     3719                        </DIALOG> 
     3720                </CHP_RADIO> 
     3721                 
     3722                <RADIO_EVALUATION> 
     3723                        <EXPECTED_ACTION>Operator should update TMT units</EXPECTED_ACTION> 
     3724                </RADIO_EVALUATION> 
     3725                 
     3726                <TMT_RADIO>Queue update</TMT_RADIO> 
     3727                 
     3728        </SCRIPT_EVENT> 
     3729 
     3730        <SCRIPT_EVENT> 
     3731                <TIME_INDEX>02:14:30</TIME_INDEX> 
     3732                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3733 
     3734                <TELEPHONE> 
     3735                        <INSTRUCTOR Role="Radio Reporter #12">"Hello, this is Fred Masterson at KTRC radio." 
     3736                        </INSTRUCTOR> 
     3737                        <INSTRUCTOR Role="Radio Reporter #12">"My CAD is down and I was wondering  
     3738                                                                                         if you had any new incidents?" 
     3739                        </INSTRUCTOR> 
     3740                        <STUDENT>Yes, tanker vs. car, spill.</STUDENT> 
     3741                        <INSTRUCTOR Role="Radio Reporter #12">"What do you have on that?" 
     3742                        </INSTRUCTOR> 
     3743                        <STUDENT>Gives details.</STUDENT> 
     3744                </TELEPHONE> 
     3745        </SCRIPT_EVENT> 
     3746 
     3747        <SCRIPT_EVENT> 
     3748                <TIME_INDEX>02:15:00</TIME_INDEX> 
     3749                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3750                 
     3751                <CAD_DATA> 
     3752                        <CAD_INCIDENT_EVENT> 
     3753                                <DETAIL>HOLE IN TANKER PLUGGED, FD WASHING DOWN RDWY</DETAIL> 
     3754                                <AUDIO Length = "20" Path = "190/19009.mp3" /> 
     3755                        </CAD_INCIDENT_EVENT>            
     3756                </CAD_DATA>      
     3757 
     3758                <CHP_RADIO RadioFile="19009.mp3"> 
     3759                        <DIALOG> 
     3760                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     3761                                <LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>                               
     3762                                <LINE Role="Field">Santa Lucia 9-22. The hole in the tanker has been plugged.  
     3763                                        Not too much spilled on the roadway here.  The fire department is going  
     3764                                        to wash it down.</LINE>                          
     3765                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Hole plugged. Fire department  
     3766                                                spraying down roadway.</LINE> 
     3767                        </DIALOG> 
     3768                </CHP_RADIO> 
     3769 
     3770        </SCRIPT_EVENT> 
     3771 
     3772        <SCRIPT_EVENT> 
     3773                <TIME_INDEX>02:16:00</TIME_INDEX> 
     3774                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3775                 
     3776                <CAD_DATA> 
     3777                        <CAD_INCIDENT_EVENT> 
     3778                                <DETAIL>SB LNS OPN 28-11 28-07 1098</DETAIL> 
     3779                                <UNIT UnitNum="28-11" Status="1098" Primary="false" Active="false"/> 
     3780                                <UNIT UnitNum="28-07" Status="1098" Primary="false" Active="false"/> 
     3781                                <AUDIO Length = "21" Path = "189/18924.mp3" /> 
     3782                        </CAD_INCIDENT_EVENT>            
     3783                </CAD_DATA>      
     3784 
     3785                <CHP_RADIO RadioFile="18924.mp3"> 
     3786                        <DIALOG> 
     3787                                <LINE Role="Field">Santa Lucia 28-07.</LINE>                             
     3788                                <LINE Role="Dispatch">28-07 Santa Lucia go ahead.</LINE>                                 
     3789                                <LINE Role="Field">Santa Lucia 28-07. Southbound lanes are open. 28-11 and I are 10-98.</LINE>                           
     3790                                <LINE Role="Dispatch">28-07 Santa Lucia 10-4. Southbound lanes open. 28-11, 28-07 10-98.</LINE> 
     3791                        </DIALOG> 
     3792                </CHP_RADIO>             
     3793                 
     3794                <CMS_EVALUATION cmsID="72" type="remove">  
     3795                        <LOCATION>SB 55 @ Warner</LOCATION> 
     3796                </CMS_EVALUATION>                
     3797                 
     3798                <CMS_EVALUATION cmsID="86" type="update">  
     3799                        <LOCATION>TBD</LOCATION> 
     3800                        <SAMPLE_MESSAGE> 
     3801                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE>  
     3802                                <CMS_LINE>AT JEFFREY RD</CMS_LINE> 
     3803                                <CMS_LINE>HEAVY TRAFFIC</CMS_LINE> 
     3804                        </SAMPLE_MESSAGE> 
     3805                </CMS_EVALUATION>                
     3806                 
     3807                <CMS_EVALUATION cmsID="89" type="update">  
     3808                        <LOCATION>SB 405 @ Von Karmen</LOCATION> 
     3809                        <SAMPLE_MESSAGE> 
     3810                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE>  
     3811                                <CMS_LINE>AT JEFFREY RD</CMS_LINE> 
     3812                                <CMS_LINE>HEAVY TRAFFIC</CMS_LINE> 
     3813                        </SAMPLE_MESSAGE> 
     3814                </CMS_EVALUATION>                
     3815        </SCRIPT_EVENT> 
     3816 
     3817        <SCRIPT_EVENT> 
     3818                <TIME_INDEX>02:16:00</TIME_INDEX> 
     3819                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3820                 
     3821                <TELEPHONE> 
     3822                        <INSTRUCTOR Role="Radio Reporter #13">Hello, this is Chris Rasmuessan at KWIT radio.</INSTRUCTOR> 
     3823                        <INSTRUCTOR Role="Radio Reporter #13">What's going on with the tanker  
     3824                                                                                        spill on 5 north of Main St? 
     3825                        </INSTRUCTOR> 
     3826                        <STUDENT>(tanker plugged, injured transported, diluting milk with water, #1 lane only open.</STUDENT> 
     3827                </TELEPHONE> 
     3828        </SCRIPT_EVENT> 
     3829         
     3830 
     3831        <SCRIPT_EVENT> 
     3832                <TIME_INDEX>02:17:00</TIME_INDEX> 
     3833                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     3834                 
     3835                <CAD_DATA> 
     3836                        <MASTER_INC_NUM>145086SLO007</MASTER_INC_NUM> 
     3837                        <P>4</P> 
     3838                        <ADDITIONAL_INFO> 
     3839                                <TYPE_CODE>1179 Accident - Ambulance Responding</TYPE_CODE> 
     3840                                <TYPE>1179</TYPE> 
     3841                        </ADDITIONAL_INFO> 
     3842                        <LOCATION> 
     3843                                <BEAT>17-14</BEAT> 
     3844                                <ADDRESS>SB73 JNO Baker St.</ADDRESS> 
     3845                                <LOC>SB73 JNO Baker St.</LOC> 
     3846                                <CITY>Templeton</CITY> 
     3847                                <AREA>17</AREA> 
     3848                                <FIRE>Templeton</FIRE> 
     3849                                <LAW>Templeton</LAW> 
     3850                                <EMS>Templeton</EMS> 
     3851                        </LOCATION> 
     3852                        <GENERAL> 
     3853                                <AGY>CHP</AGY> 
     3854                        </GENERAL> 
     3855                 
     3856                        <HEADER_INFO> 
     3857                                <Type>1179</Type> 
     3858                                <Beat>17-14</Beat> 
     3859                                <TruncLoc>SB73 JNO Baker St.</TruncLoc> 
     3860                                <FullLoc>SB73 JNO Baker St.</FullLoc> 
     3861                        </HEADER_INFO> 
     3862                         
     3863                        <LOCATION_INFO ID="191_S_73_ML"> 
     3864                                <Route>73</Route> 
     3865                                <Direction>SB</Direction> 
     3866                                <Postmile>26.7</Postmile> 
     3867                                <Location_type>ML</Location_type>                                        
     3868                        </LOCATION_INFO> 
     3869                         
     3870                        <CAD_INCIDENT_EVENT>                     
     3871                                <DETAIL>911 CELLULAR CALL, RV FIRE SB-73 AT BEAR St, UNVERIFIED</DETAIL> 
     3872                        </CAD_INCIDENT_EVENT>    
     3873                </CAD_DATA>              
     3874                 
     3875                <GENERAL_INFO>  
     3876                        <TITLE>Incident Description</TITLE> 
     3877                        <TEXT> This is an RV fire on the shoulder southbound 73 just north of  
     3878                   Bear/Baker Street. There are two injured victims who were pulled from  
     3879                   the RV by passers-by. The #3 is closed to fight the fire.  
     3880                   The fire department, paramedics, an extra unit, sign truck/s, and  
     3881                   ambulance are sent to the scene. 
     3882                        </TEXT> 
     3883                </GENERAL_INFO> 
     3884 
     3885        </SCRIPT_EVENT> 
     3886 
     3887        <SCRIPT_EVENT> 
     3888                <TIME_INDEX>02:17:00</TIME_INDEX> 
     3889                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3890 
     3891                <CAD_DATA> 
     3892                        <CAD_INCIDENT_EVENT> 
     3893                                <DETAIL>NB LNS OPN 28-13 28-19 1098</DETAIL> 
     3894                                <UNIT UnitNum="28-13" Status="1098" Primary="false" Active="false"/> 
     3895                                <UNIT UnitNum="28-19" Status="1098" Primary="false" Active="false"/> 
     3896                                <AUDIO Length = "22" Path = "189/18925.mp3" /> 
     3897                        </CAD_INCIDENT_EVENT>            
     3898                </CAD_DATA>      
     3899 
     3900                <CHP_RADIO RadioFile="18925.mp3"> 
     3901                        <DIALOG> 
     3902                                <LINE Role="Field">Santa Lucia 28-19.</LINE> 
     3903                                <LINE Role="Dispatch">28-19 go ahead to Santa Lucia.</LINE> 
     3904                                <LINE Role="Field">Santa Lucia 28-19. Northbound lanes are open. 28-13 and I are 10-98.</LINE>                           
     3905                                <LINE Role="Dispatch">28-19 Santa Lucia copies northbound lanes open. 28-13, 28-19 10-98.</LINE> 
     3906                        </DIALOG> 
     3907                </CHP_RADIO> 
     3908                 
     3909                <CMS_EVALUATION cmsID="88" type="update">  
     3910                        <LOCATION>TBD</LOCATION> 
     3911                        <SAMPLE_MESSAGE> 
     3912                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE>  
     3913                                <CMS_LINE>AT JEFFREY RD</CMS_LINE> 
     3914                                <CMS_LINE>HEAVY TRAFFIC</CMS_LINE> 
     3915                        </SAMPLE_MESSAGE> 
     3916                </CMS_EVALUATION>                
     3917                 
     3918                <CMS_EVALUATION cmsID="95" type="update">  
     3919                        <LOCATION>NB 5 @ El Toro</LOCATION> 
     3920                        <SAMPLE_MESSAGE> 
     3921                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE>  
     3922                                <CMS_LINE>N-405 AT JEFFREY RD</CMS_LINE> 
     3923                                <CMS_LINE>HEAVY TRAFFIC</CMS_LINE> 
     3924                        </SAMPLE_MESSAGE> 
     3925                </CMS_EVALUATION>                
     3926                 
     3927        </SCRIPT_EVENT> 
     3928 
     3929        <SCRIPT_EVENT> 
     3930                <TIME_INDEX>02:18:00</TIME_INDEX> 
     3931                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     3932 
     3933                <CAD_DATA> 
     3934                        <CAD_INCIDENT_EVENT> 
     3935                                <DETAIL>28-24, 28-S4 1098 PD OPNNG OVRPASS</DETAIL> 
     3936                                <UNIT UnitNum="28-24" Status="1098" Primary="true" Active="false"/> 
     3937                                <UNIT UnitNum="28-S4" Status="1098" Primary="false" Active="false"/> 
     3938                                <AUDIO Length = "24" Path = "189/18926.mp3" /> 
     3939                        </CAD_INCIDENT_EVENT>            
     3940                </CAD_DATA>      
     3941                 
     3942                <CHP_RADIO RadioFile="18926.mp3"> 
     3943                        <DIALOG> 
     3944                                <LINE Role="Field">Santa Lucia 28-S4.</LINE>                             
     3945                                <LINE Role="Dispatch">28-S4 Santa Lucia go ahead.</LINE>                                 
     3946                                <LINE Role="Field">Santa Lucia 28-S4. 28-24 and I are 10-98. The police  
     3947                                        department is opening the overpass.</LINE>                               
     3948                                <LINE Role="Dispatch">28-S4 Santa Lucia 10-4. 28-S4, 28-24 10-98. Police  
     3949                                                department opening overpass.</LINE> 
     3950                        </DIALOG> 
     3951                </CHP_RADIO> 
     3952                 
     3953                <TMT_RADIO>Queue update</TMT_RADIO> 
     3954 
     3955        </SCRIPT_EVENT> 
     3956 
     3957        <SCRIPT_EVENT> 
     3958                <TIME_INDEX>02:19:00</TIME_INDEX> 
     3959                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     3960                 
     3961                <CAD_DATA> 
     3962                        <CAD_INCIDENT_EVENT>                     
     3963                                <DETAIL>17-14 ENRT FROM 405 AT EUCLID</DETAIL> 
     3964                                <UNIT UnitNum="17-14" Status="ENRT" Primary="true" Active="true"/> 
     3965                                <AUDIO Length = "24" Path = "191/19101.mp3" /> 
     3966                                 
     3967                        </CAD_INCIDENT_EVENT>    
     3968                </CAD_DATA>              
     3969                 
     3970                <CHP_RADIO RadioFile="19101.mp3"> 
     3971                        <DIALOG> 
     3972                                <LINE Role="Dispatch">17-14 Santa Lucia.</LINE>                          
     3973                                <LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>                            
     3974                                <LINE Role="Dispatch">17-14 Santa Lucia, RV fire southbound 73 just north of Baker Street. </LINE>                               
     3975                                <LINE Role="Field">Santa Lucia 17-14 10-4. Enroute from 405 @ Euclid.</LINE>                             
     3976                                <LINE Role="Dispatch">10-4 Santa Lucia copies, 17-14 enroute from 405 @ Euclid.</LINE> 
     3977                        </DIALOG> 
     3978                </CHP_RADIO>     
     3979                 
     3980                <CAD_EVALUATION> 
     3981                        <EXPECTED_ACTION>Operator should be verifying incident 191 on the CAD</EXPECTED_ACTION> 
     3982                </CAD_EVALUATION> 
     3983                <ATMS_EVALUATION> 
     3984                        <EXPECTED_ACTION>Attempt to verify incident on ATMS</EXPECTED_ACTION> 
     3985                </ATMS_EVALUATION> 
     3986                 
     3987                <MAINTENANCE_RADIO>No Maintenance needed on scene for this incident.</MAINTENANCE_RADIO> 
     3988 
     3989        </SCRIPT_EVENT> 
     3990 
     3991 
     3992        <SCRIPT_EVENT> 
     3993                <TIME_INDEX>02:20:00</TIME_INDEX> 
     3994                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     3995                 
     3996                <CAD_DATA> 
     3997                        <CAD_INCIDENT_EVENT> 
     3998                                <DETAIL>1185 ROT 1097</DETAIL> 
     3999                                <TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/> 
     4000                                <AUDIO Length = "16" Path = "190/19010.mp3" /> 
     4001                        </CAD_INCIDENT_EVENT>            
     4002                </CAD_DATA>              
     4003 
     4004                <CHP_RADIO RadioFile="19010.mp3"> 
     4005                        <DIALOG> 
     4006                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4007                                <LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>                               
     4008                                <LINE Role="Field">Santa Lucia 9-22. The 11-85 rotation 10-97.</LINE>                            
     4009                                <LINE Role="Dispatch">9-22 Santa Lucia copies 11-85 rotation 10-97.</LINE> 
     4010                        </DIALOG> 
     4011                </CHP_RADIO> 
     4012        </SCRIPT_EVENT> 
     4013 
     4014        <SCRIPT_EVENT> 
     4015                <TIME_INDEX>02:21:00</TIME_INDEX> 
     4016                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4017 
     4018                <CAD_DATA> 
     4019                        <CAD_INCIDENT_EVENT> 
     4020                                <DETAIL>BIG RIG 1185 1097, ONCE FD IS DONE, WILL START CLEANUP</DETAIL> 
     4021                                <TOW Company="Imperial" ConfNum="(949)555-1128" PubNum="(949)555-1520" Beat=""/> 
     4022                                <AUDIO Length = "22" Path = "190/19011.mp3" /> 
     4023                        </CAD_INCIDENT_EVENT>            
     4024                </CAD_DATA>      
     4025 
     4026                <CHP_RADIO RadioFile="19011.mp3"> 
     4027                        <DIALOG> 
     4028                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4029                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4030                                <LINE Role="Field">     Santa Lucia 9-22 big rig 11-85 10-97. Once the  
     4031                                  fire department is done, we will start clearing vehicles.</LINE>                               
     4032                                <LINE Role="Dispatch">  9-22 Santa Lucia 10-4. Big rig 11-85 10-97. Start  
     4033                                                cleanup when fire department done.</LINE> 
     4034                        </DIALOG> 
     4035                </CHP_RADIO> 
     4036 
     4037                <TELEPHONE> 
     4038                        <INSTRUCTOR Role="Radio Reporter #1">Hello, this is Dakota Crew at KCOW radio.</INSTRUCTOR> 
     4039                        <INSTRUCTOR Role="Radio Reporter #1">Do you have an alternate route I  
     4040                                                                                    could tell my listeners about for collision on I-5? 
     4041                        </INSTRUCTOR> 
     4042                        <STUDENT>Should have one established.</STUDENT> 
     4043                </TELEPHONE>             
     4044 
     4045                <TMT_RADIO> 
     4046                        Sign trucks should be 1097. 
     4047                </TMT_RADIO> 
     4048                 
     4049        </SCRIPT_EVENT> 
     4050 
     4051        <SCRIPT_EVENT> 
     4052                <TIME_INDEX>02:22:00</TIME_INDEX> 
     4053                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4054 
     4055                <TELEPHONE> 
     4056                        <INSTRUCTOR Role="Radio Reporter #2">Hello, this is Monica Stevens at KCLY radio.</INSTRUCTOR> 
     4057                        <INSTRUCTOR Role="Radio Reporter #2">Do you have any update info on the  
     4058                                                                                        collision on 57. 
     4059                        </INSTRUCTOR> 
     4060                        <STUDENT>Clearing the milk, about to move vehicles, injured transported, etc.</STUDENT> 
     4061                </TELEPHONE> 
     4062        </SCRIPT_EVENT> 
     4063 
     4064        <SCRIPT_EVENT> 
     4065                <TIME_INDEX>02:23:00</TIME_INDEX> 
     4066                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     4067                 
     4068 
     4069                <TELEPHONE> 
     4070                        <INSTRUCTOR Role="TV Reporter #1">Hello, this is Cameron Stevens at KCLY Channel 11.</INSTRUCTOR> 
     4071                        <INSTRUCTOR Role="TV Reporter #1">Is the bomb squad done with their  
     4072                                                                                 search yet at the 405 and Jeffrey  
     4073                                                                                 interchange? 
     4074                        </INSTRUCTOR> 
     4075                        <STUDENT>Yes</STUDENT> 
     4076                        <INSTRUCTOR Role="TV Reporter #1">When will the lanes be open?</INSTRUCTOR> 
     4077                        <STUDENT>They were already opened about 10 minutes ago.</STUDENT> 
     4078                </TELEPHONE> 
     4079 
     4080                <ACTIVITY_LOG_EVALUATION> 
     4081                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     4082                        <EXPECTED_ACTION>Should issue a Sig Alert</EXPECTED_ACTION> 
     4083                </ACTIVITY_LOG_EVALUATION> 
     4084 
     4085                <MAINTENANCE_RADIO>TMT The traffic is near normal. I'm (we're) 1098.</MAINTENANCE_RADIO> 
     4086 
     4087        </SCRIPT_EVENT> 
     4088 
     4089        <SCRIPT_EVENT> 
     4090                <TIME_INDEX>02:23:00</TIME_INDEX> 
     4091                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4092                 
     4093                <CAD_DATA> 
     4094                        <CAD_INCIDENT_EVENT> 
     4095                                <DETAIL>FD DONE, OPENING #2, STARTING CLEANUP</DETAIL> 
     4096                                <AUDIO Length = "19" Path = "190/19012.mp3" /> 
     4097                                 
     4098                                <PARAMICS LocationID="190_N_5_ML"> 
     4099                                        <Status>CHANGED</Status> 
     4100                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     4101                                        <Lane_number>3</Lane_number> 
     4102                                        <Lane_number>4</Lane_number>                             
     4103                                </PARAMICS>                      
     4104                        </CAD_INCIDENT_EVENT>            
     4105                         
     4106                </CAD_DATA>      
     4107                 
     4108                <CHP_RADIO RadioFile="19012.mp3"> 
     4109                        <DIALOG> 
     4110                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4111                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4112                                <LINE Role="Field">Santa Lucia 9-22. Fire department is done. 
     4113                                        Opening the #2 lane and starting cleanup.</LINE>                                 
     4114                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Fire department is done, opening  
     4115                                                #2 lane, and starting cleanup.</LINE> 
     4116                        </DIALOG> 
     4117                </CHP_RADIO>     
     4118        </SCRIPT_EVENT> 
     4119 
     4120        <SCRIPT_EVENT> 
     4121                <TIME_INDEX>02:24:00</TIME_INDEX> 
     4122                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4123                 
     4124                <CAD_DATA> 
     4125                        <CAD_INCIDENT_EVENT> 
     4126                                <DETAIL>RV ON FIRE ON RS, 2 1181S, PARAMEDICS 1097, REQ UNIT TO ASSIST</DETAIL> 
     4127                                <UNIT UnitNum="17-14" Status="1097" Primary="true" Active="true"/> 
     4128                                <AUDIO Length = "42" Path = "191/19102.mp3" /> 
     4129                        </CAD_INCIDENT_EVENT>            
     4130                </CAD_DATA>      
     4131                 
     4132                <CHP_RADIO RadioFile="19102.mp3"> 
     4133                        <DIALOG> 
     4134                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4135                                <LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>                                 
     4136                                <LINE Role="Field">Santa Lucia 17-14 10-97 RV fire southbound 73 just north of 
     4137                                        Baker Street.  RV on the right hand shoulder. Citizens  
     4138                                        pulled 2 11-81's from vehicle, paramedics 10-97.</LINE>                          
     4139                                <LINE Role="Dispatch">Santa Lucia copies 17-14 10-97 RV fire southbound 73  
     4140                                                just north of Baker Street. RV on right hand shoulder. 2  
     4141                                                11-81's pulled from RV, paramedics 10-97.</LINE>                                 
     4142                                <LINE Role="Field">Santa Lucia 17-14 10-4. Send a unit to assist.</LINE>                                 
     4143                                <LINE Role="Dispatch">17-14 Santa Lucia copies.</LINE> 
     4144                        </DIALOG> 
     4145                </CHP_RADIO> 
     4146                 
     4147                 
     4148                <CMS_EVALUATION cmsID="86" type="new">  
     4149                        <LOCATION>TBD</LOCATION> 
     4150                        <SAMPLE_MESSAGE> 
     4151                                <CMS_LINE>ACCIDENT S-73</CMS_LINE>  
     4152                                <CMS_LINE>AT BAKER ST</CMS_LINE> 
     4153                        </SAMPLE_MESSAGE> 
     4154                </CMS_EVALUATION>                
     4155        </SCRIPT_EVENT> 
     4156 
     4157        <SCRIPT_EVENT> 
     4158                <TIME_INDEX>02:25:00</TIME_INDEX> 
     4159                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4160                 
     4161                <CAD_DATA> 
     4162                        <CAD_INCIDENT_EVENT> 
     4163                                <DETAIL>17-16 ENRT FROM S-405 @ EUCLID TO ASSIST 17-14</DETAIL> 
     4164                                <UNIT UnitNum="17-16" Status="ENRT" Primary="false" Active="true"/> 
     4165                                <AUDIO Length = "20" Path = "191/19103.mp3" /> 
     4166                        </CAD_INCIDENT_EVENT>            
     4167                </CAD_DATA>              
     4168                 
     4169                 
     4170                <CHP_RADIO RadioFile="19103.mp3"> 
     4171                        <DIALOG> 
     4172                                <LINE Role="Dispatch">17-16 Santa Lucia.</LINE>                          
     4173                                <LINE Role="Field">Santa Lucia 17-16 go ahead.</LINE>                            
     4174                                <LINE Role="Dispatch">17-16 Santa Lucia, 17-14 requesting assistance RV fire  
     4175                                                southbound 73 just north of Baker Street.</LINE>                                 
     4176                                <LINE Role="Field">Santa Lucia 17-1610-4. Enroute from S-405 @ Euclid.</LINE> 
     4177                        </DIALOG> 
     4178                </CHP_RADIO>     
     4179                 
     4180 
     4181                <TELEPHONE> 
     4182                        <INSTRUCTOR Role="TV Reporter #2">Hello, this is Fred Roppel at KNOW TV channel 3.</INSTRUCTOR> 
     4183                        <INSTRUCTOR Role="TV Reporter #2">I just heard about a RV fire over the scanner.</INSTRUCTOR> 
     4184                        <STUDENT>Confirm RV fire.</STUDENT>                                                               
     4185                        <INSTRUCTOR Role="TV Reporter #2">Where was that located, I'd like to  
     4186                                                                                 send a camera out there?</INSTRUCTOR> 
     4187                        <STUDENT>Southbound 73 just North of Baker Street.</STUDENT>                                                                                              
     4188                </TELEPHONE> 
     4189        </SCRIPT_EVENT> 
     4190 
     4191        <SCRIPT_EVENT> 
     4192                <TIME_INDEX>02:26:00</TIME_INDEX> 
     4193                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4194                 
     4195                <CAD_DATA> 
     4196                        <CAD_INCIDENT_EVENT> 
     4197                                <DETAIL>FD 1097, CLOSING RT LN, REQ TMT, TRAFFIC ADVISORY</DETAIL> 
     4198                                <AUDIO Length = "24" Path = "191/19104.mp3" /> 
     4199                                 
     4200                                <PARAMICS LocationID="191_S_73_ML"> 
     4201                                        <Status>NEW</Status> 
     4202                                        <Incident_type>LANE_BREAKDOWN</Incident_type> 
     4203                                        <Lane_number>3</Lane_number>             
     4204                                </PARAMICS>              
     4205                        </CAD_INCIDENT_EVENT>            
     4206                </CAD_DATA>      
     4207                 
     4208                <CHP_RADIO RadioFile="19104.mp3"> 
     4209                        <DIALOG> 
     4210                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4211                                <LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>                              
     4212                                <LINE Role="Field">Santa Lucia 17-14, fire department 10-97.   Closing the right lane  
     4213                                        for the fire engines. Request sign truck, traffic advisory.</LINE>                               
     4214                                <LINE Role="Dispatch">17-14 Santa Lucia copies fire departement 10-97. Closing  
     4215                                                the right lane. Request sign truck, traffic advisory.</LINE> 
     4216                        </DIALOG> 
     4217                </CHP_RADIO>                     
     4218                 
     4219                <CMS_EVALUATION cmsID="86" type="new">  
     4220                        <LOCATION>TBD</LOCATION> 
     4221                        <SAMPLE_MESSAGE> 
     4222                                <CMS_LINE>ACCIDENT S-73</CMS_LINE>  
     4223                                <CMS_LINE>AT BAKER ST</CMS_LINE> 
     4224                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     4225                        </SAMPLE_MESSAGE> 
     4226                </CMS_EVALUATION>                        
     4227                 
     4228                <ACTIVITY_LOG_EVALUATION> 
     4229                        <EXPECTED_ACTION>Should issue traffic advisory</EXPECTED_ACTION> 
     4230                </ACTIVITY_LOG_EVALUATION> 
     4231                 
     4232                <RADIO_EVALUATION> 
     4233                        <EXPECTED_ACTION>Operator should send TMT units</EXPECTED_ACTION> 
     4234                </RADIO_EVALUATION> 
     4235                 
     4236                <TMT_RADIO> 
     4237                Time of request by CHP officers in the field for sign trucks. Send sign  
     4238                trucks to scene when requested. 
     4239                </TMT_RADIO> 
     4240                 
     4241        </SCRIPT_EVENT> 
     4242 
     4243        <SCRIPT_EVENT> 
     4244                <TIME_INDEX>02:27:00</TIME_INDEX> 
     4245                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4246                 
     4247                <CAD_DATA> 
     4248                        <CAD_INCIDENT_EVENT> 
     4249                                <DETAIL>#2 LN OPN, FULL CLNUP IN 20</DETAIL> 
     4250                                <AUDIO Length = "18" Path = "190/19013.mp3" /> 
     4251                        </CAD_INCIDENT_EVENT>            
     4252                </CAD_DATA>              
     4253                 
     4254                <CHP_RADIO RadioFile="19013.mp3"> 
     4255                        <DIALOG> 
     4256                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4257                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4258                                <LINE Role="Field">Santa Lucia 9-22. The #2 lane is open. Full cleanup in 20 minutes.</LINE>                             
     4259                                <LINE Role="Dispatch">9-22 Santa Lucia copied #2 open, full cleanup in 20.</LINE> 
     4260                        </DIALOG> 
     4261                </CHP_RADIO>                     
     4262                 
     4263                <CMS_EVALUATION cmsID="93" type="update">  
     4264                        <LOCATION>NB 5 S/O Redhill</LOCATION> 
     4265                        <SAMPLE_MESSAGE> 
     4266                                <CMS_LINE>ACCIDENT</CMS_LINE> 
     4267                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     4268                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     4269                        </SAMPLE_MESSAGE> 
     4270                </CMS_EVALUATION>                                
     4271                 
     4272                <CMS_EVALUATION cmsID="94" type="update">  
     4273                        <LOCATION>NB 55 @ Dyer</LOCATION> 
     4274                        <SAMPLE_MESSAGE> 
     4275                                <CMS_LINE>ACCIDENT N-5</CMS_LINE> 
     4276                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     4277                                <CMS_LINE>RT LANE BLKD</CMS_LINE> 
     4278                        </SAMPLE_MESSAGE> 
     4279                </CMS_EVALUATION>                                 
     4280                 
     4281                <TMT_RADIO>Queue update. Possibly reposition.</TMT_RADIO>        
     4282                 
     4283        </SCRIPT_EVENT> 
     4284 
     4285        <SCRIPT_EVENT> 
     4286                <TIME_INDEX>02:28:00</TIME_INDEX> 
     4287                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4288                 
     4289                <TELEPHONE> 
     4290                        <INSTRUCTOR Role="TV Reporter #3">Hello, this is Terry Webb at KTSV radio.</INSTRUCTOR> 
     4291                        <INSTRUCTOR Role="TV Reporter #3">I heard that there was an RV fire on  
     4292                                                                                  southbound 73. 
     4293                        </INSTRUCTOR> 
     4294                        <STUDENT>Confirm RV fire</STUDENT> 
     4295                        <INSTRUCTOR Role="TV Reporter #3">What details do you have on it, are  
     4296                                                                                  any lanes blocked? 
     4297                        </INSTRUCTOR> 
     4298                        <STUDENT>RV fire on shoulder, two injured pulled from vehicle,  
     4299                                                 fire on shoulder, no lanes blocked. 
     4300                        </STUDENT> 
     4301                </TELEPHONE>     
     4302        </SCRIPT_EVENT> 
     4303 
     4304        <SCRIPT_EVENT> 
     4305                <TIME_INDEX>02:28:00</TIME_INDEX> 
     4306                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4307                 
     4308                <TELEPHONE> 
     4309                        <INSTRUCTOR Role="TV Reporter #4">Hello, this is Art Philco at KTTQ news. 
     4310                        </INSTRUCTOR> 
     4311                        <INSTRUCTOR Role="TV Reporter #4">Our computers are down, what  
     4312                                                                                  incidents do you have going on? 
     4313                        </INSTRUCTOR> 
     4314                        <STUDENT>Notify reporter of current incidents.</STUDENT> 
     4315                        <INSTRUCTOR Role="TV Reporter #4">Give me all the details on those.</INSTRUCTOR> 
     4316                        <STUDENT>Notify reporter of current incident details.</STUDENT> 
     4317                </TELEPHONE> 
     4318        </SCRIPT_EVENT> 
     4319 
     4320        <SCRIPT_EVENT> 
     4321                <TIME_INDEX>02:29:00</TIME_INDEX> 
     4322                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4323 
     4324                <CAD_DATA> 
     4325                        <CAD_INCIDENT_EVENT> 
     4326                                <DETAIL>17-14 1097</DETAIL> 
     4327                                <UNIT UnitNum="17-16" Status="1097" Primary="false" Active="true"/> 
     4328                                <AUDIO Length = "24" Path = "191/19105.mp3" /> 
     4329                        </CAD_INCIDENT_EVENT>            
     4330                </CAD_DATA>              
     4331                 
     4332                <CHP_RADIO RadioFile="19105.mp3"> 
     4333                        <DIALOG> 
     4334                                <LINE Role="Field">Santa Lucia 17-16</LINE>                              
     4335                                <LINE Role="Dispatch">17-16 Santa Lucia go ahead.</LINE>                                 
     4336                                <LINE Role="Field">Santa Lucia 17-16 10-97 RV fire southbound 73 just north of 
     4337                                        Baker Street.</LINE> 
     4338                                <LINE Role="Dispatch">10-4 Santa Lucia copied 17-16, 10-97 RV fire  
     4339                                                southbound 73 just north of Baker Street.</LINE> 
     4340                        </DIALOG> 
     4341                </CHP_RADIO> 
     4342                 
     4343                 
     4344                <ATMS_EVALUATION> 
     4345                        <EXPECTED_ACTION>HAR should note incident.</EXPECTED_ACTION> 
     4346                </ATMS_EVALUATION> 
     4347                 
     4348        </SCRIPT_EVENT> 
     4349 
     4350        <SCRIPT_EVENT> 
     4351                <TIME_INDEX>02:32:00</TIME_INDEX> 
     4352                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4353                 
     4354                <CAD_DATA> 
     4355                        <CAD_INCIDENT_EVENT> 
     4356                                <DETAIL>VEH READY TO BE TOWED, TRCK AND TNKR BEING UPRIGHTED</DETAIL> 
     4357                                <AUDIO Length = "19" Path = "190/19014.mp3" /> 
     4358                        </CAD_INCIDENT_EVENT>            
     4359                </CAD_DATA>              
     4360 
     4361                <CHP_RADIO RadioFile="19014.mp3"> 
     4362                        <DIALOG> 
     4363                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4364                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4365                                <LINE Role="Field">Santa Lucia 9-22. The car is ready to be towed. The truck  
     4366                                        and tanker are being uprighted.</LINE>                           
     4367                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Car ready for tow, truck and  
     4368                                                tanker being uprighted.</LINE> 
     4369                        </DIALOG> 
     4370                </CHP_RADIO> 
     4371        </SCRIPT_EVENT> 
     4372 
     4373        <SCRIPT_EVENT> 
     4374                <TIME_INDEX>02:33:00</TIME_INDEX> 
     4375                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4376                 
     4377                <CAD_DATA> 
     4378                        <CAD_INCIDENT_EVENT> 
     4379                                <DETAIL>VICTIMS TRANSPORTED, PASSERS BY RESCUED VICTIMS</DETAIL> 
     4380                                <AUDIO Length = "24" Path = "191/19106.mp3" /> 
     4381                        </CAD_INCIDENT_EVENT>            
     4382                </CAD_DATA>              
     4383                 
     4384                <CHP_RADIO RadioFile="19106.mp3"> 
     4385                        <DIALOG> 
     4386                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4387                                <LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>                              
     4388                                <LINE Role="Field">Santa Lucia 17-14. The two victims transported. Passers-by  
     4389                                        saw the RV on fire and assisted in pulling the two victims  
     4390                                        out of the vehicle before it was completely engulfed.</LINE> 
     4391                                <LINE Role="Dispatch">17-14 Santa Lucia 10-4. Victims transported. Passers-by  
     4392                                                pulled victims out of RV.</LINE> 
     4393                        </DIALOG> 
     4394                </CHP_RADIO> 
     4395        </SCRIPT_EVENT>  
     4396         
     4397        <SCRIPT_EVENT> 
     4398                <TIME_INDEX>02:34:00</TIME_INDEX> 
     4399                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4400                 
     4401                <TELEPHONE> 
     4402                        <INSTRUCTOR Role="Radio Reporter #4">Hello, this is Alex Harmon at KJOK radio.</INSTRUCTOR> 
     4403                        <INSTRUCTOR Role="Radio Reporter #4">Have any of the lanes been open on 5  
     4404                                                                                 north of Main St.</INSTRUCTOR> 
     4405                        <STUDENT>#2 lane open.</STUDENT> 
     4406                        <INSTRUCTOR Role="Radio Reporter #4">When is there a full opening?</INSTRUCTOR> 
     4407                        <STUDENT>Around 15 to 20 minutes.</STUDENT> 
     4408                </TELEPHONE> 
     4409                 
     4410        </SCRIPT_EVENT> 
     4411 
     4412        <SCRIPT_EVENT> 
     4413                <TIME_INDEX>02:34:00</TIME_INDEX> 
     4414                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4415                 
     4416                <TELEPHONE> 
     4417                        <INSTRUCTOR Role="Radio Reporter #5">Hello, this is Tim Rogers at KLNW radio.</INSTRUCTOR> 
     4418                        <INSTRUCTOR Role="Radio Reporter #5">How long is it going to take to clear  
     4419                                                                                  up the RV fire on southbound 73? 
     4420                        </INSTRUCTOR> 
     4421                        <STUDENT>No estimated time as of yet.</STUDENT> 
     4422                </TELEPHONE> 
     4423        </SCRIPT_EVENT> 
     4424 
     4425        <SCRIPT_EVENT> 
     4426                <TIME_INDEX>02:35:00</TIME_INDEX> 
     4427                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4428                 
     4429                <CAD_DATA> 
     4430                        <CAD_INCIDENT_EVENT> 
     4431                                <DETAIL>FIRE IS OUT, FD INVESTIGATING CAUSE OF FIRE</DETAIL> 
     4432                                <AUDIO Length = "19" Path = "191/19107.mp3" /> 
     4433                        </CAD_INCIDENT_EVENT>            
     4434                </CAD_DATA>              
     4435                 
     4436                <CHP_RADIO RadioFile="19107.mp3"> 
     4437                        <DIALOG> 
     4438                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4439                                <LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>                                 
     4440                                <LINE Role="Field">Santa Lucia 17-14. The fire is out, and the fire department  
     4441                                        is investigating the cause of the fire.</LINE> 
     4442                                <LINE Role="Dispatch">  17-14 Santa Lucia copied, fire out and fire department  
     4443                                                investigating cause of fire.</LINE> 
     4444                        </DIALOG> 
     4445                </CHP_RADIO> 
     4446        </SCRIPT_EVENT> 
     4447 
     4448        <SCRIPT_EVENT> 
     4449                <TIME_INDEX>02:37:00</TIME_INDEX> 
     4450                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4451                 
     4452                <CAD_DATA> 
     4453                        <CAD_INCIDENT_EVENT> 
     4454                                <DETAIL>VEH TOWED, TNKR UPRGHT, FULL OPENING IN 10</DETAIL> 
     4455                                <AUDIO Length = "20" Path = "190/19015.mp3" /> 
     4456                        </CAD_INCIDENT_EVENT>            
     4457                </CAD_DATA>              
     4458                 
     4459                <CHP_RADIO RadioFile="19015.mp3"> 
     4460                        <DIALOG> 
     4461                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4462                                <LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>                               
     4463                                <LINE Role="Field">Santa Lucia 9-22. The car has been towed. The tanker truck  
     4464                                        is upright. Full opening in 10 minutes.</LINE>                           
     4465                                <LINE Role="Dispatch">9-22 Santa Lucia copied car towed. Tanker truck upright.  
     4466                                                Full opening in 10.</LINE> 
     4467                        </DIALOG> 
     4468                </CHP_RADIO> 
     4469 
     4470        </SCRIPT_EVENT> 
     4471 
     4472        <SCRIPT_EVENT> 
     4473                <TIME_INDEX>02:38:00</TIME_INDEX> 
     4474                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4475                 
     4476                <TELEPHONE> 
     4477                        <INSTRUCTOR Role="Radio Reporter #6">Hello, this is John Sinclair at KNIN radio. 
     4478                        </INSTRUCTOR> 
     4479                        <INSTRUCTOR Role="Radio Reporter #6">Is there an estimated time for lane  
     4480                                                                                 opening for the collision on I-5? 
     4481                        </INSTRUCTOR> 
     4482                        <STUDENT>10 minutes.</STUDENT> 
     4483                </TELEPHONE> 
     4484                 
     4485                <TMT_RADIO>Queue update</TMT_RADIO> 
     4486        </SCRIPT_EVENT> 
     4487 
     4488        <SCRIPT_EVENT> 
     4489                <TIME_INDEX>02:39:00</TIME_INDEX> 
     4490                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4491                 
     4492                <CAD_DATA> 
     4493                        <CAD_INCIDENT_EVENT> 
     4494                                <DETAIL>REQ FLAT BED 1185, FD 98 IN 15</DETAIL> 
     4495                                <AUDIO Length = "22" Path = "191/19108.mp3" /> 
     4496                        </CAD_INCIDENT_EVENT>            
     4497                </CAD_DATA>              
     4498                 
     4499                <CHP_RADIO RadioFile="19108.mp3"> 
     4500                        <DIALOG> 
     4501                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4502                                <LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>                                 
     4503                                <LINE Role="Field">Santa Lucia 17-14 request flat bed 11-85 for the RV. Fire  
     4504                                        department done within 15 minutes.</LINE> 
     4505                                <LINE Role="Dispatch">  17-14 Santa Lucia 10-4. Request flat bed 11-85, fire  
     4506                                                 department 98 in 15.</LINE> 
     4507                        </DIALOG> 
     4508                </CHP_RADIO> 
     4509        </SCRIPT_EVENT> 
     4510         
     4511         
     4512        <SCRIPT_EVENT> 
     4513                <TIME_INDEX>02:40:00</TIME_INDEX> 
     4514                <INCIDENT LogNum="189">Suicide Attempt/Bomb Threat</INCIDENT> 
     4515                 
     4516                <CMS_EVALUATION cmsID="86" type="remove">  
     4517                        <LOCATION>TBD</LOCATION> 
     4518                </CMS_EVALUATION>                
     4519                 
     4520                <CMS_EVALUATION cmsID="89" type="remove">  
     4521                        <LOCATION>SB 405 @ Von Karmen</LOCATION> 
     4522                </CMS_EVALUATION> 
     4523                 
     4524                <CMS_EVALUATION cmsID="88" type="remove">  
     4525                        <LOCATION>TBD</LOCATION> 
     4526                </CMS_EVALUATION>                
     4527                 
     4528                <CMS_EVALUATION cmsID="95" type="remove">  
     4529                        <LOCATION>NB 5 @ El Toro</LOCATION> 
     4530                </CMS_EVALUATION>                        
     4531 
     4532        </SCRIPT_EVENT> 
     4533         
     4534 
     4535        <SCRIPT_EVENT> 
     4536                <TIME_INDEX>02:41:00</TIME_INDEX> 
     4537                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4538                 
     4539                <CAD_DATA> 
     4540                        <CAD_INCIDENT_EVENT> 
     4541                                <DETAIL>1039 1185 ENRT, ETA 10</DETAIL> 
     4542                                <AUDIO Length = "18" Path = "191/19109.mp3" /> 
     4543                        </CAD_INCIDENT_EVENT>            
     4544                </CAD_DATA>              
     4545                 
     4546                <CHP_RADIO RadioFile="19109.mp3"> 
     4547                        <DIALOG> 
     4548                                <LINE Role="Dispatch">17-14 Santa Lucia information.</LINE>                              
     4549                                <LINE Role="Field">Santa Lucia 17-14 go ahead.</LINE>                            
     4550                                <LINE Role="Dispatch">17-14 Santa Lucia. 11-85 enroute, ETA 10.</LINE>                           
     4551                                <LINE Role="Field">Santa Lucia 17-14 copied 1 1-85 enroute with ETA of 10.</LINE> 
     4552                        </DIALOG> 
     4553                </CHP_RADIO> 
     4554                 
     4555                <TELEPHONE> 
     4556                        <INSTRUCTOR Role="Radio Reporter #7">Hello, this is Kim Williamson at KRST radio. 
     4557                        </INSTRUCTOR> 
     4558                        <INSTRUCTOR Role="Radio Reporter #7">I was just told about a RV fire on  
     4559                                                                                  73 , what details do you have on that? 
     4560                        </INSTRUCTOR> 
     4561                        <STUDENT>Gives incident details.</STUDENT> 
     4562                </TELEPHONE> 
     4563                 
     4564        </SCRIPT_EVENT> 
     4565 
     4566        <SCRIPT_EVENT> 
     4567                <TIME_INDEX>02:42:00</TIME_INDEX> 
     4568                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4569                 
     4570                <CAD_DATA> 
     4571                        <CAD_INCIDENT_EVENT> 
     4572                                <DETAIL>TANKER READY FOR TOW, FINISHING CLEANUP</DETAIL> 
     4573                                <AUDIO Length = "18" Path = "190/19016.mp3" /> 
     4574                        </CAD_INCIDENT_EVENT>            
     4575                </CAD_DATA>              
     4576                 
     4577                <CHP_RADIO RadioFile="19016.mp3"> 
     4578                        <DIALOG> 
     4579                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4580                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4581                                <LINE Role="Field">Santa Lucia 9-22. The tanker truck is ready to be towed.  
     4582                                        Finishing cleanup.</LINE>                                
     4583                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck ready to be towed,  
     4584                                                finishing cleanup.</LINE> 
     4585                        </DIALOG> 
     4586                </CHP_RADIO> 
     4587        </SCRIPT_EVENT> 
     4588 
     4589        <SCRIPT_EVENT> 
     4590                <TIME_INDEX>02:43:00</TIME_INDEX> 
     4591                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4592                 
     4593                <TMT_RADIO>Queue update</TMT_RADIO> 
     4594                 
     4595        </SCRIPT_EVENT> 
     4596 
     4597        <SCRIPT_EVENT> 
     4598                <TIME_INDEX>02:46:00</TIME_INDEX> 
     4599                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4600                 
     4601                <CAD_DATA> 
     4602                        <CAD_INCIDENT_EVENT> 
     4603                                <DETAIL>TANKER TOWED, RDWY CLR, OPENING LANES</DETAIL> 
     4604                                <AUDIO Length = "20" Path = "190/19017.mp3" /> 
     4605                                 
     4606                                <PARAMICS LocationID="190_N_5_ML"> 
     4607                                        <Status>CLEARED</Status>                                 
     4608                                </PARAMICS>                              
     4609                        </CAD_INCIDENT_EVENT>                                    
     4610                </CAD_DATA>              
     4611                 
     4612                <CHP_RADIO RadioFile="19017.mp3"> 
     4613                        <DIALOG> 
     4614                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4615                                <LINE Role="Dispatch">9-22 Santa Lucia go ahead.</LINE>                          
     4616                                <LINE Role="Field">Santa Lucia 9-22. The tanker truck has been towed, roadway  
     4617                                        is clear. We're opening all lanes.</LINE>                                
     4618                                <LINE Role="Dispatch">9-22 Santa Lucia 10-4. Tanker truck towed, roadway  
     4619                                                clear. Opening lanes.</LINE> 
     4620                        </DIALOG> 
     4621                </CHP_RADIO> 
     4622                 
     4623                <CMS_EVALUATION cmsID="93" type="update">  
     4624                        <LOCATION>NB 5 S/O Redhill</LOCATION> 
     4625                        <SAMPLE_MESSAGE> 
     4626                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
     4627                                <CMS_LINE>AT MAIN ST</CMS_LINE> 
     4628                        </SAMPLE_MESSAGE> 
     4629                </CMS_EVALUATION>                                        
     4630                <CMS_EVALUATION cmsID="94" type="update">  
     4631                        <LOCATION>NB 55 @ Dyer</LOCATION> 
     4632                        <SAMPLE_MESSAGE> 
     4633                                <CMS_LINE>ACCIDENT CLEARED</CMS_LINE> 
     4634                                <CMS_LINE>N-5 AT MAIN ST</CMS_LINE> 
     4635                        </SAMPLE_MESSAGE> 
     4636                </CMS_EVALUATION>                        
     4637                <ACTIVITY_LOG_EVALUATION> 
     4638                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     4639                </ACTIVITY_LOG_EVALUATION> 
     4640                 
     4641        </SCRIPT_EVENT> 
     4642 
     4643        <SCRIPT_EVENT> 
     4644                <TIME_INDEX>02:46:00</TIME_INDEX> 
     4645                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4646                 
     4647                <TELEPHONE> 
     4648                        <INSTRUCTOR Role="Radio Reporter #8">Hello, this is Tom Webb at KSON radio.</INSTRUCTOR> 
     4649                        <INSTRUCTOR Role="Radio Reporter #8">Do you have any incidents going on right now?</INSTRUCTOR> 
     4650                        <STUDENT>Notifies reporter of current incidents.</STUDENT> 
     4651                </TELEPHONE> 
     4652        </SCRIPT_EVENT> 
     4653 
     4654 
     4655        <SCRIPT_EVENT> 
     4656                <TIME_INDEX>02:48:00</TIME_INDEX> 
     4657                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4658                 
     4659                <CAD_DATA> 
     4660                        <CAD_INCIDENT_EVENT> 
     4661                                <DETAIL>1185 1097, INVESTIGATION NEARLY COMPLETE</DETAIL> 
     4662                                <TOW Company="Martins" ConfNum="(949)555-2031" PubNum="(949)555-9067" Beat=""/> 
     4663                                <AUDIO Length = "21" Path = "191/19111.mp3" /> 
     4664                        </CAD_INCIDENT_EVENT>            
     4665                </CAD_DATA>              
     4666                 
     4667                <CHP_RADIO RadioFile="19111.mp3"> 
     4668                        <DIALOG> 
     4669                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4670                                <LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>                              
     4671                                <LINE Role="Field">Santa Lucia 17-14 11-85 10-97. Fire department is nearly  
     4672                                        completed with their investigation.</LINE>                               
     4673                                <LINE Role="Dispatch">17-14 Santa Lucia 10-4. 11-85 10-97, investigation  
     4674                                                nearly completed.</LINE> 
     4675                        </DIALOG> 
     4676                </CHP_RADIO> 
     4677        </SCRIPT_EVENT> 
     4678 
     4679 
     4680        <SCRIPT_EVENT> 
     4681                <TIME_INDEX>02:49:00</TIME_INDEX> 
     4682                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>     
     4683                 
     4684                <CAD_DATA> 
     4685                        <CAD_INCIDENT_EVENT> 
     4686                                <DETAIL>LNS OPN, 9-22, 9-23, 9-26 10-98</DETAIL> 
     4687                                <UNIT UnitNum="9-22" Status="1098" Primary="true" Active="false"/> 
     4688                                <UNIT UnitNum="9-23" Status="1098" Primary="false" Active="false"/> 
     4689                                <UNIT UnitNum="9-26" Status="1098" Primary="false" Active="false"/> 
     4690                                <AUDIO Length = "21" Path = "190/19018.mp3" /> 
     4691                        </CAD_INCIDENT_EVENT>            
     4692                </CAD_DATA>      
     4693                 
     4694                <CHP_RADIO RadioFile="19018.mp3"> 
     4695                        <DIALOG> 
     4696                                <LINE Role="Field">Santa Lucia 9-22.</LINE>                              
     4697                                <LINE Role="Dispatch">9-22 go ahead to Santa Lucia.</LINE>                               
     4698                                <LINE Role="Field">Santa Lucia 9-22. The lanes are open, all units 10-98.</LINE>                                 
     4699                                <LINE Role="Dispatch">9-22 Santa Lucia copied lanes open, 9-22, 9-23, 9-26 10-98.</LINE> 
     4700                        </DIALOG> 
     4701                </CHP_RADIO> 
     4702        </SCRIPT_EVENT> 
     4703 
     4704        <SCRIPT_EVENT> 
     4705                <TIME_INDEX>02:51:00</TIME_INDEX> 
     4706                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4707                 
     4708                <CAD_DATA> 
     4709                        <CAD_INCIDENT_EVENT> 
     4710                                <DETAIL>FD INVESTIGATION COMPLETE, SPRAYING RS, FIRE CAUSED BY KITCHEN FIRE</DETAIL> 
     4711                                <AUDIO Length = "20" Path = "191/19112.mp3" /> 
     4712                        </CAD_INCIDENT_EVENT>            
     4713                </CAD_DATA>              
     4714                 
     4715                <CHP_RADIO RadioFile="19112.mp3"> 
     4716                        <DIALOG> 
     4717                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4718                                <LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>                              
     4719                                <LINE Role="Field">Santa Lucia 17-14. The fire department investigation  
     4720                                        complete.  Fire caused by a kitchen fire.</LINE> 
     4721                                <LINE Role="Dispatch">17-14 Santa Lucia copied fire department is 98. 
     4722                                  Fire caused by kitchen fire.</LINE> 
     4723                        </DIALOG> 
     4724                </CHP_RADIO> 
     4725                 
     4726                <TELEPHONE> 
     4727                        <INSTRUCTOR Role="Radio Reporter #9">Hello, this is Jordan Bradley at KTCR radio.</INSTRUCTOR> 
     4728                        <INSTRUCTOR Role="Radio Reporter #9">What is the traffic like on 73 around the RV fire?</INSTRUCTOR> 
     4729                        <STUDENT>Notifies reporter with current queue from ATMS.  One lane is closed.</STUDENT> 
     4730                        <INSTRUCTOR Role="Radio Reporter #9">When will the incident be cleared?</INSTRUCTOR> 
     4731                        <STUDENT>Inknown, a good answer around 15 minutes.</STUDENT> 
     4732                </TELEPHONE> 
     4733        </SCRIPT_EVENT> 
     4734 
     4735        <SCRIPT_EVENT> 
     4736                <TIME_INDEX>02:53:00</TIME_INDEX> 
     4737                <INCIDENT LogNum="191">RV Fire</INCIDENT>                
     4738                 
     4739                <TMT_RADIO>Queue update</TMT_RADIO> 
     4740        </SCRIPT_EVENT> 
     4741 
     4742        <SCRIPT_EVENT> 
     4743                <TIME_INDEX>02:53:00</TIME_INDEX> 
     4744                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT> 
     4745                 
     4746                <ATMS_EVALUATION> 
     4747                        <EXPECTED_ACTION>HAR should have been cleared</EXPECTED_ACTION> 
     4748                </ATMS_EVALUATION>               
     4749        </SCRIPT_EVENT> 
     4750 
     4751        <SCRIPT_EVENT> 
     4752                <TIME_INDEX>02:54:00</TIME_INDEX> 
     4753                <INCIDENT LogNum="191">RV Fire</INCIDENT>        
     4754                 
     4755                <CAD_DATA> 
     4756                        <CAD_INCIDENT_EVENT> 
     4757                                <DETAIL>RV READY FOR 1185, LN OPN IN 10</DETAIL> 
     4758                                <AUDIO Length = "21" Path = "191/19113.mp3" /> 
     4759                        </CAD_INCIDENT_EVENT>            
     4760                </CAD_DATA>      
     4761                <CHP_RADIO RadioFile="19113.mp3"> 
     4762                        <DIALOG> 
     4763                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4764                                <LINE Role="Dispatch">17-14 go ahead to Santa Lucia.</LINE>                              
     4765                                <LINE Role="Field">Santa Lucia 17-14. RV ready for 11-85. The lane will be open in 10.</LINE>                            
     4766                                <LINE Role="Dispatch">17-14 Santa Lucia 10-4. RV ready for 11-85, lane open in 10.</LINE> 
     4767                        </DIALOG> 
     4768                </CHP_RADIO> 
     4769                 
     4770                <TELEPHONE> 
     4771                        <INSTRUCTOR Role="Public">Hello, is Helen there?</INSTRUCTOR> 
     4772                        <STUDENT>Wrong number.</STUDENT> 
     4773                        <INSTRUCTOR Role="Public">Sorry. </INSTRUCTOR> 
     4774                </TELEPHONE> 
     4775        </SCRIPT_EVENT> 
     4776 
     4777        <SCRIPT_EVENT> 
     4778                <TIME_INDEX>02:55:00</TIME_INDEX> 
     4779                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>             
     4780                 
     4781                <TMT_RADIO>Queue update 10-98</TMT_RADIO> 
     4782 
     4783        </SCRIPT_EVENT> 
     4784 
     4785 
     4786        <SCRIPT_EVENT> 
     4787                <TIME_INDEX>02:58:00</TIME_INDEX> 
     4788                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4789                 
     4790                <CAD_DATA> 
     4791                        <CAD_INCIDENT_EVENT> 
     4792                                <DETAIL>RV TOWED, LANES OPEN IN 5</DETAIL> 
     4793                                <AUDIO Length = "17" Path = "191/19114.mp3" /> 
     4794                        </CAD_INCIDENT_EVENT>            
     4795                </CAD_DATA>              
     4796                 
     4797                <CHP_RADIO RadioFile="19114.mp3"> 
     4798                        <DIALOG> 
     4799                                <LINE Role="Field">Santa Lucia 17-14.</LINE>                             
     4800                                <LINE Role="Dispatch">17-14 Santa Lucia go ahead.</LINE>                                 
     4801                                <LINE Role="Field">Santa Lucia 17-14. RV towed, lane open in 5.</LINE>                           
     4802                                <LINE Role="Dispatch">17-14 Santa Lucia copied, RV towed, lane open in 5.</LINE> 
     4803                        </DIALOG> 
     4804                </CHP_RADIO> 
     4805        </SCRIPT_EVENT> 
     4806 
     4807        <SCRIPT_EVENT> 
     4808                <TIME_INDEX>02:59:00</TIME_INDEX> 
     4809                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4810 
     4811                 
     4812                <TELEPHONE> 
     4813                        <INSTRUCTOR Role="TV Reporter #10">Hello, this is Jim Sanso at KTAK radio.</INSTRUCTOR> 
     4814                        <INSTRUCTOR Role="TV Reporter #10">Has the RV been cleaned up yet at the fire on 73?</INSTRUCTOR> 
     4815                        <STUDENT>The RV was just towed, the lane will be open in 5 minutes.</STUDENT> 
     4816                        <INSTRUCTOR Role="TV Reporter #10">Do you have any other incidents going on right now?</INSTRUCTOR> 
     4817                        <STUDENT>Notifies reporter of current incidents.</STUDENT> 
     4818                </TELEPHONE> 
     4819                 
     4820        </SCRIPT_EVENT> 
     4821 
     4822        <SCRIPT_EVENT> 
     4823                <TIME_INDEX>03:00:00</TIME_INDEX> 
     4824                <INCIDENT LogNum="191">RV Fire</INCIDENT>                
     4825                 
     4826                <TMT_RADIO>Queue update</TMT_RADIO> 
     4827        </SCRIPT_EVENT> 
     4828 
     4829        <SCRIPT_EVENT> 
     4830                <TIME_INDEX>03:01:00</TIME_INDEX> 
     4831                <INCIDENT LogNum="191">RV Fire</INCIDENT> 
     4832                 
     4833                <CAD_DATA> 
     4834                        <CAD_INCIDENT_EVENT> 
     4835                                <DETAIL>17-14, 17-16 1098. LN OPN</DETAIL> 
     4836                                <UNIT UnitNum="17-14" Status="1098" Primary="true" Active="false"/> 
     4837                                <UNIT UnitNum="17-16" Status="1098" Primary="false" Active="false"/> 
     4838                                <AUDIO Length = "19" Path = "191/19115.mp3" /> 
     4839                                 
     4840                                <PARAMICS LocationID="191_S_73_ML"> 
     4841                                        <Status>CLEARED</Status>                         
     4842                                </PARAMICS>                                      
     4843                        </CAD_INCIDENT_EVENT>            
     4844                </CAD_DATA>              
     4845                 
     4846                <CHP_RADIO RadioFile="19115.mp3"> 
     4847                        <DIALOG> 
     4848                                <LINE Role="Field">Santa Lucia 17-16.</LINE> 
     4849                                <LINE Role="Dispatch">17-16 go ahead to Santa Lucia.</LINE> 
     4850                                <LINE Role="Field">Santa Lucia 17-16. #1 Lane is open. All units are 10-98.</LINE>                               
     4851                                <LINE Role="Dispatch">17-16 Santa Lucia 10-4. #1 lane open.   
     4852                                                17-14, 17-16 are 1098.</LINE>    
     4853                        </DIALOG>                        
     4854                </CHP_RADIO> 
     4855                 
     4856                <CMS_EVALUATION cmsID="86" type="remove">  
     4857                        <LOCATION>TBD</LOCATION> 
     4858                </CMS_EVALUATION>                        
     4859                <ACTIVITY_LOG_EVALUATION> 
     4860                        <EXPECTED_ACTION>Should fax and page information</EXPECTED_ACTION> 
     4861                </ACTIVITY_LOG_EVALUATION> 
     4862 
     4863        </SCRIPT_EVENT> 
     4864         
     4865        <SCRIPT_EVENT> 
     4866                <TIME_INDEX>03:00:00</TIME_INDEX> 
     4867                <INCIDENT LogNum="190">Tanker Truck vs. Car/Spill</INCIDENT>             
     4868                 
     4869                <CMS_EVALUATION cmsID="93" type="remove">  
     4870                        <LOCATION>NB 5 S/O Redhill</LOCATION> 
     4871                </CMS_EVALUATION>                                
     4872                 
     4873                <CMS_EVALUATION cmsID="94" type="remove">  
     4874                        <LOCATION>NB 55 @ Dyer</LOCATION> 
     4875                </CMS_EVALUATION>                
     4876                 
     4877        </SCRIPT_EVENT> 
     4878         
    3154879</TMC_SCRIPT> 
    3164880 
  • trunk/webapps/einotebook/cad/cad.js

    r359 r415  
    1515 
    1616/** 
    17  * Updates the CAD screen. 
     17 * Updates the current event tab. 
    1818 */ 
    1919function updateCad() 
     
    2121    // Set timer to do this again in one second 
    2222        setTimeout("updateCad()", 1000); 
    23  
    24         var currentEvent = events.getLastExecutedEvent(readCookie("time")); 
     23     
     24    var currentEvent = events.getLastExecutedEvent(readCookie("time")); 
     25    //console.log("length " + currentEvent.length); 
    2526    // Show current event to Current Event Window 
    2627    var currDiv = document.getElementById("cadpadcontent"); 
    27         currDiv.innerHTML = currentEvent.html(); 
     28    // empty holder for display current events  
     29    var display = ""; 
     30    var evt; 
     31     
     32    // get all the current events  
     33    for (evt=0; evt<currentEvent.length; evt++) { 
     34        display += currentEvent[evt].html(); 
     35    } 
    2836 
     37    currDiv.innerHTML = display; 
    2938} 
  • trunk/webapps/einotebook/notebook.js

    r373 r415  
    7373    if (updateStatus.lastEvent != latestEvent) 
    7474    { 
    75                 // IF the new event has evaluations THEN 
    76         if (latestEvent.evaluations.evaluations.length == 0) 
    77         { 
    78 //              document.getElementById('updateStatus').innerHTML = "New Event"; 
    79         } 
    80         else 
    81         { 
    82 //              document.getElementById('updateStatus').innerHTML = "New Evaluation"; 
    83         } 
     75      var i; 
     76      for (i=0; i<latestEvent.length; i++) { 
     77          // IF the new event has evaluations THEN 
     78        if (latestEvent[i].evaluations.evaluations.length == 0) 
     79        { 
     80  //                    document.getElementById('updateStatus').innerHTML = "New Event"; 
     81        } 
     82        else 
     83        { 
     84  //                    document.getElementById('updateStatus').innerHTML = "New Evaluation"; 
     85        } 
     86      } 
     87                 
    8488         
    8589                // fades the text 
  • trunk/webapps/einotebook/script/script.js

    r401 r415  
    1313function jumpToLastExecutedEvent() 
    1414{        
    15         var lastEvent = Script.events.getLastExecutedEvent(readCookie("time")); 
    16          
     15        var lastEventArray = Script.events.getLastExecutedEvent(readCookie("time")); 
     16 
    1717        // IF a current event exists THEN 
    18         if (lastEvent != null) 
    19         { 
    20                 lastEvent.focus(); 
     18        if (lastEventArray != null) 
     19        { 
     20        // Move window focus to first event of the current ones 
     21        var last = lastEventArray.length - 1; 
     22            lastEventArray[last].focus(); 
    2123        } 
    2224        else 
     
    3335function highlightLatestEvent()  
    3436{ 
    35         var currentEvent = Script.events.getLastExecutedEvent(readCookie("time")); 
     37        var currentEventArray = Script.events.getLastExecutedEvent(readCookie("time")); 
    3638 
    3739        // IF the old event is has not been set THEN 
    38         if (typeof highlightLatestEvent.oldEvent == 'undefined') 
    39         { 
    40                 highlightLatestEvent.oldEvent = new Object(); 
    41                 highlightLatestEvent.oldEvent.id = Event.invalidID; 
    42         } 
    43          
     40        if (typeof highlightLatestEvent.oldEventArray == 'undefined') 
     41        { 
     42                highlightLatestEvent.oldEventArray = []; /* set up array of old events */ 
     43                var currentEvent = new Object();  
     44                highlightLatestEvent.oldEventArray.push(currentEvent); 
     45                highlightLatestEvent.oldEventArray[0].id = Event.invalidID; 
     46        } 
     47 
    4448        // IF a current event exists THEN 
    45         if (currentEvent != null) 
    46         { 
    47                 // IF there is a new current event THEN 
    48                 if (highlightLatestEvent.oldEvent.id != currentEvent.id) 
    49                 { 
    50                         currentEvent.highlight(); 
    51                          
    52                         // IF there was previously a current event THEN 
    53                         if (highlightLatestEvent.oldEvent.id != Event.invalidID && currentEvent.id != 0) 
    54                         { 
    55                                 highlightLatestEvent.oldEvent.unhighlight(); 
     49        if (currentEventArray !== null) 
     50        { 
     51                var found = false; /* check if a current event is found in the old event array */ 
     52 
     53                /* traverse the array of current event to check  
     54                if there is event already in the old event array */ 
     55                // IF there is a new current event THEN  
     56                for (j=0; j<highlightLatestEvent.oldEventArray.length; j++) { 
     57                        var oldEvent = highlightLatestEvent.oldEventArray[j]; 
     58                        found = false; 
     59                        for (i=0; i<currentEventArray.length; i++) { 
     60                                var currentEvent = currentEventArray[i]; 
     61                                if (oldEvent.id === currentEvent.id) 
     62                                { 
     63                                        found = true;    
     64                                        break;           
     65                                }  
    5666                        } 
    57                          
    58                         highlightLatestEvent.oldEvent = currentEvent;                    
     67                        /* unhighlight all the events that are no longer current */ 
     68                        if (!found && oldEvent.id !== Event.invalidID) { 
     69                                oldEvent.unhighlight(); 
     70                        }                
    5971                } 
     72 
     73                /* highlight the current event in the array */ 
     74                for (i=0; i<currentEventArray.length; i++) { 
     75                        currentEventArray[i].highlight(); 
     76                } 
     77 
     78                /* update the old events array with current event array */ 
     79                highlightLatestEvent.oldEventArray = currentEventArray; 
    6080        } 
    6181 
    6282    // Set timer to do this again in one second 
    6383        setTimeout("highlightLatestEvent()", 1000); 
    64 } 
    65  
    66  
    67 /** Change color of text of expired events so they appear disabled. 
    68   * @param events The list of events 
    69   * @param currEvent The current event 
    70   */ 
    71 function greyOldEvents(events, currEvent) 
    72 { 
    73           // Examine all events 
    74    for (var evtNum = 0; evtNum < events.length; evtNum++) 
    75    { 
    76                 // Change color of those before current time and Event 
    77       if (events[evtNum].time.compareTo(currEvent.time) < 0 && currEvent.id != events[evtNum].id)  
    78       { 
    79                         events[evtNum].unhighlight(); 
    80       } 
    81         } 
    8284} 
    8385 
     
    101103                // add the Event's html 
    102104                html += Script.events[i].html(); 
    103         } 
    104         
     105        //console.log(Script.events[i].html()); 
     106        } 
    105107         
    106108        // display events in iframe 
     
    115117        Script.events.win.scrollTo(0, readCookie('scriptScrollY')); 
    116118         
    117         greyOldEvents(Script.events, Script.events.getLastExecutedEvent(readCookie("time"))); 
    118119        highlightLatestEvent(); 
    119120 
  • trunk/webapps/einotebook/scripts/Events.js

    r363 r415  
    304304 * Finds the Event that was last executed by based on given time. 
    305305 * @param time The time in seconds. 
    306  * @return The last execute event if at least one event has executed; otherwise, null. 
     306 * @return The array of last execute event if at least one event has executed; otherwise, null. 
    307307 */ 
    308308function events_getLastExecutedEvent(time) 
    309309{ 
    310         var event = null; 
     310        // var event = null; 
     311        var event_arr = []; 
    311312        if (this.length == 0) 
    312313    { 
     
    317318        if (this.length == 1 && this[0].time.getSeconds() <= time) 
    318319        { 
    319                 event = this[0]; 
     320                event.push(this[0]); 
    320321        } 
    321322        else 
     
    323324                //NOTE: remember that the events are maintained in ascending order by time 
    324325                 
    325                 // FOR each Event 
     326                // FOR each Event  
    326327                for (var i = 0; i < this.length - 1; i++) 
    327328                { 
     
    330331                            this[i + 1].time.getSeconds() > time) 
    331332                        { 
    332                                 event = this[i]; 
     333                                event_arr.push(this[i]); 
     334                                /* traverse backward to check if there is an event happen at the same time  
     335                                with the current event */ 
     336                                var k = i - 1; 
     337                                while ( k>=0 && (this[k].time.getSeconds() == this[i].time.getSeconds())) { 
     338                                        event_arr.push(this[k]); 
     339                                        k--; 
     340                                } 
    333341                        } 
    334342                } 
     
    337345                if (this[this.length - 1].time.getSeconds() <= time) 
    338346                { 
    339                         event = this[this.length - 1]; 
     347                        event_arr.push(this[this.length - 1]); 
    340348                }        
    341349        } 
    342350         
    343         return event; 
    344 } 
    345  
     351        // return an array of event  
     352        return event_arr; 
     353} 
     354 
Note: See TracChangeset for help on using the changeset viewer.