Skip to content

Instantly share code, notes, and snippets.

@ajzeigert
Created October 25, 2015 18:41
Show Gist options
  • Select an option

  • Save ajzeigert/a61626a6ff19aa4e43fd to your computer and use it in GitHub Desktop.

Select an option

Save ajzeigert/a61626a6ff19aa4e43fd to your computer and use it in GitHub Desktop.
Basic example of loading geojson using leaflet
<!DOCTYPE html>
<html>
<head>
<title>Pipeline test</title>
<meta charset="UTF-8">
<meta name="description" content="" />
<meta name="keywords" content="" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<link rel="stylesheet" href="leaflet.css" />
<script src="leaflet.js"></script>
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>
<style>
#map {
width: 960px;
height: 500px;
}
/*
svg {
position: relative;
}
*/
.pipes {
stroke-width: 2;
fill: none;
stroke-linejoin: "round";
}
.hp {
stroke: #f03b20;
}
.t {
stroke: #d9b410;
}
.streets {
stroke-width: 1;
stroke: #cbcbca;
stroke-linejoin: "round";
}
/*
.pipes:hover {
stroke: #d98410;
}
*/
</style>
</head>
<body>
<div id="map"></div>
<script>
var undermap = new L.tileLayer("http://tile.stamen.com/toner-lite/{z}/{x}/{y}.png");
var map = new L.Map("map", { center: [34.05, -118.25], zoom: 10 })
.addLayer(undermap);
// Load
var hp_pipes = [];
$.ajax({
method: "GET",
url: "pipeline_hp.json",
dataType: "json",
success: function(data){
hp_pipes = L.geoJson(data, {
style: function (feature) {
return {color: "#f03b20"};
}
// onEachFeature: function (feature, layer) {
// layer.bindPopup(feature.properties.description);
// }
}).addTo(map);
}
});
var t_pipes = [];
$.ajax({
method: "GET",
url: "pipeline_t.json",
dataType: "json",
success: function(data){
t_pipes = L.geoJson(data, {
style: function (feature) {
return {color: "#d9b410"};
}
// onEachFeature: function (feature, layer) {
// layer.bindPopup(feature.properties.description);
// }
}).addTo(map);
}
});
// var svg = d3.select(map.getPanes().overlayPane).append("svg"),
// g = svg.append("g").attr("class", "leaflet-zoom-hide");
// d3.json("pipeline_hp.json", function(error, collection) {
// if (error) throw error;
//
// var transform = d3.geo.transform({point: projectPoint}),
// path = d3.geo.path().projection(transform);
//
// var feature = g.selectAll("path")
// .data(collection.features)
// .enter().append("path")
// .attr("class", "pipes hp")
//
//// map.on("viewreset", reset);
//// reset();
//
// // Reposition the SVG to cover the features
//// function reset() {
//// var bounds = path.bounds(collection),
//// topLeft = bounds[0],
//// bottomRight = bounds[1];
////
//// svg.attr("width", bottomRight[0] - topLeft[0])
//// .attr("height", bottomRight[1] - topLeft[0])
//// .style("left", topLeft[0] + "px")
//// .style("top", topLeft[1] + "px");
////
//// g.attr("transform", "translate(" + -topLeft[0] + "," + -topLeft[1] + ")");
////
//// feature.attr("d", path);
//// }
////
//// function projectPoint(x, y){
//// var point = map.latLngToLayerPoint(new L.LatLng(y, x));
//// this.stream.point(point.x, point.y);
//// }
//
// })
//
// var width = 800,
// height = 600;
//
// var svg = d3.select("body")
// .append("svg")
// .attr("width", width)
// .attr("height", height);
//
// var projection = d3.geo.mercator()
//// .rotate();
//
// var path = d3.geo.path()
// .projection(projection);
//
// // Load high-pressure pipeline
// d3.json("pipeline_hp.json", function(error, data){
// if (error) throw error;
//
// projection
// .scale(1)
// .translate([0,0]);
//
// var b = path.bounds(data),
// s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
// t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
//
// projection
// .scale(s)
// .translate(t);
//
// svg.append("path")
// .datum(data)
// .attr("class", "pipes hp")
// .attr("d", path);
//
//
// // Load transmission pipeline
// d3.json("pipeline_t.json", function(error, data2){
// if (error) throw error;
//
// svg.append("path")
// .datum(data2)
// .attr("class", "pipes t")
// .attr("d", path);
//
// });
//
// });
</script>
</body>
</html>
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-map-pane svg,
.leaflet-map-pane canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
width: 1600px;
height: 1600px;
-webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
max-width: none !important;
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-pane { z-index: 400; }
.leaflet-tile-pane { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane { z-index: 500; }
.leaflet-marker-pane { z-index: 600; }
.leaflet-popup-pane { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg { z-index: 200; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
}
/* control positioning */
.leaflet-control {
position: relative;
z-index: 800;
pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
position: absolute;
z-index: 1000;
pointer-events: none;
}
.leaflet-top {
top: 0;
}
.leaflet-right {
right: 0;
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
}
.leaflet-control {
float: left;
clear: both;
}
.leaflet-right .leaflet-control {
float: right;
}
.leaflet-top .leaflet-control {
margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
margin-left: 10px;
}
.leaflet-right .leaflet-control {
margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-animated {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
}
/* cursors */
.leaflet-interactive {
cursor: pointer;
}
.leaflet-grab {
cursor: -webkit-grab;
cursor: -moz-grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
}
/* visual tweaks */
.leaflet-container {
background: #ddd;
outline: 0;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-container a.leaflet-active {
outline: 2px solid orange;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
}
/* general typography */
.leaflet-container {
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
}
.leaflet-bar a:hover {
background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}
.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-control-zoom-out {
font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
font-size: 24px;
}
/* layers control */
.leaflet-control-layers {
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
background: #fff;
border-radius: 5px;
}
.leaflet-control-layers-toggle {
background-image: url(images/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(images/layers-2x.png);
background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}
.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
color: #333;
background: #fff;
}
.leaflet-control-layers-scrollbar {
overflow-y: scroll;
padding-right: 5px;
}
.leaflet-control-layers-selector {
margin-top: 2px;
position: relative;
top: 1px;
}
.leaflet-control-layers label {
display: block;
}
.leaflet-control-layers-separator {
height: 0;
border-top: 1px solid #ddd;
margin: 5px -10px 5px -6px;
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
background: #fff;
background: rgba(255, 255, 255, 0.7);
margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
}
.leaflet-control-attribution a {
text-decoration: none;
}
.leaflet-control-attribution a:hover {
text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}
.leaflet-control-scale-line {
border: 2px solid #777;
border-top: none;
line-height: 1.1;
padding: 2px 5px 1px;
font-size: 11px;
white-space: nowrap;
overflow: hidden;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: #fff;
background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
border-top: 2px solid #777;
border-bottom: none;
margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0,0,0,0.2);
background-clip: padding-box;
}
/* popup */
.leaflet-popup {
position: absolute;
text-align: center;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 19px;
line-height: 1.4;
}
.leaflet-popup-content p {
margin: 18px 0;
}
.leaflet-popup-tip-container {
margin: 0 auto;
width: 40px;
height: 20px;
position: relative;
overflow: hidden;
}
.leaflet-popup-tip {
width: 17px;
height: 17px;
padding: 1px;
margin: -10px auto 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
color: #333;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
padding: 4px 4px 0 0;
border: none;
text-align: center;
width: 18px;
height: 14px;
font: 16px/14px Tahoma, Verdana, sans-serif;
color: #c3c3c3;
text-decoration: none;
font-weight: bold;
background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
color: #999;
}
.leaflet-popup-scrolled {
overflow: auto;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}
/*
Leaflet 1.0.0-beta.2 (954e83d), a JS library for interactive maps. http://leafletjs.com
(c) 2010-2015 Vladimir Agafonkin, (c) 2010-2011 CloudMade
*/
!function(t,e,i){function n(){var e=t.L;o.noConflict=function(){return t.L=e,this},t.L=o}var o={version:"1.0.0-beta.2"};"object"==typeof module&&"object"==typeof module.exports?module.exports=o:"function"==typeof define&&define.amd&&define(o),"undefined"!=typeof t&&n(),o.Util={extend:function(t){var e,i,n,o;for(i=1,n=arguments.length;n>i;i++){o=arguments[i];for(e in o)t[e]=o[e]}return t},create:Object.create||function(){function t(){}return function(e){return t.prototype=e,new t}}(),bind:function(t,e){var i=Array.prototype.slice;if(t.bind)return t.bind.apply(t,i.call(arguments,1));var n=i.call(arguments,2);return function(){return t.apply(e,n.length?n.concat(i.call(arguments)):arguments)}},stamp:function(t){return t._leaflet_id=t._leaflet_id||++o.Util.lastId,t._leaflet_id},lastId:0,throttle:function(t,e,i){var n,o,s,r;return r=function(){n=!1,o&&(s.apply(i,o),o=!1)},s=function(){n?o=arguments:(t.apply(i,arguments),setTimeout(r,e),n=!0)}},wrapNum:function(t,e,i){var n=e[1],o=e[0],s=n-o;return t===n&&i?t:((t-o)%s+s)%s+o},falseFn:function(){return!1},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},splitWords:function(t){return o.Util.trim(t).split(/\s+/)},setOptions:function(t,e){t.hasOwnProperty("options")||(t.options=t.options?o.Util.create(t.options):{});for(var i in e)t.options[i]=e[i];return t.options},getParamString:function(t,e,i){var n=[];for(var o in t)n.push(encodeURIComponent(i?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(e&&-1!==e.indexOf("?")?"&":"?")+n.join("&")},template:function(t,e){return t.replace(o.Util.templateRe,function(t,n){var o=e[n];if(o===i)throw new Error("No value provided for variable "+t);return"function"==typeof o&&(o=o(e)),o})},templateRe:/\{ *([\w_]+) *\}/g,isArray:Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},indexOf:function(t,e){for(var i=0;i<t.length;i++)if(t[i]===e)return i;return-1},emptyImageUrl:"data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="},function(){function e(e){return t["webkit"+e]||t["moz"+e]||t["ms"+e]}function i(e){var i=+new Date,o=Math.max(0,16-(i-n));return n=i+o,t.setTimeout(e,o)}var n=0,s=t.requestAnimationFrame||e("RequestAnimationFrame")||i,r=t.cancelAnimationFrame||e("CancelAnimationFrame")||e("CancelRequestAnimationFrame")||function(e){t.clearTimeout(e)};o.Util.requestAnimFrame=function(e,n,r){return r&&s===i?void e.call(n):s.call(t,o.bind(e,n))},o.Util.cancelAnimFrame=function(e){e&&r.call(t,e)}}(),o.extend=o.Util.extend,o.bind=o.Util.bind,o.stamp=o.Util.stamp,o.setOptions=o.Util.setOptions,o.Class=function(){},o.Class.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this.callInitHooks()},i=e.__super__=this.prototype,n=o.Util.create(i);n.constructor=e,e.prototype=n;for(var s in this)this.hasOwnProperty(s)&&"prototype"!==s&&(e[s]=this[s]);return t.statics&&(o.extend(e,t.statics),delete t.statics),t.includes&&(o.Util.extend.apply(null,[n].concat(t.includes)),delete t.includes),n.options&&(t.options=o.Util.extend(o.Util.create(n.options),t.options)),o.extend(n,t),n._initHooks=[],n.callInitHooks=function(){if(!this._initHooksCalled){i.callInitHooks&&i.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,e=n._initHooks.length;e>t;t++)n._initHooks[t].call(this)}},e},o.Class.include=function(t){o.extend(this.prototype,t)},o.Class.mergeOptions=function(t){o.extend(this.prototype.options,t)},o.Class.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i="function"==typeof t?t:function(){this[t].apply(this,e)};this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i)},o.Evented=o.Class.extend({on:function(t,e,i){if("object"==typeof t)for(var n in t)this._on(n,t[n],e);else{t=o.Util.splitWords(t);for(var s=0,r=t.length;r>s;s++)this._on(t[s],e,i)}return this},off:function(t,e,i){if(t)if("object"==typeof t)for(var n in t)this._off(n,t[n],e);else{t=o.Util.splitWords(t);for(var s=0,r=t.length;r>s;s++)this._off(t[s],e,i)}else delete this._events;return this},_on:function(t,e,i){var n=this._events=this._events||{},s=i&&i!==this&&o.stamp(i);if(s){var r=t+"_idx",a=t+"_len",h=n[r]=n[r]||{},l=o.stamp(e)+"_"+s;h[l]||(h[l]={fn:e,ctx:i},n[a]=(n[a]||0)+1)}else n[t]=n[t]||[],n[t].push({fn:e})},_off:function(t,e,i){var n=this._events,s=t+"_idx",r=t+"_len";if(n){if(!e)return delete n[t],delete n[s],void delete n[r];var a,h,l,u,c,d=i&&i!==this&&o.stamp(i);if(d)c=o.stamp(e)+"_"+d,a=n[s],a&&a[c]&&(u=a[c],delete a[c],n[r]--);else if(a=n[t])for(h=0,l=a.length;l>h;h++)if(a[h].fn===e){u=a[h],a.splice(h,1);break}u&&(u.fn=o.Util.falseFn)}},fire:function(t,e,i){if(!this.listens(t,i))return this;var n=o.Util.extend({},e,{type:t,target:this}),s=this._events;if(s){var r,a,h,l,u=s[t+"_idx"];if(s[t])for(h=s[t].slice(),r=0,a=h.length;a>r;r++)h[r].fn.call(this,n);for(l in u)u[l].fn.call(u[l].ctx,n)}return i&&this._propagateEvent(n),this},listens:function(t,e){var i=this._events;if(i&&(i[t]||i[t+"_len"]))return!0;if(e)for(var n in this._eventParents)if(this._eventParents[n].listens(t,e))return!0;return!1},once:function(t,e,i){if("object"==typeof t){for(var n in t)this.once(n,t[n],e);return this}var s=o.bind(function(){this.off(t,e,i).off(t,s,i)},this);return this.on(t,e,i).on(t,s,i)},addEventParent:function(t){return this._eventParents=this._eventParents||{},this._eventParents[o.stamp(t)]=t,this},removeEventParent:function(t){return this._eventParents&&delete this._eventParents[o.stamp(t)],this},_propagateEvent:function(t){for(var e in this._eventParents)this._eventParents[e].fire(t.type,o.extend({layer:t.target},t),!0)}});var s=o.Evented.prototype;s.addEventListener=s.on,s.removeEventListener=s.clearAllEventListeners=s.off,s.addOneTimeEventListener=s.once,s.fireEvent=s.fire,s.hasEventListeners=s.listens,o.Mixin={Events:s},function(){var i=navigator.userAgent.toLowerCase(),n=e.documentElement,s="ActiveXObject"in t,r=-1!==i.indexOf("webkit"),a=-1!==i.indexOf("phantom"),h=-1!==i.search("android [23]"),l=-1!==i.indexOf("chrome"),u=-1!==i.indexOf("gecko")&&!r&&!t.opera&&!s,c="undefined"!=typeof orientation||-1!==i.indexOf("mobile"),d=!t.PointerEvent&&t.MSPointerEvent,_=t.PointerEvent&&navigator.pointerEnabled||d,m=s&&"transition"in n.style,p="WebKitCSSMatrix"in t&&"m11"in new t.WebKitCSSMatrix&&!h,f="MozPerspective"in n.style,g="OTransition"in n.style,v=!t.L_NO_TOUCH&&!a&&(_||"ontouchstart"in t||t.DocumentTouch&&e instanceof t.DocumentTouch);o.Browser={ie:s,ielt9:s&&!e.addEventListener,webkit:r,gecko:u,android:-1!==i.indexOf("android"),android23:h,chrome:l,safari:!l&&-1!==i.indexOf("safari"),ie3d:m,webkit3d:p,gecko3d:f,opera12:g,any3d:!t.L_DISABLE_3D&&(m||p||f)&&!g&&!a,mobile:c,mobileWebkit:c&&r,mobileWebkit3d:c&&p,mobileOpera:c&&t.opera,mobileGecko:c&&u,touch:!!v,msPointer:!!d,pointer:!!_,retina:(t.devicePixelRatio||t.screen.deviceXDPI/t.screen.logicalXDPI)>1}}(),o.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},o.Point.prototype={clone:function(){return new o.Point(this.x,this.y)},add:function(t){return this.clone()._add(o.point(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(o.point(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new o.Point(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new o.Point(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},distanceTo:function(t){t=o.point(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=o.point(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=o.point(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+o.Util.formatNum(this.x)+", "+o.Util.formatNum(this.y)+")"}},o.point=function(t,e,n){return t instanceof o.Point?t:o.Util.isArray(t)?new o.Point(t[0],t[1]):t===i||null===t?t:new o.Point(t,e,n)},o.Bounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.Bounds.prototype={extend:function(t){return t=o.point(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new o.Point((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new o.Point(this.min.x,this.max.y)},getTopRight:function(){return new o.Point(this.max.x,this.min.y)},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return t="number"==typeof t[0]||t instanceof o.Point?o.point(t):o.bounds(t),t instanceof o.Bounds?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,r=s.x>=e.x&&n.x<=i.x,a=s.y>=e.y&&n.y<=i.y;return r&&a},overlaps:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,r=s.x>e.x&&n.x<i.x,a=s.y>e.y&&n.y<i.y;return r&&a},isValid:function(){return!(!this.min||!this.max)}},o.bounds=function(t,e){return!t||t instanceof o.Bounds?t:new o.Bounds(t,e)},o.Transformation=function(t,e,i,n){this._a=t,this._b=e,this._c=i,this._d=n},o.Transformation.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return e=e||1,t.x=e*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return e=e||1,new o.Point((t.x/e-this._b)/this._a,(t.y/e-this._d)/this._c)}},o.DomUtil={get:function(t){return"string"==typeof t?e.getElementById(t):t},getStyle:function(t,i){var n=t.style[i]||t.currentStyle&&t.currentStyle[i];if((!n||"auto"===n)&&e.defaultView){var o=e.defaultView.getComputedStyle(t,null);n=o?o[i]:null}return"auto"===n?null:n},create:function(t,i,n){var o=e.createElement(t);return o.className=i,n&&n.appendChild(o),o},remove:function(t){var e=t.parentNode;e&&e.removeChild(t)},empty:function(t){for(;t.firstChild;)t.removeChild(t.firstChild)},toFront:function(t){t.parentNode.appendChild(t)},toBack:function(t){var e=t.parentNode;e.insertBefore(t,e.firstChild)},hasClass:function(t,e){if(t.classList!==i)return t.classList.contains(e);var n=o.DomUtil.getClass(t);return n.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(n)},addClass:function(t,e){if(t.classList!==i)for(var n=o.Util.splitWords(e),s=0,r=n.length;r>s;s++)t.classList.add(n[s]);else if(!o.DomUtil.hasClass(t,e)){var a=o.DomUtil.getClass(t);o.DomUtil.setClass(t,(a?a+" ":"")+e)}},removeClass:function(t,e){t.classList!==i?t.classList.remove(e):o.DomUtil.setClass(t,o.Util.trim((" "+o.DomUtil.getClass(t)+" ").replace(" "+e+" "," ")))},setClass:function(t,e){t.className.baseVal===i?t.className=e:t.className.baseVal=e},getClass:function(t){return t.className.baseVal===i?t.className:t.className.baseVal},setOpacity:function(t,e){"opacity"in t.style?t.style.opacity=e:"filter"in t.style&&o.DomUtil._setOpacityIE(t,e)},_setOpacityIE:function(t,e){var i=!1,n="DXImageTransform.Microsoft.Alpha";try{i=t.filters.item(n)}catch(o){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=" progid:"+n+"(opacity="+e+")"},testProp:function(t){for(var i=e.documentElement.style,n=0;n<t.length;n++)if(t[n]in i)return t[n];return!1},setTransform:function(t,e,i){var n=e||new o.Point(0,0);t.style[o.DomUtil.TRANSFORM]=(o.Browser.ie3d?"translate("+n.x+"px,"+n.y+"px)":"translate3d("+n.x+"px,"+n.y+"px,0)")+(i?" scale("+i+")":"")},setPosition:function(t,e){t._leaflet_pos=e,o.Browser.any3d?o.DomUtil.setTransform(t,e):(t.style.left=e.x+"px",t.style.top=e.y+"px")},getPosition:function(t){return t._leaflet_pos}},function(){o.DomUtil.TRANSFORM=o.DomUtil.testProp(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]);var i=o.DomUtil.TRANSITION=o.DomUtil.testProp(["webkitTransition","transition","OTransition","MozTransition","msTransition"]);if(o.DomUtil.TRANSITION_END="webkitTransition"===i||"OTransition"===i?i+"End":"transitionend","onselectstart"in e)o.DomUtil.disableTextSelection=function(){o.DomEvent.on(t,"selectstart",o.DomEvent.preventDefault)},o.DomUtil.enableTextSelection=function(){o.DomEvent.off(t,"selectstart",o.DomEvent.preventDefault)};else{var n=o.DomUtil.testProp(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]);o.DomUtil.disableTextSelection=function(){if(n){var t=e.documentElement.style;this._userSelect=t[n],t[n]="none"}},o.DomUtil.enableTextSelection=function(){n&&(e.documentElement.style[n]=this._userSelect,delete this._userSelect)}}o.DomUtil.disableImageDrag=function(){o.DomEvent.on(t,"dragstart",o.DomEvent.preventDefault)},o.DomUtil.enableImageDrag=function(){o.DomEvent.off(t,"dragstart",o.DomEvent.preventDefault)},o.DomUtil.preventOutline=function(e){for(;-1===e.tabIndex;)e=e.parentNode;e&&e.style&&(o.DomUtil.restoreOutline(),this._outlineElement=e,this._outlineStyle=e.style.outline,e.style.outline="none",o.DomEvent.on(t,"keydown",o.DomUtil.restoreOutline,this))},o.DomUtil.restoreOutline=function(){this._outlineElement&&(this._outlineElement.style.outline=this._outlineStyle,delete this._outlineElement,delete this._outlineStyle,o.DomEvent.off(t,"keydown",o.DomUtil.restoreOutline,this))}}(),o.LatLng=function(t,e,n){if(isNaN(t)||isNaN(e))throw new Error("Invalid LatLng object: ("+t+", "+e+")");this.lat=+t,this.lng=+e,n!==i&&(this.alt=+n)},o.LatLng.prototype={equals:function(t,e){if(!t)return!1;t=o.latLng(t);var n=Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng));return(e===i?1e-9:e)>=n},toString:function(t){return"LatLng("+o.Util.formatNum(this.lat,t)+", "+o.Util.formatNum(this.lng,t)+")"},distanceTo:function(t){return o.CRS.Earth.distance(this,o.latLng(t))},wrap:function(){return o.CRS.Earth.wrapLatLng(this)},toBounds:function(t){var e=180*t/40075017,i=e/Math.cos(Math.PI/180*this.lat);return o.latLngBounds([this.lat-e,this.lng-i],[this.lat+e,this.lng+i])},clone:function(){return new o.LatLng(this.lat,this.lng,this.alt)}},o.latLng=function(t,e,n){return t instanceof o.LatLng?t:o.Util.isArray(t)&&"object"!=typeof t[0]?3===t.length?new o.LatLng(t[0],t[1],t[2]):2===t.length?new o.LatLng(t[0],t[1]):null:t===i||null===t?t:"object"==typeof t&&"lat"in t?new o.LatLng(t.lat,"lng"in t?t.lng:t.lon,t.alt):e===i?null:new o.LatLng(t,e,n)},o.LatLngBounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.LatLngBounds.prototype={extend:function(t){var e,i,n=this._southWest,s=this._northEast;if(t instanceof o.LatLng)e=t,i=t;else{if(!(t instanceof o.LatLngBounds))return t?this.extend(o.latLng(t)||o.latLngBounds(t)):this;if(e=t._southWest,i=t._northEast,!e||!i)return this}return n||s?(n.lat=Math.min(e.lat,n.lat),n.lng=Math.min(e.lng,n.lng),s.lat=Math.max(i.lat,s.lat),s.lng=Math.max(i.lng,s.lng)):(this._southWest=new o.LatLng(e.lat,e.lng),this._northEast=new o.LatLng(i.lat,i.lng)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,s=Math.abs(e.lng-i.lng)*t;return new o.LatLngBounds(new o.LatLng(e.lat-n,e.lng-s),new o.LatLng(i.lat+n,i.lng+s))},getCenter:function(){return new o.LatLng((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new o.LatLng(this.getNorth(),this.getWest())},getSouthEast:function(){return new o.LatLng(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof o.LatLng?o.latLng(t):o.latLngBounds(t);var e,i,n=this._southWest,s=this._northEast;return t instanceof o.LatLngBounds?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=s.lat&&e.lng>=n.lng&&i.lng<=s.lng},intersects:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),r=s.lat>=e.lat&&n.lat<=i.lat,a=s.lng>=e.lng&&n.lng<=i.lng;return r&&a},overlaps:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),r=s.lat>e.lat&&n.lat<i.lat,a=s.lng>e.lng&&n.lng<i.lng;return r&&a},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t){return t?(t=o.latLngBounds(t),this._southWest.equals(t.getSouthWest())&&this._northEast.equals(t.getNorthEast())):!1},isValid:function(){return!(!this._southWest||!this._northEast)}},o.latLngBounds=function(t,e){return!t||t instanceof o.LatLngBounds?t:new o.LatLngBounds(t,e)},o.Projection={},o.Projection.LonLat={project:function(t){return new o.Point(t.lng,t.lat)},unproject:function(t){return new o.LatLng(t.y,t.x)},bounds:o.bounds([-180,-90],[180,90])},o.Projection.SphericalMercator={R:6378137,MAX_LATITUDE:85.0511287798,project:function(t){var e=Math.PI/180,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=Math.sin(n*e);return new o.Point(this.R*t.lng*e,this.R*Math.log((1+s)/(1-s))/2)},unproject:function(t){var e=180/Math.PI;return new o.LatLng((2*Math.atan(Math.exp(t.y/this.R))-Math.PI/2)*e,t.x*e/this.R)},bounds:function(){var t=6378137*Math.PI;return o.bounds([-t,-t],[t,t])}()},o.CRS={latLngToPoint:function(t,e){var i=this.projection.project(t),n=this.scale(e);return this.transformation._transform(i,n)},pointToLatLng:function(t,e){var i=this.scale(e),n=this.transformation.untransform(t,i);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},unproject:function(t){return this.projection.unproject(t)},scale:function(t){return 256*Math.pow(2,t)},zoom:function(t){return Math.log(t/256)/Math.LN2},getProjectedBounds:function(t){if(this.infinite)return null;var e=this.projection.bounds,i=this.scale(t),n=this.transformation.transform(e.min,i),s=this.transformation.transform(e.max,i);return o.bounds(n,s)},wrapLatLng:function(t){var e=this.wrapLng?o.Util.wrapNum(t.lng,this.wrapLng,!0):t.lng,i=this.wrapLat?o.Util.wrapNum(t.lat,this.wrapLat,!0):t.lat,n=t.alt;return o.latLng(i,e,n)}},o.CRS.Simple=o.extend({},o.CRS,{projection:o.Projection.LonLat,transformation:new o.Transformation(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,e){var i=e.lng-t.lng,n=e.lat-t.lat;return Math.sqrt(i*i+n*n)},infinite:!0}),o.CRS.Earth=o.extend({},o.CRS,{wrapLng:[-180,180],R:6378137,distance:function(t,e){var i=Math.PI/180,n=t.lat*i,o=e.lat*i,s=Math.sin(n)*Math.sin(o)+Math.cos(n)*Math.cos(o)*Math.cos((e.lng-t.lng)*i);return this.R*Math.acos(Math.min(s,1))}}),o.CRS.EPSG3857=o.extend({},o.CRS.Earth,{code:"EPSG:3857",projection:o.Projection.SphericalMercator,transformation:function(){var t=.5/(Math.PI*o.Projection.SphericalMercator.R);return new o.Transformation(t,.5,-t,.5)}()}),o.CRS.EPSG900913=o.extend({},o.CRS.EPSG3857,{code:"EPSG:900913"}),o.CRS.EPSG4326=o.extend({},o.CRS.Earth,{code:"EPSG:4326",projection:o.Projection.LonLat,transformation:new o.Transformation(1/180,1,-1/180,.5)}),o.Map=o.Evented.extend({options:{crs:o.CRS.EPSG3857,fadeAnimation:!0,trackResize:!0,markerZoomAnimation:!0,maxBoundsViscosity:0,transform3DLimit:8388608},initialize:function(t,e){e=o.setOptions(this,e),this._initContainer(t),this._initLayout(),this._onResize=o.bind(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),e.zoom!==i&&(this._zoom=this._limitZoom(e.zoom)),e.center&&e.zoom!==i&&this.setView(o.latLng(e.center),e.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._sizeChanged=!0,this.callInitHooks(),this._addLayers(this.options.layers)},setView:function(t,e){return e=e===i?this.getZoom():e,this._resetView(o.latLng(t),e),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=t,this)},zoomIn:function(t,e){return this.setZoom(this._zoom+(t||1),e)},zoomOut:function(t,e){return this.setZoom(this._zoom-(t||1),e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),s=this.getSize().divideBy(2),r=t instanceof o.Point?t:this.latLngToContainerPoint(t),a=r.subtract(s).multiplyBy(1-1/n),h=this.containerPointToLatLng(s.add(a));return this.setView(h,e,{zoom:i})},_getBoundsCenterZoom:function(t,e){e=e||{},t=t.getBounds?t.getBounds():o.latLngBounds(t);var i=o.point(e.paddingTopLeft||e.padding||[0,0]),n=o.point(e.paddingBottomRight||e.padding||[0,0]),s=this.getBoundsZoom(t,!1,i.add(n));s=e.maxZoom?Math.min(e.maxZoom,s):s;var r=n.subtract(i).divideBy(2),a=this.project(t.getSouthWest(),s),h=this.project(t.getNorthEast(),s),l=this.unproject(a.add(h).divideBy(2).add(r),s);return{center:l,zoom:s}},fitBounds:function(t,e){var i=this._getBoundsCenterZoom(t,e);return this.setView(i.center,i.zoom,e)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t){return this.fire("movestart"),this._rawPanBy(o.point(t)),this.fire("move"),this.fire("moveend")},setMaxBounds:function(t){return(t=o.latLngBounds(t))?(this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this.options.maxBounds=t,this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds)):this.off("moveend",this._panInsideMaxBounds)},setMinZoom:function(t){return this.options.minZoom=t,this._loaded&&this.getZoom()<this.options.minZoom?this.setZoom(t):this},setMaxZoom:function(t){return this.options.maxZoom=t,this._loaded&&this.getZoom()>this.options.maxZoom?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),n=this._limitCenter(i,this._zoom,o.latLngBounds(t));return i.equals(n)?this:(this.panTo(n,e),this._enforcingBounds=!1,this)},invalidateSize:function(t){if(!this._loaded)return this;t=o.extend({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),s=i.divideBy(2).round(),r=n.subtract(s);return r.x||r.y?(t.animate&&t.pan?this.panBy(r):(t.pan&&this._rawPanBy(r),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(o.bind(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},stop:function(){return o.Util.cancelAnimFrame(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){this._initEvents(!0);try{delete this._container._leaflet}catch(t){this._container._leaflet=i}o.DomUtil.remove(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this._loaded&&this.fire("unload");for(var e in this._layers)this._layers[e].remove();return this},createPane:function(t,e){var i="leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),n=o.DomUtil.create("div",i,e||this._mapPane);return t&&(this._panes[t]=n),n},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new o.LatLngBounds(e,i)},getMinZoom:function(){return this.options.minZoom===i?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===i?this._layersMaxZoom===i?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=o.latLngBounds(t);var n,s=this.getMinZoom()-(e?1:0),r=this.getMaxZoom(),a=this.getSize(),h=t.getNorthWest(),l=t.getSouthEast(),u=!0;i=o.point(i||[0,0]);do s++,n=this.project(l,s).subtract(this.project(h,s)).add(i).floor(),u=e?n.x<a.x||n.y<a.y:a.contains(n);while(u&&r>=s);return u&&e?null:e?s:s-1},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new o.Point(this._container.clientWidth,this._container.clientHeight),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){var i=this._getTopLeftPoint(t,e);return new o.Bounds(i,i.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(t===i?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var n=this.options.crs;return e=e===i?this._zoom:e,n.scale(t)/n.scale(e)},getScaleZoom:function(t,e){var n=this.options.crs;return e=e===i?this._zoom:e,n.zoom(t*n.scale(e))},project:function(t,e){return e=e===i?this._zoom:e,this.options.crs.latLngToPoint(o.latLng(t),e)},unproject:function(t,e){return e=e===i?this._zoom:e,this.options.crs.pointToLatLng(o.point(t),e)},layerPointToLatLng:function(t){var e=o.point(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(o.latLng(t))._round();return e._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(o.latLng(t))},distance:function(t,e){return this.options.crs.distance(o.latLng(t),o.latLng(e))},containerPointToLayerPoint:function(t){return o.point(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return o.point(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(o.point(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(o.latLng(t)))},mouseEventToContainerPoint:function(t){return o.DomEvent.getMousePosition(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=o.DomUtil.get(t);if(!e)throw new Error("Map container not found.");if(e._leaflet)throw new Error("Map container is already initialized.");o.DomEvent.addListener(e,"scroll",this._onScroll,this),e._leaflet=!0},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&o.Browser.any3d,o.DomUtil.addClass(t,"leaflet-container"+(o.Browser.touch?" leaflet-touch":"")+(o.Browser.retina?" leaflet-retina":"")+(o.Browser.ielt9?" leaflet-oldie":"")+(o.Browser.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var e=o.DomUtil.getStyle(t,"position");"absolute"!==e&&"relative"!==e&&"fixed"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),o.DomUtil.setPosition(this._mapPane,new o.Point(0,0)),this.createPane("tilePane"),this.createPane("shadowPane"),this.createPane("overlayPane"),this.createPane("markerPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(o.DomUtil.addClass(t.markerPane,"leaflet-zoom-hide"),o.DomUtil.addClass(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e){o.DomUtil.setPosition(this._mapPane,new o.Point(0,0));var i=!this._loaded;this._loaded=!0,e=this._limitZoom(e);var n=this._zoom!==e;this._moveStart(n)._move(t,e)._moveEnd(n),this.fire("viewreset"),i&&this.fire("load")},_moveStart:function(t){return t&&this.fire("zoomstart"),this.fire("movestart")},_move:function(t,e,n){e===i&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),o&&this.fire("zoom",n),this.fire("move",n)},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_rawPanBy:function(t){o.DomUtil.setPosition(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){if(o.DomEvent){this._targets={},this._targets[o.stamp(this._container)]=this;var i=e?"off":"on";o.DomEvent[i](this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress",this._handleDOMEvent,this),this.options.trackResize&&o.DomEvent[i](t,"resize",this._onResize,this),o.Browser.any3d&&this.options.transform3DLimit&&this[i]("moveend",this._onMoveEnd)}},_onResize:function(){o.Util.cancelAnimFrame(this._resizeRequest),this._resizeRequest=o.Util.requestAnimFrame(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i,n=[],s="mouseout"===e||"mouseover"===e,r=t.target||t.srcElement;r;){if(i=this._targets[o.stamp(r)],i&&i.listens(e,!0)){if(s&&!o.DomEvent._isExternalTarget(r,t))break;if(n.push(i),s)break}if(r===this._container)break;r=r.parentNode}return n.length||s||!o.DomEvent._isExternalTarget(r,t)||(n=[this]),n},_handleDOMEvent:function(t){if(this._loaded&&!o.DomEvent._skipped(t)){var e="keypress"===t.type&&13===t.keyCode?"click":t.type;if("click"===t.type){var i=o.Util.extend({},t);i.type="preclick",this._handleDOMEvent(i)}"mousedown"===e&&o.DomUtil.preventOutline(t.target||t.srcElement),this._fireDOMEvent(t,e)}},_fireDOMEvent:function(t,e,i){if(!t._stopped&&(i=(i||[]).concat(this._findEventTargets(t,e)),i.length)){var n=i[0];if("contextmenu"===e&&n.listens(e,!0)&&o.DomEvent.preventDefault(t),"click"!==t.type&&"preclick"!==t.type||t._simulated||!this._draggableMoved(n)){var s={originalEvent:t};if("keypress"!==t.type){var r=n instanceof o.Marker;s.containerPoint=r?this.latLngToContainerPoint(n.getLatLng()):this.mouseEventToContainerPoint(t),s.layerPoint=this.containerPointToLayerPoint(s.containerPoint),s.latlng=r?n.getLatLng():this.layerPointToLatLng(s.layerPoint)}for(var a=0;a<i.length;a++)if(i[a].fire(e,s,!0),s.originalEvent._stopped||i[a].options.nonBubblingEvents&&-1!==o.Util.indexOf(i[a].options.nonBubblingEvents,e))return}}},_draggableMoved:function(t){return t=t.options.draggable?t:this,t.dragging&&t.dragging.moved()||this.boxZoom&&this.boxZoom.moved()},_clearHandlers:function(){for(var t=0,e=this._handlers.length;e>t;t++)this._handlers[t].disable()},whenReady:function(t,e){return this._loaded?t.call(e||this,{target:this}):this.on("load",t,e),this},_getMapPanePos:function(){return o.DomUtil.getPosition(this._mapPane)||new o.Point(0,0)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(t,e){var n=t&&e!==i?this._getNewPixelOrigin(t,e):this.getPixelOrigin();return n.subtract(this._getMapPanePos())},_getNewPixelOrigin:function(t,e){var i=this.getSize()._divideBy(2);return this.project(t,e)._subtract(i)._add(this._getMapPanePos())._round()},_latLngToNewLayerPoint:function(t,e,i){var n=this._getNewPixelOrigin(i,e);
return this.project(t,e)._subtract(n)},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,e,i){if(!i)return t;var n=this.project(t,e),s=this.getSize().divideBy(2),r=new o.Bounds(n.subtract(s),n.add(s)),a=this._getBoundsOffset(r,i,e);return this.unproject(n.add(a),e)},_limitOffset:function(t,e){if(!e)return t;var i=this.getPixelBounds(),n=new o.Bounds(i.min.add(t),i.max.add(t));return t.add(this._getBoundsOffset(n,e))},_getBoundsOffset:function(t,e,i){var n=this.project(e.getNorthWest(),i).subtract(t.min),s=this.project(e.getSouthEast(),i).subtract(t.max),r=this._rebound(n.x,-s.x),a=this._rebound(n.y,-s.y);return new o.Point(r,a)},_rebound:function(t,e){return t+e>0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom();return o.Browser.any3d||(t=Math.round(t)),Math.max(e,Math.min(i,t))}}),o.map=function(t,e){return new o.Map(t,e)},o.Layer=o.Evented.extend({options:{pane:"overlayPane",nonBubblingEvents:[]},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[o.stamp(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[o.stamp(t)],this},_layerAdd:function(t){var e=t.target;e.hasLayer(this)&&(this._map=e,this._zoomAnimated=e._zoomAnimated,this.getEvents&&e.on(this.getEvents(),this),this.onAdd(e),this.getAttribution&&this._map.attributionControl&&this._map.attributionControl.addAttribution(this.getAttribution()),this.fire("add"),e.fire("layeradd",{layer:this}))}}),o.Map.include({addLayer:function(t){var e=o.stamp(t);return this._layers[e]?t:(this._layers[e]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var e=o.stamp(t);return this._layers[e]?(this._loaded&&t.onRemove(this),t.getAttribution&&this.attributionControl&&this.attributionControl.removeAttribution(t.getAttribution()),t.getEvents&&this.off(t.getEvents(),t),delete this._layers[e],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return!!t&&o.stamp(t)in this._layers},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},_addLayers:function(t){t=t?o.Util.isArray(t)?t:[t]:[];for(var e=0,i=t.length;i>e;e++)this.addLayer(t[e])},_addZoomLimit:function(t){(isNaN(t.options.maxZoom)||!isNaN(t.options.minZoom))&&(this._zoomBoundLayers[o.stamp(t)]=t,this._updateZoomLevels())},_removeZoomLimit:function(t){var e=o.stamp(t);this._zoomBoundLayers[e]&&(delete this._zoomBoundLayers[e],this._updateZoomLevels())},_updateZoomLevels:function(){var t=1/0,e=-(1/0),n=this._getZoomSpan();for(var o in this._zoomBoundLayers){var s=this._zoomBoundLayers[o].options;t=s.minZoom===i?t:Math.min(t,s.minZoom),e=s.maxZoom===i?e:Math.max(e,s.maxZoom)}this._layersMaxZoom=e===-(1/0)?i:e,this._layersMinZoom=t===1/0?i:t,n!==this._getZoomSpan()&&this.fire("zoomlevelschange")}}),o.Projection.Mercator={R:6378137,R_MINOR:6356752.314245179,bounds:o.bounds([-20037508.34279,-15496570.73972],[20037508.34279,18764656.23138]),project:function(t){var e=Math.PI/180,i=this.R,n=t.lat*e,s=this.R_MINOR/i,r=Math.sqrt(1-s*s),a=r*Math.sin(n),h=Math.tan(Math.PI/4-n/2)/Math.pow((1-a)/(1+a),r/2);return n=-i*Math.log(Math.max(h,1e-10)),new o.Point(t.lng*e*i,n)},unproject:function(t){for(var e,i=180/Math.PI,n=this.R,s=this.R_MINOR/n,r=Math.sqrt(1-s*s),a=Math.exp(-t.y/n),h=Math.PI/2-2*Math.atan(a),l=0,u=.1;15>l&&Math.abs(u)>1e-7;l++)e=r*Math.sin(h),e=Math.pow((1-e)/(1+e),r/2),u=Math.PI/2-2*Math.atan(a*e)-h,h+=u;return new o.LatLng(h*i,t.x*i/n)}},o.CRS.EPSG3395=o.extend({},o.CRS.Earth,{code:"EPSG:3395",projection:o.Projection.Mercator,transformation:function(){var t=.5/(Math.PI*o.Projection.Mercator.R);return new o.Transformation(t,.5,-t,.5)}()}),o.GridLayer=o.Layer.extend({options:{pane:"tilePane",tileSize:256,opacity:1,zIndex:1,updateWhenIdle:o.Browser.mobile,updateInterval:200,attribution:null,bounds:null,minZoom:0},initialize:function(t){t=o.setOptions(this,t)},onAdd:function(){this._initContainer(),this._levels={},this._tiles={},this._resetView(),this._update()},beforeAdd:function(t){t._addZoomLimit(this)},onRemove:function(t){o.DomUtil.remove(this._container),t._removeZoomLimit(this),this._container=null,this._tileZoom=null},bringToFront:function(){return this._map&&(o.DomUtil.toFront(this._container),this._setAutoZIndex(Math.max)),this},bringToBack:function(){return this._map&&(o.DomUtil.toBack(this._container),this._setAutoZIndex(Math.min)),this},getAttribution:function(){return this.options.attribution},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},isLoading:function(){return this._loading},redraw:function(){return this._map&&(this._removeAllTiles(),this._update()),this},getEvents:function(){var t={viewreset:this._resetAll,zoom:this._resetView,moveend:this._onMoveEnd};return this.options.updateWhenIdle||(this._onMove||(this._onMove=o.Util.throttle(this._onMoveEnd,this.options.updateInterval,this)),t.move=this._onMove),this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},createTile:function(){return e.createElement("div")},getTileSize:function(){var t=this.options.tileSize;return t instanceof o.Point?t:new o.Point(t,t)},_updateZIndex:function(){this._container&&this.options.zIndex!==i&&null!==this.options.zIndex&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t){for(var e,i=this.getPane().children,n=-t(-(1/0),1/0),o=0,s=i.length;s>o;o++)e=i[o].style.zIndex,i[o]!==this._container&&e&&(n=t(n,+e));isFinite(n)&&(this.options.zIndex=n+t(-1,1),this._updateZIndex())},_updateOpacity:function(){if(this._map&&!o.Browser.ielt9&&this._map._fadeAnimated){o.DomUtil.setOpacity(this._container,this.options.opacity);var t=+new Date,e=!1,i=!1;for(var n in this._tiles){var s=this._tiles[n];if(s.current&&s.loaded){var r=Math.min(1,(t-s.loaded)/200);o.DomUtil.setOpacity(s.el,r),1>r?e=!0:(s.active&&(i=!0),s.active=!0)}}i&&!this._noPrune&&this._pruneTiles(),e&&(o.Util.cancelAnimFrame(this._fadeFrame),this._fadeFrame=o.Util.requestAnimFrame(this._updateOpacity,this))}},_initContainer:function(){this._container||(this._container=o.DomUtil.create("div","leaflet-layer"),this._updateZIndex(),this.options.opacity<1&&this._updateOpacity(),this.getPane().appendChild(this._container))},_updateLevels:function(){var t=this._tileZoom,e=this.options.maxZoom;for(var i in this._levels)this._levels[i].el.children.length||i===t?this._levels[i].el.style.zIndex=e-Math.abs(t-i):(o.DomUtil.remove(this._levels[i].el),delete this._levels[i]);var n=this._levels[t],s=this._map;return n||(n=this._levels[t]={},n.el=o.DomUtil.create("div","leaflet-tile-container leaflet-zoom-animated",this._container),n.el.style.zIndex=e,n.origin=s.project(s.unproject(s.getPixelOrigin()),t).round(),n.zoom=t,this._setZoomTransform(n,s.getCenter(),s.getZoom()),o.Util.falseFn(n.el.offsetWidth)),this._level=n,n},_pruneTiles:function(){var t,e,i=this._map.getZoom();if(i>this.options.maxZoom||i<this.options.minZoom)return this._removeAllTiles();for(t in this._tiles)e=this._tiles[t],e.retain=e.current;for(t in this._tiles)if(e=this._tiles[t],e.current&&!e.active){var n=e.coords;this._retainParent(n.x,n.y,n.z,n.z-5)||this._retainChildren(n.x,n.y,n.z,n.z+2)}for(t in this._tiles)this._tiles[t].retain||this._removeTile(t)},_removeAllTiles:function(){for(var t in this._tiles)this._removeTile(t)},_resetAll:function(){for(var t in this._levels)o.DomUtil.remove(this._levels[t].el),delete this._levels[t];this._removeAllTiles(),this._tileZoom=null,this._resetView()},_retainParent:function(t,e,i,n){var o=Math.floor(t/2),s=Math.floor(e/2),r=i-1,a=o+":"+s+":"+r,h=this._tiles[a];return h&&h.active?(h.retain=!0,!0):(h&&h.loaded&&(h.retain=!0),r>n?this._retainParent(o,s,r,n):!1)},_retainChildren:function(t,e,i,n){for(var o=2*t;2*t+2>o;o++)for(var s=2*e;2*e+2>s;s++){var r=o+":"+s+":"+(i+1),a=this._tiles[r];a&&a.active?a.retain=!0:(a&&a.loaded&&(a.retain=!0),n>i+1&&this._retainChildren(o,s,i+1,n))}},_resetView:function(t){var e=t&&(t.pinch||t.flyTo);this._setView(this._map.getCenter(),this._map.getZoom(),e,e)},_animateZoom:function(t){this._setView(t.center,t.zoom,!0,t.noUpdate)},_setView:function(t,e,n,o){var s=Math.round(e);(this.options.maxZoom!==i&&s>this.options.maxZoom||this.options.minZoom!==i&&s<this.options.minZoom)&&(s=i);var r=s!==this._tileZoom;(!o||r)&&(this._tileZoom=s,this._abortLoading&&this._abortLoading(),this._updateLevels(),this._resetGrid(),s!==i&&this._update(t),n||this._pruneTiles(),this._noPrune=!!n),this._setZoomTransforms(t,e)},_setZoomTransforms:function(t,e){for(var i in this._levels)this._setZoomTransform(this._levels[i],t,e)},_setZoomTransform:function(t,e,i){var n=this._map.getZoomScale(i,t.zoom),s=t.origin.multiplyBy(n).subtract(this._map._getNewPixelOrigin(e,i)).round();o.Browser.any3d?o.DomUtil.setTransform(t.el,s,n):o.DomUtil.setPosition(t.el,s)},_resetGrid:function(){var t=this._map,e=t.options.crs,i=this._tileSize=this.getTileSize(),n=this._tileZoom,o=this._map.getPixelWorldBounds(this._tileZoom);o&&(this._globalTileRange=this._pxBoundsToTileRange(o)),this._wrapX=e.wrapLng&&!this.options.noWrap&&[Math.floor(t.project([0,e.wrapLng[0]],n).x/i.x),Math.ceil(t.project([0,e.wrapLng[1]],n).x/i.y)],this._wrapY=e.wrapLat&&!this.options.noWrap&&[Math.floor(t.project([e.wrapLat[0],0],n).y/i.x),Math.ceil(t.project([e.wrapLat[1],0],n).y/i.y)]},_onMoveEnd:function(){this._map&&!this._map._animatingZoom&&this._resetView()},_getTiledPixelBounds:function(t,e,i){var n=this._map,s=n.getZoomScale(e,i),r=n.project(t,i).floor(),a=n.getSize().divideBy(2*s);return new o.Bounds(r.subtract(a),r.add(a))},_update:function(t){var n=this._map;if(n){var s=n.getZoom();if(t===i&&(t=n.getCenter()),this._tileZoom!==i){var r=this._getTiledPixelBounds(t,s,this._tileZoom),a=this._pxBoundsToTileRange(r),h=a.getCenter(),l=[];for(var u in this._tiles)this._tiles[u].current=!1;if(Math.abs(s-this._tileZoom)>1)return void this._setView(t,s);for(var c=a.min.y;c<=a.max.y;c++)for(var d=a.min.x;d<=a.max.x;d++){var _=new o.Point(d,c);if(_.z=this._tileZoom,this._isValidTile(_)){var m=this._tiles[this._tileCoordsToKey(_)];m?m.current=!0:l.push(_)}}if(l.sort(function(t,e){return t.distanceTo(h)-e.distanceTo(h)}),0!==l.length){this._loading||(this._loading=!0,this.fire("loading"));var p=e.createDocumentFragment();for(d=0;d<l.length;d++)this._addTile(l[d],p);this._level.el.appendChild(p)}}}},_isValidTile:function(t){var e=this._map.options.crs;if(!e.infinite){var i=this._globalTileRange;if(!e.wrapLng&&(t.x<i.min.x||t.x>i.max.x)||!e.wrapLat&&(t.y<i.min.y||t.y>i.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return o.latLngBounds(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToBounds:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),s=n.add(i),r=e.wrapLatLng(e.unproject(n,t.z)),a=e.wrapLatLng(e.unproject(s,t.z));return new o.LatLngBounds(r,a)},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var e=t.split(":"),i=new o.Point(+e[0],+e[1]);return i.z=+e[2],i},_removeTile:function(t){var e=this._tiles[t];e&&(o.DomUtil.remove(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){o.DomUtil.addClass(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=o.Util.falseFn,t.onmousemove=o.Util.falseFn,o.Browser.ielt9&&this.options.opacity<1&&o.DomUtil.setOpacity(t,this.options.opacity),o.Browser.android&&!o.Browser.android23&&(t.style.WebkitBackfaceVisibility="hidden")},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),s=this.createTile(this._wrapCoords(t),o.bind(this._tileReady,this,t));this._initTile(s),this.createTile.length<2&&o.Util.requestAnimFrame(o.bind(this._tileReady,this,t,null,s)),o.DomUtil.setPosition(s,i),this._tiles[n]={el:s,coords:t,current:!0},e.appendChild(s),this.fire("tileloadstart",{tile:s,coords:t})},_tileReady:function(t,e,i){if(this._map){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);i=this._tiles[n],i&&(i.loaded=+new Date,this._map._fadeAnimated?(o.DomUtil.setOpacity(i.el,0),o.Util.cancelAnimFrame(this._fadeFrame),this._fadeFrame=o.Util.requestAnimFrame(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),o.DomUtil.addClass(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t}),this._noTilesToLoad()&&(this._loading=!1,this.fire("load")))}},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new o.Point(this._wrapX?o.Util.wrapNum(t.x,this._wrapX):t.x,this._wrapY?o.Util.wrapNum(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new o.Bounds(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}}),o.gridLayer=function(t){return new o.GridLayer(t)},o.TileLayer=o.GridLayer.extend({options:{maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,maxNativeZoom:null,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(t,e){this._url=t,e=o.setOptions(this,e),e.detectRetina&&o.Browser.retina&&e.maxZoom>0&&(e.tileSize=Math.floor(e.tileSize/2),e.zoomOffset++,e.minZoom=Math.max(0,e.minZoom),e.maxZoom--),"string"==typeof e.subdomains&&(e.subdomains=e.subdomains.split("")),o.Browser.android||this.on("tileunload",this._onTileRemove)},setUrl:function(t,e){return this._url=t,e||this.redraw(),this},createTile:function(t,i){var n=e.createElement("img");return o.DomEvent.on(n,"load",o.bind(this._tileOnLoad,this,i,n)),o.DomEvent.on(n,"error",o.bind(this._tileOnError,this,i,n)),this.options.crossOrigin&&(n.crossOrigin=""),n.alt="",n.src=this.getTileUrl(t),n},getTileUrl:function(t){return o.Util.template(this._url,o.extend({r:this.options.detectRetina&&o.Browser.retina&&this.options.maxZoom>0?"@2x":"",s:this._getSubdomain(t),x:t.x,y:this.options.tms?this._globalTileRange.max.y-t.y:t.y,z:this._getZoomForUrl()},this.options))},_tileOnLoad:function(t,e){o.Browser.ielt9?setTimeout(o.bind(t,this,null,e),0):t(null,e)},_tileOnError:function(t,e,i){var n=this.options.errorTileUrl;n&&(e.src=n),t(i,e)},getTileSize:function(){var t=this._map,e=o.GridLayer.prototype.getTileSize.call(this),i=this._tileZoom+this.options.zoomOffset,n=this.options.maxNativeZoom;return null!==n&&i>n?e.divideBy(t.getZoomScale(n,i)).round():e},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this.options,e=this._tileZoom;return t.zoomReverse&&(e=t.maxZoom-e),e+=t.zoomOffset,null!==t.maxNativeZoom?Math.min(e,t.maxNativeZoom):e},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_abortLoading:function(){var t,e;for(t in this._tiles)this._tiles[t].coords.z!==this._tileZoom&&(e=this._tiles[t].el,e.onload=o.Util.falseFn,e.onerror=o.Util.falseFn,e.complete||(e.src=o.Util.emptyImageUrl,o.DomUtil.remove(e)))}}),o.tileLayer=function(t,e){return new o.TileLayer(t,e)},o.TileLayer.WMS=o.TileLayer.extend({defaultWmsParams:{service:"WMS",request:"GetMap",version:"1.1.1",layers:"",styles:"",format:"image/jpeg",transparent:!1},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var i=o.extend({},this.defaultWmsParams);for(var n in e)n in this.options||(i[n]=e[n]);e=o.setOptions(this,e),i.width=i.height=e.tileSize*(e.detectRetina&&o.Browser.retina?2:1),this.wmsParams=i},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[e]=this._crs.code,o.TileLayer.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._tileCoordsToBounds(t),i=this._crs.project(e.getNorthWest()),n=this._crs.project(e.getSouthEast()),s=(this._wmsVersion>=1.3&&this._crs===o.CRS.EPSG4326?[n.y,i.x,i.y,n.x]:[i.x,n.y,n.x,i.y]).join(","),r=o.TileLayer.prototype.getTileUrl.call(this,t);return r+o.Util.getParamString(this.wmsParams,r,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+s},setParams:function(t,e){return o.extend(this.wmsParams,t),e||this.redraw(),this}}),o.tileLayer.wms=function(t,e){return new o.TileLayer.WMS(t,e)},o.ImageOverlay=o.Layer.extend({options:{opacity:1,alt:"",interactive:!1},initialize:function(t,e,i){this._url=t,this._bounds=o.latLngBounds(e),o.setOptions(this,i)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(o.DomUtil.addClass(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){o.DomUtil.remove(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&o.DomUtil.toFront(this._image),this},bringToBack:function(){return this._map&&o.DomUtil.toBack(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=t,this._map&&this._reset(),this},getAttribution:function(){return this.options.attribution},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t=this._image=o.DomUtil.create("img","leaflet-image-layer "+(this._zoomAnimated?"leaflet-zoom-animated":""));t.onselectstart=o.Util.falseFn,t.onmousemove=o.Util.falseFn,t.onload=o.bind(this.fire,this,"load"),this.options.crossOrigin&&(t.crossOrigin=""),t.src=this._url,t.alt=this.options.alt},_animateZoom:function(t){var e=this._map.getZoomScale(t.zoom),i=this._map._latLngToNewLayerPoint(this._bounds.getNorthWest(),t.zoom,t.center);o.DomUtil.setTransform(this._image,i,e)},_reset:function(){var t=this._image,e=new o.Bounds(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),i=e.getSize();o.DomUtil.setPosition(t,e.min),t.style.width=i.x+"px",t.style.height=i.y+"px"},_updateOpacity:function(){o.DomUtil.setOpacity(this._image,this.options.opacity)}}),o.imageOverlay=function(t,e,i){return new o.ImageOverlay(t,e,i)},o.Icon=o.Class.extend({initialize:function(t){o.setOptions(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,e){var i=this._getIconUrl(t);if(!i){if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null}var n=this._createImg(i,e&&"IMG"===e.tagName?e:null);return this._setIconStyles(n,t),n},_setIconStyles:function(t,e){var i=this.options,n=o.point(i[e+"Size"]),s=o.point("shadow"===e&&i.shadowAnchor||i.iconAnchor||n&&n.divideBy(2,!0));t.className="leaflet-marker-"+e+" "+(i.className||""),s&&(t.style.marginLeft=-s.x+"px",t.style.marginTop=-s.y+"px"),n&&(t.style.width=n.x+"px",t.style.height=n.y+"px")},_createImg:function(t,i){return i=i||e.createElement("img"),i.src=t,i},_getIconUrl:function(t){return o.Browser.retina&&this.options[t+"RetinaUrl"]||this.options[t+"Url"]}}),o.icon=function(t){return new o.Icon(t)},o.Icon.Default=o.Icon.extend({options:{iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],shadowSize:[41,41]},_getIconUrl:function(t){var e=t+"Url";if(this.options[e])return this.options[e];var i=o.Icon.Default.imagePath;if(!i)throw new Error("Couldn't autodetect L.Icon.Default.imagePath, set it manually.");return i+"/marker-"+t+(o.Browser.retina&&"icon"===t?"-2x":"")+".png"}}),o.Icon.Default.imagePath=function(){var t,i,n,o,s=e.getElementsByTagName("script"),r=/[\/^]leaflet[\-\._]?([\w\-\._]*)\.js\??/;for(t=0,i=s.length;i>t;t++)if(n=s[t].src||"",n.match(r))return o=n.split(r)[0],(o?o+"/":"")+"images"}(),o.Marker=o.Layer.extend({options:{pane:"markerPane",nonBubblingEvents:["click","dblclick","mouseover","mouseout","contextmenu"],icon:new o.Icon.Default,interactive:!0,keyboard:!0,zIndexOffset:0,opacity:1,riseOffset:250},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t)},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&t.options.markerZoomAnimation,this._initIcon(),this.update()},onRemove:function(){this.dragging&&this.dragging.enabled()&&(this.options.draggable=!0,this.dragging.removeHooks()),this._removeIcon(),this._removeShadow()},getEvents:function(){var t={zoom:this.update,viewreset:this.update};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},getLatLng:function(){return this._latlng},setLatLng:function(t){var e=this._latlng;return this._latlng=o.latLng(t),this.update(),this.fire("move",{oldLatLng:e,latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update()},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup,this._popup.options),this},getElement:function(){return this._icon},update:function(){if(this._icon){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,e="leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"),i=t.icon.createIcon(this._icon),n=!1;i!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(i.title=t.title),t.alt&&(i.alt=t.alt)),o.DomUtil.addClass(i,e),t.keyboard&&(i.tabIndex="0"),this._icon=i,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex});var s=t.icon.createShadow(this._shadow),r=!1;s!==this._shadow&&(this._removeShadow(),r=!0),s&&o.DomUtil.addClass(s,e),this._shadow=s,t.opacity<1&&this._updateOpacity(),n&&(this.getPane().appendChild(this._icon),this._initInteraction()),s&&r&&this.getPane("shadowPane").appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&this.off({mouseover:this._bringToFront,mouseout:this._resetZIndex}),o.DomUtil.remove(this._icon),this.removeInteractiveTarget(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&o.DomUtil.remove(this._shadow),this._shadow=null},_setPos:function(t){o.DomUtil.setPosition(this._icon,t),this._shadow&&o.DomUtil.setPosition(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(e)},_initInteraction:function(){if(this.options.interactive&&(o.DomUtil.addClass(this._icon,"leaflet-interactive"),this.addInteractiveTarget(this._icon),o.Handler.MarkerDrag)){var t=this.options.draggable;this.dragging&&(t=this.dragging.enabled(),this.dragging.disable()),this.dragging=new o.Handler.MarkerDrag(this),t&&this.dragging.enable()}},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){var t=this.options.opacity;o.DomUtil.setOpacity(this._icon,t),this._shadow&&o.DomUtil.setOpacity(this._shadow,t)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)}}),o.marker=function(t,e){return new o.Marker(t,e)},o.DivIcon=o.Icon.extend({options:{iconSize:[12,12],className:"leaflet-div-icon",html:!1},createIcon:function(t){var i=t&&"DIV"===t.tagName?t:e.createElement("div"),n=this.options;return i.innerHTML=n.html!==!1?n.html:"",n.bgPos&&(i.style.backgroundPosition=-n.bgPos.x+"px "+-n.bgPos.y+"px"),this._setIconStyles(i,"icon"),i},createShadow:function(){return null}}),o.divIcon=function(t){return new o.DivIcon(t)},o.Map.mergeOptions({closePopupOnClick:!0}),o.Popup=o.Layer.extend({options:{pane:"popupPane",minWidth:50,maxWidth:300,offset:[0,7],autoPan:!0,autoPanPadding:[5,5],closeButton:!0,autoClose:!0,zoomAnimation:!0},initialize:function(t,e){o.setOptions(this,t),this._source=e},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&this.options.zoomAnimation,this._container||this._initLayout(),t._fadeAnimated&&o.DomUtil.setOpacity(this._container,0),clearTimeout(this._removeTimeout),this.getPane().appendChild(this._container),this.update(),t._fadeAnimated&&o.DomUtil.setOpacity(this._container,1),t.fire("popupopen",{popup:this}),this._source&&this._source.fire("popupopen",{popup:this},!0)},openOn:function(t){return t.openPopup(this),this},onRemove:function(t){t._fadeAnimated?(o.DomUtil.setOpacity(this._container,0),this._removeTimeout=setTimeout(o.bind(o.DomUtil.remove,o.DomUtil,this._container),200)):o.DomUtil.remove(this._container),t.fire("popupclose",{popup:this}),this._source&&this._source.fire("popupclose",{popup:this},!0)},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=o.latLng(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},getElement:function(){return this._container},update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility="",this._adjustPan())},getEvents:function(){var t={zoom:this._updatePosition,viewreset:this._updatePosition};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),("closeOnClick"in this.options?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this._close),this.options.keepInView&&(t.moveend=this._adjustPan),t},isOpen:function(){return!!this._map&&this._map.hasLayer(this)},bringToFront:function(){return this._map&&o.DomUtil.toFront(this._container),this},bringToBack:function(){return this._map&&o.DomUtil.toBack(this._container),this},_close:function(){this._map&&this._map.closePopup(this)},_initLayout:function(){var t="leaflet-popup",e=this._container=o.DomUtil.create("div",t+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"));if(this.options.closeButton){var i=this._closeButton=o.DomUtil.create("a",t+"-close-button",e);i.href="#close",i.innerHTML="&#215;",o.DomEvent.on(i,"click",this._onCloseButtonClick,this)}var n=this._wrapper=o.DomUtil.create("div",t+"-content-wrapper",e);this._contentNode=o.DomUtil.create("div",t+"-content",n),o.DomEvent.disableClickPropagation(n).disableScrollPropagation(this._contentNode).on(n,"contextmenu",o.DomEvent.stopPropagation),this._tipContainer=o.DomUtil.create("div",t+"-tip-container",e),this._tip=o.DomUtil.create("div",t+"-tip",this._tipContainer)},_updateContent:function(){if(this._content){var t=this._contentNode,e="function"==typeof this._content?this._content(this._source||this):this._content;if("string"==typeof e)t.innerHTML=e;else{for(;t.hasChildNodes();)t.removeChild(t.firstChild);t.appendChild(e)}this.fire("contentupdate")}},_updateLayout:function(){var t=this._contentNode,e=t.style;e.width="",e.whiteSpace="nowrap";var i=t.offsetWidth;i=Math.min(i,this.options.maxWidth),i=Math.max(i,this.options.minWidth),e.width=i+1+"px",e.whiteSpace="",e.height="";var n=t.offsetHeight,s=this.options.maxHeight,r="leaflet-popup-scrolled";s&&n>s?(e.height=s+"px",o.DomUtil.addClass(t,r)):o.DomUtil.removeClass(t,r),this._containerWidth=this._container.offsetWidth},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),e=o.point(this.options.offset);this._zoomAnimated?o.DomUtil.setPosition(this._container,t):e=e.add(t);var i=this._containerBottom=-e.y,n=this._containerLeft=-Math.round(this._containerWidth/2)+e.x;this._container.style.bottom=i+"px",this._container.style.left=n+"px"}},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);o.DomUtil.setPosition(this._container,e)},_adjustPan:function(){if(!(!this.options.autoPan||this._map._panAnim&&this._map._panAnim._inProgress)){var t=this._map,e=this._container.offsetHeight,i=this._containerWidth,n=new o.Point(this._containerLeft,-e-this._containerBottom);this._zoomAnimated&&n._add(o.DomUtil.getPosition(this._container));var s=t.layerPointToContainerPoint(n),r=o.point(this.options.autoPanPadding),a=o.point(this.options.autoPanPaddingTopLeft||r),h=o.point(this.options.autoPanPaddingBottomRight||r),l=t.getSize(),u=0,c=0;s.x+i+h.x>l.x&&(u=s.x+i-l.x+h.x),s.x-u-a.x<0&&(u=s.x-a.x),s.y+e+h.y>l.y&&(c=s.y+e-l.y+h.y),s.y-c-a.y<0&&(c=s.y-a.y),(u||c)&&t.fire("autopanstart").panBy([u,c])}},_onCloseButtonClick:function(t){this._close(),o.DomEvent.stop(t)}}),o.popup=function(t,e){return new o.Popup(t,e)},o.Map.include({openPopup:function(t,e,i){return t instanceof o.Popup||(t=new o.Popup(i).setContent(t)),e&&t.setLatLng(e),this.hasLayer(t)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=t,this.addLayer(t))},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&this.removeLayer(t),this}}),o.Layer.include({bindPopup:function(t,e){return t instanceof o.Popup?(o.setOptions(t,e),this._popup=t,t._source=this):((!this._popup||e)&&(this._popup=new o.Popup(e,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on({click:this._openPopup,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this._originalPopupOffset=this._popup.options.offset,this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t,e){if(t instanceof o.Layer||(e=t,t=this),t instanceof o.FeatureGroup)for(var i in this._layers){t=this._layers[i];break}return e||(e=t.getCenter?t.getCenter():t.getLatLng()),this._popup&&this._map&&(this._popup.options.offset=this._popupAnchor(t),this._popup._source=t,this._popup.update(),this._map.openPopup(this._popup,e)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(t){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(t)),this},isPopupOpen:function(){return this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e=t.layer||t.target;if(this._popup&&this._map)return e instanceof o.Path?void this.openPopup(t.layer||t.target,t.latlng):void(this._map.hasLayer(this._popup)&&this._popup._source===e?this.closePopup():this.openPopup(e,t.latlng))},_popupAnchor:function(t){var e=t._getPopupAnchor?t._getPopupAnchor():[0,0],i=this._originalPopupOffset||o.Popup.prototype.options.offset;return o.point(e).add(i)},_movePopup:function(t){this._popup.setLatLng(t.latlng)}}),o.Marker.include({_getPopupAnchor:function(){return this.options.icon.options.popupAnchor||[0,0]}}),o.LayerGroup=o.Layer.extend({initialize:function(t){this._layers={};var e,i;if(t)for(e=0,i=t.length;i>e;e++)this.addLayer(t[e])},addLayer:function(t){var e=this.getLayerId(t);return this._layers[e]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var e=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[e]&&this._map.removeLayer(this._layers[e]),
delete this._layers[e],this},hasLayer:function(t){return!!t&&(t in this._layers||this.getLayerId(t)in this._layers)},clearLayers:function(){for(var t in this._layers)this.removeLayer(this._layers[t]);return this},invoke:function(t){var e,i,n=Array.prototype.slice.call(arguments,1);for(e in this._layers)i=this._layers[e],i[t]&&i[t].apply(i,n);return this},onAdd:function(t){for(var e in this._layers)t.addLayer(this._layers[e])},onRemove:function(t){for(var e in this._layers)t.removeLayer(this._layers[e])},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];for(var e in this._layers)t.push(this._layers[e]);return t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:function(t){return o.stamp(t)}}),o.layerGroup=function(t){return new o.LayerGroup(t)},o.FeatureGroup=o.LayerGroup.extend({addLayer:function(t){return this.hasLayer(t)?this:(t.addEventParent(this),o.LayerGroup.prototype.addLayer.call(this,t),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.removeEventParent(this),o.LayerGroup.prototype.removeLayer.call(this,t),this.fire("layerremove",{layer:t})):this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t=new o.LatLngBounds;for(var e in this._layers){var i=this._layers[e];t.extend(i.getBounds?i.getBounds():i.getLatLng())}return t}}),o.featureGroup=function(t){return new o.FeatureGroup(t)},o.Renderer=o.Layer.extend({options:{padding:.1},initialize:function(t){o.setOptions(this,t),o.stamp(this)},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&o.DomUtil.addClass(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update()},onRemove:function(){o.DomUtil.remove(this._container)},getEvents:function(){var t={viewreset:this._reset,zoomstart:this._onZoomStart,zoom:this._onZoom,moveend:this._update};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_onZoomStart:function(){this._update()},_updateTransform:function(t,e){var i=this._map.getZoomScale(e,this._zoom),n=o.DomUtil.getPosition(this._container),s=this._map.getSize().multiplyBy(.5+this.options.padding),r=this._map.project(this._center,e),a=this._map.project(t,e),h=a.subtract(r),l=s.multiplyBy(-i).add(n).add(s).subtract(h);o.DomUtil.setTransform(this._container,l,i)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom)},_update:function(){var t=this.options.padding,e=this._map.getSize(),i=this._map.containerPointToLayerPoint(e.multiplyBy(-t)).round();this._bounds=new o.Bounds(i,i.add(e.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),o.Map.include({getRenderer:function(t){var e=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return e||(e=this._renderer=this.options.preferCanvas&&o.canvas()||o.svg()),this.hasLayer(e)||this.addLayer(e),e},_getPaneRenderer:function(t){if("overlayPane"===t||t===i)return!1;var e=this._paneRenderers[t];return e===i&&(e=o.SVG&&o.svg({pane:t})||o.Canvas&&o.canvas({pane:t}),this._paneRenderers[t]=e),e}}),o.Path=o.Layer.extend({options:{stroke:!0,color:"#3388ff",weight:3,opacity:1,lineCap:"round",lineJoin:"round",fillOpacity:.2,fillRule:"evenodd",interactive:!0},beforeAdd:function(t){this._renderer=t.getRenderer(this)},onAdd:function(){this._renderer._initPath(this),this._reset(),this._renderer._addPath(this)},onRemove:function(){this._renderer._removePath(this)},getEvents:function(){return{zoomend:this._project,moveend:this._update,viewreset:this._reset}},redraw:function(){return this._map&&this._renderer._updatePath(this),this},setStyle:function(t){return o.setOptions(this,t),this._renderer&&this._renderer._updateStyle(this),this},bringToFront:function(){return this._renderer&&this._renderer._bringToFront(this),this},bringToBack:function(){return this._renderer&&this._renderer._bringToBack(this),this},getElement:function(){return this._path},_reset:function(){this._project(),this._update()},_clickTolerance:function(){return(this.options.stroke?this.options.weight/2:0)+(o.Browser.touch?10:0)}}),o.LineUtil={simplify:function(t,e){if(!e||!t.length)return t.slice();var i=e*e;return t=this._reducePoints(t,i),t=this._simplifyDP(t,i)},pointToSegmentDistance:function(t,e,i){return Math.sqrt(this._sqClosestPointOnSegment(t,e,i,!0))},closestPointOnSegment:function(t,e,i){return this._sqClosestPointOnSegment(t,e,i)},_simplifyDP:function(t,e){var n=t.length,o=typeof Uint8Array!=i+""?Uint8Array:Array,s=new o(n);s[0]=s[n-1]=1,this._simplifyDPStep(t,s,e,0,n-1);var r,a=[];for(r=0;n>r;r++)s[r]&&a.push(t[r]);return a},_simplifyDPStep:function(t,e,i,n,o){var s,r,a,h=0;for(r=n+1;o-1>=r;r++)a=this._sqClosestPointOnSegment(t[r],t[n],t[o],!0),a>h&&(s=r,h=a);h>i&&(e[s]=1,this._simplifyDPStep(t,e,i,n,s),this._simplifyDPStep(t,e,i,s,o))},_reducePoints:function(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;s>n;n++)this._sqDist(t[n],t[o])>e&&(i.push(t[n]),o=n);return s-1>o&&i.push(t[s-1]),i},clipSegment:function(t,e,i,n,o){var s,r,a,h=n?this._lastCode:this._getBitCode(t,i),l=this._getBitCode(e,i);for(this._lastCode=l;;){if(!(h|l))return[t,e];if(h&l)return!1;s=h||l,r=this._getEdgeIntersection(t,e,s,i,o),a=this._getBitCode(r,i),s===h?(t=r,h=a):(e=r,l=a)}},_getEdgeIntersection:function(t,e,i,n,s){var r,a,h=e.x-t.x,l=e.y-t.y,u=n.min,c=n.max;return 8&i?(r=t.x+h*(c.y-t.y)/l,a=c.y):4&i?(r=t.x+h*(u.y-t.y)/l,a=u.y):2&i?(r=c.x,a=t.y+l*(c.x-t.x)/h):1&i&&(r=u.x,a=t.y+l*(u.x-t.x)/h),new o.Point(r,a,s)},_getBitCode:function(t,e){var i=0;return t.x<e.min.x?i|=1:t.x>e.max.x&&(i|=2),t.y<e.min.y?i|=4:t.y>e.max.y&&(i|=8),i},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n},_sqClosestPointOnSegment:function(t,e,i,n){var s,r=e.x,a=e.y,h=i.x-r,l=i.y-a,u=h*h+l*l;return u>0&&(s=((t.x-r)*h+(t.y-a)*l)/u,s>1?(r=i.x,a=i.y):s>0&&(r+=h*s,a+=l*s)),h=t.x-r,l=t.y-a,n?h*h+l*l:new o.Point(r,a)}},o.Polyline=o.Path.extend({options:{smoothFactor:1},initialize:function(t,e){o.setOptions(this,e),this._setLatLngs(t)},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._setLatLngs(t),this.redraw()},isEmpty:function(){return!this._latlngs.length},closestLayerPoint:function(t){for(var e,i,n=1/0,s=null,r=o.LineUtil._sqClosestPointOnSegment,a=0,h=this._parts.length;h>a;a++)for(var l=this._parts[a],u=1,c=l.length;c>u;u++){e=l[u-1],i=l[u];var d=r(t,e,i,!0);n>d&&(n=d,s=r(t,e,i))}return s&&(s.distance=Math.sqrt(n)),s},getCenter:function(){var t,e,i,n,o,s,r,a=this._rings[0],h=a.length;if(!h)return null;for(t=0,e=0;h-1>t;t++)e+=a[t].distanceTo(a[t+1])/2;if(0===e)return this._map.layerPointToLatLng(a[0]);for(t=0,n=0;h-1>t;t++)if(o=a[t],s=a[t+1],i=o.distanceTo(s),n+=i,n>e)return r=(n-e)/i,this._map.layerPointToLatLng([s.x-r*(s.x-o.x),s.y-r*(s.y-o.y)])},getBounds:function(){return this._bounds},addLatLng:function(t,e){return e=e||this._defaultShape(),t=o.latLng(t),e.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new o.LatLngBounds,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return o.Polyline._flat(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var e=[],i=o.Polyline._flat(t),n=0,s=t.length;s>n;n++)i?(e[n]=o.latLng(t[n]),this._bounds.extend(e[n])):e[n]=this._convertLatLngs(t[n]);return e},_project:function(){this._rings=[],this._projectLatlngs(this._latlngs,this._rings);var t=this._clickTolerance(),e=new o.Point(t,-t);this._bounds.isValid()&&(this._pxBounds=new o.Bounds(this._map.latLngToLayerPoint(this._bounds.getSouthWest())._subtract(e),this._map.latLngToLayerPoint(this._bounds.getNorthEast())._add(e)))},_projectLatlngs:function(t,e){var i,n,s=t[0]instanceof o.LatLng,r=t.length;if(s){for(n=[],i=0;r>i;i++)n[i]=this._map.latLngToLayerPoint(t[i]);e.push(n)}else for(i=0;r>i;i++)this._projectLatlngs(t[i],e)},_clipPoints:function(){var t=this._renderer._bounds;if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t)){if(this.options.noClip)return void(this._parts=this._rings);var e,i,n,s,r,a,h,l=this._parts;for(e=0,n=0,s=this._rings.length;s>e;e++)for(h=this._rings[e],i=0,r=h.length;r-1>i;i++)a=o.LineUtil.clipSegment(h[i],h[i+1],t,i,!0),a&&(l[n]=l[n]||[],l[n].push(a[0]),(a[1]!==h[i+1]||i===r-2)&&(l[n].push(a[1]),n++))}},_simplifyPoints:function(){for(var t=this._parts,e=this.options.smoothFactor,i=0,n=t.length;n>i;i++)t[i]=o.LineUtil.simplify(t[i],e)},_update:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),this._updatePath())},_updatePath:function(){this._renderer._updatePoly(this)}}),o.polyline=function(t,e){return new o.Polyline(t,e)},o.Polyline._flat=function(t){return!o.Util.isArray(t[0])||"object"!=typeof t[0][0]&&"undefined"!=typeof t[0][0]},o.PolyUtil={},o.PolyUtil.clipPolygon=function(t,e,i){var n,s,r,a,h,l,u,c,d,_=[1,4,2,8],m=o.LineUtil;for(s=0,u=t.length;u>s;s++)t[s]._code=m._getBitCode(t[s],e);for(a=0;4>a;a++){for(c=_[a],n=[],s=0,u=t.length,r=u-1;u>s;r=s++)h=t[s],l=t[r],h._code&c?l._code&c||(d=m._getEdgeIntersection(l,h,c,e,i),d._code=m._getBitCode(d,e),n.push(d)):(l._code&c&&(d=m._getEdgeIntersection(l,h,c,e,i),d._code=m._getBitCode(d,e),n.push(d)),n.push(h));t=n}return t},o.Polygon=o.Polyline.extend({options:{fill:!0},isEmpty:function(){return!this._latlngs.length||!this._latlngs[0].length},getCenter:function(){var t,e,i,n,o,s,r,a,h,l=this._rings[0],u=l.length;if(!u)return null;for(s=r=a=0,t=0,e=u-1;u>t;e=t++)i=l[t],n=l[e],o=i.y*n.x-n.y*i.x,r+=(i.x+n.x)*o,a+=(i.y+n.y)*o,s+=3*o;return h=0===s?l[0]:[r/s,a/s],this._map.layerPointToLatLng(h)},_convertLatLngs:function(t){var e=o.Polyline.prototype._convertLatLngs.call(this,t),i=e.length;return i>=2&&e[0]instanceof o.LatLng&&e[0].equals(e[i-1])&&e.pop(),e},_setLatLngs:function(t){o.Polyline.prototype._setLatLngs.call(this,t),o.Polyline._flat(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return o.Polyline._flat(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,e=this.options.weight,i=new o.Point(e,e);if(t=new o.Bounds(t.min.subtract(i),t.max.add(i)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(t)){if(this.options.noClip)return void(this._parts=this._rings);for(var n,s=0,r=this._rings.length;r>s;s++)n=o.PolyUtil.clipPolygon(this._rings[s],t,!0),n.length&&this._parts.push(n)}},_updatePath:function(){this._renderer._updatePoly(this,!0)}}),o.polygon=function(t,e){return new o.Polygon(t,e)},o.Rectangle=o.Polygon.extend({initialize:function(t,e){o.Polygon.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=o.latLngBounds(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}}),o.rectangle=function(t,e){return new o.Rectangle(t,e)},o.CircleMarker=o.Path.extend({options:{fill:!0,radius:10},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t),this._radius=this.options.radius},setLatLng:function(t){return this._latlng=o.latLng(t),this.redraw(),this.fire("move",{latlng:this._latlng})},getLatLng:function(){return this._latlng},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius},setStyle:function(t){var e=t&&t.radius||this._radius;return o.Path.prototype.setStyle.call(this,t),this.setRadius(e),this},_project:function(){this._point=this._map.latLngToLayerPoint(this._latlng),this._updateBounds()},_updateBounds:function(){var t=this._radius,e=this._radiusY||t,i=this._clickTolerance(),n=[t+i,e+i];this._pxBounds=new o.Bounds(this._point.subtract(n),this._point.add(n))},_update:function(){this._map&&this._updatePath()},_updatePath:function(){this._renderer._updateCircle(this)},_empty:function(){return this._radius&&!this._renderer._bounds.intersects(this._pxBounds)}}),o.circleMarker=function(t,e){return new o.CircleMarker(t,e)},o.Circle=o.CircleMarker.extend({initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t),this._mRadius=this.options.radius},setRadius:function(t){return this._mRadius=t,this.redraw()},getRadius:function(){return this._mRadius},getBounds:function(){var t=[this._radius,this._radiusY||this._radius];return new o.LatLngBounds(this._map.layerPointToLatLng(this._point.subtract(t)),this._map.layerPointToLatLng(this._point.add(t)))},setStyle:o.Path.prototype.setStyle,_project:function(){var t=this._latlng.lng,e=this._latlng.lat,i=this._map,n=i.options.crs;if(n.distance===o.CRS.Earth.distance){var s=Math.PI/180,r=this._mRadius/o.CRS.Earth.R/s,a=i.project([e+r,t]),h=i.project([e-r,t]),l=a.add(h).divideBy(2),u=i.unproject(l).lat,c=Math.acos((Math.cos(r*s)-Math.sin(e*s)*Math.sin(u*s))/(Math.cos(e*s)*Math.cos(u*s)))/s;this._point=l.subtract(i.getPixelOrigin()),this._radius=isNaN(c)?0:Math.max(Math.round(l.x-i.project([u,t-c]).x),1),this._radiusY=Math.max(Math.round(l.y-a.y),1)}else{var d=n.unproject(n.project(this._latlng).subtract([this._mRadius,0]));this._point=i.latLngToLayerPoint(this._latlng),this._radius=this._point.x-i.latLngToLayerPoint(d).x}this._updateBounds()}}),o.circle=function(t,e,i){return"number"==typeof e&&(e=o.extend({},i,{radius:e})),new o.Circle(t,e)},o.SVG=o.Renderer.extend({_initContainer:function(){this._container=o.SVG.create("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=o.SVG.create("g"),this._container.appendChild(this._rootGroup)},_update:function(){if(!this._map._animatingZoom||!this._bounds){o.Renderer.prototype._update.call(this);var t=this._bounds,e=t.getSize(),i=this._container;this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),o.DomUtil.setPosition(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" "))}},_initPath:function(t){var e=t._path=o.SVG.create("path");t.options.className&&o.DomUtil.addClass(e,t.options.className),t.options.interactive&&o.DomUtil.addClass(e,"leaflet-interactive"),this._updateStyle(t)},_addPath:function(t){this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){o.DomUtil.remove(t._path),t.removeInteractiveTarget(t._path)},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,i=t.options;e&&(i.stroke?(e.setAttribute("stroke",i.color),e.setAttribute("stroke-opacity",i.opacity),e.setAttribute("stroke-width",i.weight),e.setAttribute("stroke-linecap",i.lineCap),e.setAttribute("stroke-linejoin",i.lineJoin),i.dashArray?e.setAttribute("stroke-dasharray",i.dashArray):e.removeAttribute("stroke-dasharray"),i.dashOffset?e.setAttribute("stroke-dashoffset",i.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),i.fill?(e.setAttribute("fill",i.fillColor||i.color),e.setAttribute("fill-opacity",i.fillOpacity),e.setAttribute("fill-rule",i.fillRule||"evenodd")):e.setAttribute("fill","none"),e.setAttribute("pointer-events",i.pointerEvents||(i.interactive?"visiblePainted":"none")))},_updatePoly:function(t,e){this._setPath(t,o.SVG.pointsToPath(t._parts,e))},_updateCircle:function(t){var e=t._point,i=t._radius,n=t._radiusY||i,o="a"+i+","+n+" 0 1,0 ",s=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+o+2*i+",0 "+o+2*-i+",0 ";this._setPath(t,s)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){o.DomUtil.toFront(t._path)},_bringToBack:function(t){o.DomUtil.toBack(t._path)}}),o.extend(o.SVG,{create:function(t){return e.createElementNS("http://www.w3.org/2000/svg",t)},pointsToPath:function(t,e){var i,n,s,r,a,h,l="";for(i=0,s=t.length;s>i;i++){for(a=t[i],n=0,r=a.length;r>n;n++)h=a[n],l+=(n?"L":"M")+h.x+" "+h.y;l+=e?o.Browser.svg?"z":"x":""}return l||"M0 0"}}),o.Browser.svg=!(!e.createElementNS||!o.SVG.create("svg").createSVGRect),o.svg=function(t){return o.Browser.svg||o.Browser.vml?new o.SVG(t):null},o.Browser.vml=!o.Browser.svg&&function(){try{var t=e.createElement("div");t.innerHTML='<v:shape adj="1"/>';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(n){return!1}}(),o.SVG.include(o.Browser.vml?{_initContainer:function(){this._container=o.DomUtil.create("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||o.Renderer.prototype._update.call(this)},_initPath:function(t){var e=t._container=o.SVG.create("shape");o.DomUtil.addClass(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=o.SVG.create("path"),e.appendChild(t._path),this._updateStyle(t)},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;o.DomUtil.remove(e),t.removeInteractiveTarget(e)},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,s=t._container;s.stroked=!!n.stroke,s.filled=!!n.fill,n.stroke?(e||(e=t._stroke=o.SVG.create("stroke")),s.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=o.Util.isArray(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(s.removeChild(e),t._stroke=null),n.fill?(i||(i=t._fill=o.SVG.create("fill")),s.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(s.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,23592600")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){o.DomUtil.toFront(t._container)},_bringToBack:function(t){o.DomUtil.toBack(t._container)}}:{}),o.Browser.vml&&(o.SVG.create=function(){try{return e.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return e.createElement("<lvml:"+t+' class="lvml">')}}catch(t){return function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}()),o.Canvas=o.Renderer.extend({onAdd:function(){o.Renderer.prototype.onAdd.call(this),this._layers=this._layers||{},this._draw()},_initContainer:function(){var t=this._container=e.createElement("canvas");o.DomEvent.on(t,"mousemove",o.Util.throttle(this._onMouseMove,32,this),this).on(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this).on(t,"mouseout",this._handleMouseOut,this),this._ctx=t.getContext("2d")},_update:function(){if(!this._map._animatingZoom||!this._bounds){this._drawnLayers={},o.Renderer.prototype._update.call(this);var t=this._bounds,e=this._container,i=t.getSize(),n=o.Browser.retina?2:1;o.DomUtil.setPosition(e,t.min),e.width=n*i.x,e.height=n*i.y,e.style.width=i.x+"px",e.style.height=i.y+"px",o.Browser.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y)}},_initPath:function(t){this._layers[o.stamp(t)]=t},_addPath:o.Util.falseFn,_removePath:function(t){t._removed=!0,this._requestRedraw(t)},_updatePath:function(t){this._redrawBounds=t._pxBounds,this._draw(!0),t._project(),t._update(),this._draw(),this._redrawBounds=null},_updateStyle:function(t){this._requestRedraw(t)},_requestRedraw:function(t){if(this._map){var e=(t.options.weight||0)+1;this._redrawBounds=this._redrawBounds||new o.Bounds,this._redrawBounds.extend(t._pxBounds.min.subtract([e,e])),this._redrawBounds.extend(t._pxBounds.max.add([e,e])),this._redrawRequest=this._redrawRequest||o.Util.requestAnimFrame(this._redraw,this)}},_redraw:function(){this._redrawRequest=null,this._draw(!0),this._draw(),this._redrawBounds=null},_draw:function(t){this._clear=t;var e,i=this._redrawBounds;this._ctx.save(),i&&(this._ctx.beginPath(),this._ctx.rect(i.min.x,i.min.y,i.max.x-i.min.x,i.max.y-i.min.y),this._ctx.clip());for(var n in this._layers)e=this._layers[n],(!i||e._pxBounds.intersects(i))&&e._updatePath(),t&&e._removed&&(delete e._removed,delete this._layers[n]);this._ctx.restore()},_updatePoly:function(t,e){var i,n,o,s,r=t._parts,a=r.length,h=this._ctx;if(a){for(this._drawnLayers[t._leaflet_id]=t,h.beginPath(),i=0;a>i;i++){for(n=0,o=r[i].length;o>n;n++)s=r[i][n],h[n?"lineTo":"moveTo"](s.x,s.y);e&&h.closePath()}this._fillStroke(h,t)}},_updateCircle:function(t){if(!t._empty()){var e=t._point,i=this._ctx,n=t._radius,o=(t._radiusY||n)/n;1!==o&&(i.save(),i.scale(1,o)),i.beginPath(),i.arc(e.x,e.y/o,n,0,2*Math.PI,!1),1!==o&&i.restore(),this._fillStroke(i,t)}},_fillStroke:function(t,e){var i=this._clear,n=e.options;t.globalCompositeOperation=i?"destination-out":"source-over",n.fill&&(t.globalAlpha=i?1:n.fillOpacity,t.fillStyle=n.fillColor||n.color,t.fill(n.fillRule||"evenodd")),n.stroke&&0!==n.weight&&(t.globalAlpha=i?1:n.opacity,e._prevWeight=t.lineWidth=i?e._prevWeight+1:n.weight,t.strokeStyle=n.color,t.lineCap=n.lineCap,t.lineJoin=n.lineJoin,t.stroke())},_onClick:function(t){var e=this._map.mouseEventToLayerPoint(t),i=[];for(var n in this._layers)this._layers[n]._containsPoint(e)&&(o.DomEvent._fakeStop(t),i.push(this._layers[n]));i.length&&this._fireEvent(i,t)},_onMouseMove:function(t){if(this._map&&!this._map.dragging._draggable._moving&&!this._map._animatingZoom){var e=this._map.mouseEventToLayerPoint(t);this._handleMouseOut(t,e),this._handleMouseHover(t,e)}},_handleMouseOut:function(t,e){var i=this._hoveredLayer;!i||"mouseout"!==t.type&&i._containsPoint(e)||(o.DomUtil.removeClass(this._container,"leaflet-interactive"),this._fireEvent([i],t,"mouseout"),this._hoveredLayer=null)},_handleMouseHover:function(t,e){var i,n;if(!this._hoveredLayer)for(i in this._drawnLayers)if(n=this._drawnLayers[i],n.options.interactive&&n._containsPoint(e)){o.DomUtil.addClass(this._container,"leaflet-interactive"),this._fireEvent([n],t,"mouseover"),this._hoveredLayer=n;break}this._hoveredLayer&&this._fireEvent([this._hoveredLayer],t)},_fireEvent:function(t,e,i){this._map._fireDOMEvent(e,i||e.type,t)},_bringToFront:o.Util.falseFn,_bringToBack:o.Util.falseFn}),o.Browser.canvas=function(){return!!e.createElement("canvas").getContext}(),o.canvas=function(t){return o.Browser.canvas?new o.Canvas(t):null},o.Polyline.prototype._containsPoint=function(t,e){var i,n,s,r,a,h,l=this._clickTolerance();if(!this._pxBounds.contains(t))return!1;for(i=0,r=this._parts.length;r>i;i++)for(h=this._parts[i],n=0,a=h.length,s=a-1;a>n;s=n++)if((e||0!==n)&&o.LineUtil.pointToSegmentDistance(t,h[s],h[n])<=l)return!0;return!1},o.Polygon.prototype._containsPoint=function(t){var e,i,n,s,r,a,h,l,u=!1;if(!this._pxBounds.contains(t))return!1;for(s=0,h=this._parts.length;h>s;s++)for(e=this._parts[s],r=0,l=e.length,a=l-1;l>r;a=r++)i=e[r],n=e[a],i.y>t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(u=!u);return u||o.Polyline.prototype._containsPoint.call(this,t,!0)},o.CircleMarker.prototype._containsPoint=function(t){return t.distanceTo(this._point)<=this._radius+this._clickTolerance()},o.GeoJSON=o.FeatureGroup.extend({initialize:function(t,e){o.setOptions(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,s=o.Util.isArray(t)?t:t.features;if(s){for(e=0,i=s.length;i>e;e++)n=s[e],(n.geometries||n.geometry||n.features||n.coordinates)&&this.addData(n);return this}var r=this.options;if(r.filter&&!r.filter(t))return this;var a=o.GeoJSON.geometryToLayer(t,r);return a?(a.feature=o.GeoJSON.asFeature(t),a.defaultOptions=a.options,this.resetStyle(a),r.onEachFeature&&r.onEachFeature(t,a),this.addLayer(a)):this},resetStyle:function(t){return t.options=t.defaultOptions,this._setLayerStyle(t,this.options.style),this},setStyle:function(t){return this.eachLayer(function(e){this._setLayerStyle(e,t)},this)},_setLayerStyle:function(t,e){"function"==typeof e&&(e=e(t.feature)),t.setStyle&&t.setStyle(e)}}),o.extend(o.GeoJSON,{geometryToLayer:function(t,e){var i,n,s,r,a="Feature"===t.type?t.geometry:t,h=a?a.coordinates:null,l=[],u=e&&e.pointToLayer,c=e&&e.coordsToLatLng||this.coordsToLatLng;if(!h&&!a)return null;switch(a.type){case"Point":return i=c(h),u?u(t,i):new o.Marker(i);case"MultiPoint":for(s=0,r=h.length;r>s;s++)i=c(h[s]),l.push(u?u(t,i):new o.Marker(i));return new o.FeatureGroup(l);case"LineString":case"MultiLineString":return n=this.coordsToLatLngs(h,"LineString"===a.type?0:1,c),new o.Polyline(n,e);case"Polygon":case"MultiPolygon":return n=this.coordsToLatLngs(h,"Polygon"===a.type?1:2,c),new o.Polygon(n,e);case"GeometryCollection":for(s=0,r=a.geometries.length;r>s;s++){var d=this.geometryToLayer({geometry:a.geometries[s],type:"Feature",properties:t.properties},e);d&&l.push(d)}return new o.FeatureGroup(l);default:throw new Error("Invalid GeoJSON object.")}},coordsToLatLng:function(t){return new o.LatLng(t[1],t[0],t[2])},coordsToLatLngs:function(t,e,i){for(var n,o=[],s=0,r=t.length;r>s;s++)n=e?this.coordsToLatLngs(t[s],e-1,i):(i||this.coordsToLatLng)(t[s]),o.push(n);return o},latLngToCoords:function(t){return t.alt!==i?[t.lng,t.lat,t.alt]:[t.lng,t.lat]},latLngsToCoords:function(t,e,i){for(var n=[],s=0,r=t.length;r>s;s++)n.push(e?o.GeoJSON.latLngsToCoords(t[s],e-1,i):o.GeoJSON.latLngToCoords(t[s]));return!e&&i&&n.push(n[0]),n},getFeature:function(t,e){return t.feature?o.extend({},t.feature,{geometry:e}):o.GeoJSON.asFeature(e)},asFeature:function(t){return"Feature"===t.type?t:{type:"Feature",properties:{},geometry:t}}});var r={toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:"Point",coordinates:o.GeoJSON.latLngToCoords(this.getLatLng())})}};o.Marker.include(r),o.Circle.include(r),o.CircleMarker.include(r),o.Polyline.prototype.toGeoJSON=function(){var t=!o.Polyline._flat(this._latlngs),e=o.GeoJSON.latLngsToCoords(this._latlngs,t?1:0);return o.GeoJSON.getFeature(this,{type:(t?"Multi":"")+"LineString",coordinates:e})},o.Polygon.prototype.toGeoJSON=function(){var t=!o.Polyline._flat(this._latlngs),e=t&&!o.Polyline._flat(this._latlngs[0]),i=o.GeoJSON.latLngsToCoords(this._latlngs,e?2:t?1:0,!0);return t||(i=[i]),o.GeoJSON.getFeature(this,{type:(e?"Multi":"")+"Polygon",coordinates:i})},o.LayerGroup.include({toMultiPoint:function(){var t=[];return this.eachLayer(function(e){t.push(e.toGeoJSON().geometry.coordinates)}),o.GeoJSON.getFeature(this,{type:"MultiPoint",coordinates:t})},toGeoJSON:function(){var t=this.feature&&this.feature.geometry&&this.feature.geometry.type;if("MultiPoint"===t)return this.toMultiPoint();var e="GeometryCollection"===t,i=[];return this.eachLayer(function(t){if(t.toGeoJSON){var n=t.toGeoJSON();i.push(e?n.geometry:o.GeoJSON.asFeature(n))}}),e?o.GeoJSON.getFeature(this,{geometries:i,type:"GeometryCollection"}):{type:"FeatureCollection",features:i}}}),o.geoJson=function(t,e){return new o.GeoJSON(t,e)};var a="_leaflet_events";o.DomEvent={on:function(t,e,i,n){if("object"==typeof e)for(var s in e)this._on(t,s,e[s],i);else{e=o.Util.splitWords(e);for(var r=0,a=e.length;a>r;r++)this._on(t,e[r],i,n)}return this},off:function(t,e,i,n){if("object"==typeof e)for(var s in e)this._off(t,s,e[s],i);else{e=o.Util.splitWords(e);for(var r=0,a=e.length;a>r;r++)this._off(t,e[r],i,n)}return this},_on:function(e,i,n,s){var r=i+o.stamp(n)+(s?"_"+o.stamp(s):"");if(e[a]&&e[a][r])return this;var h=function(i){return n.call(s||e,i||t.event)},l=h;return o.Browser.pointer&&0===i.indexOf("touch")?this.addPointerListener(e,i,h,r):o.Browser.touch&&"dblclick"===i&&this.addDoubleTapListener?this.addDoubleTapListener(e,h,r):"addEventListener"in e?"mousewheel"===i?(e.addEventListener("DOMMouseScroll",h,!1),e.addEventListener(i,h,!1)):"mouseenter"===i||"mouseleave"===i?(h=function(i){i=i||t.event,o.DomEvent._isExternalTarget(e,i)&&l(i)},e.addEventListener("mouseenter"===i?"mouseover":"mouseout",h,!1)):("click"===i&&o.Browser.android&&(h=function(t){return o.DomEvent._filterClick(t,l)}),e.addEventListener(i,h,!1)):"attachEvent"in e&&e.attachEvent("on"+i,h),e[a]=e[a]||{},e[a][r]=h,this},_off:function(t,e,i,n){var s=e+o.stamp(i)+(n?"_"+o.stamp(n):""),r=t[a]&&t[a][s];return r?(o.Browser.pointer&&0===e.indexOf("touch")?this.removePointerListener(t,e,s):o.Browser.touch&&"dblclick"===e&&this.removeDoubleTapListener?this.removeDoubleTapListener(t,s):"removeEventListener"in t?"mousewheel"===e?(t.removeEventListener("DOMMouseScroll",r,!1),t.removeEventListener(e,r,!1)):t.removeEventListener("mouseenter"===e?"mouseover":"mouseleave"===e?"mouseout":e,r,!1):"detachEvent"in t&&t.detachEvent("on"+e,r),t[a][s]=null,this):this},stopPropagation:function(t){return t.stopPropagation?t.stopPropagation():t.originalEvent?t.originalEvent._stopped=!0:t.cancelBubble=!0,o.DomEvent._skipped(t),this},disableScrollPropagation:function(t){return o.DomEvent.on(t,"mousewheel MozMousePixelScroll",o.DomEvent.stopPropagation)},disableClickPropagation:function(t){var e=o.DomEvent.stopPropagation;return o.DomEvent.on(t,o.Draggable.START.join(" "),e),o.DomEvent.on(t,{click:o.DomEvent._fakeStop,dblclick:e})},preventDefault:function(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this},stop:function(t){return o.DomEvent.preventDefault(t).stopPropagation(t)},getMousePosition:function(t,e){if(!e)return new o.Point(t.clientX,t.clientY);var i=e.getBoundingClientRect();return new o.Point(t.clientX-i.left-e.clientLeft,t.clientY-i.top-e.clientTop)},getWheelDelta:function(t){var e=0;return t.wheelDelta&&(e=t.wheelDelta/120),t.detail&&(e=-t.detail/3),e},_skipEvents:{},_fakeStop:function(t){o.DomEvent._skipEvents[t.type]=!0},_skipped:function(t){var e=this._skipEvents[t.type];return this._skipEvents[t.type]=!1,e},_isExternalTarget:function(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(n){return!1}return i!==t},_filterClick:function(t,e){var i=t.timeStamp||t.originalEvent.timeStamp,n=o.DomEvent._lastClick&&i-o.DomEvent._lastClick;return n&&n>100&&500>n||t.target._simulatedClick&&!t._simulated?void o.DomEvent.stop(t):(o.DomEvent._lastClick=i,void e(t))}},o.DomEvent.addListener=o.DomEvent.on,o.DomEvent.removeListener=o.DomEvent.off,o.Draggable=o.Evented.extend({statics:{START:o.Browser.touch?["touchstart","mousedown"]:["mousedown"],END:{mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},MOVE:{mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"}},initialize:function(t,e,i){this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(o.DomEvent.on(this._dragStartTarget,o.Draggable.START.join(" "),this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(o.DomEvent.off(this._dragStartTarget,o.Draggable.START.join(" "),this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(this._moved=!1,!o.DomUtil.hasClass(this._element,"leaflet-zoom-anim")&&!(o.Draggable._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches)&&this._enabled&&(o.Draggable._dragging=!0,this._preventOutline&&o.DomUtil.preventOutline(this._element),o.DomUtil.disableImageDrag(),o.DomUtil.disableTextSelection(),!this._moving)){this.fire("down");var i=t.touches?t.touches[0]:t;this._startPoint=new o.Point(i.clientX,i.clientY),this._startPos=this._newPos=o.DomUtil.getPosition(this._element),o.DomEvent.on(e,o.Draggable.MOVE[t.type],this._onMove,this).on(e,o.Draggable.END[t.type],this._onUp,this)}},_onMove:function(t){if(t.touches&&t.touches.length>1)return void(this._moved=!0);var i=t.touches&&1===t.touches.length?t.touches[0]:t,n=new o.Point(i.clientX,i.clientY),s=n.subtract(this._startPoint);(s.x||s.y)&&(o.Browser.touch&&Math.abs(s.x)+Math.abs(s.y)<3||(o.DomEvent.preventDefault(t),this._moved||(this.fire("dragstart"),this._moved=!0,this._startPos=o.DomUtil.getPosition(this._element).subtract(s),o.DomUtil.addClass(e.body,"leaflet-dragging"),this._lastTarget=t.target||t.srcElement,o.DomUtil.addClass(this._lastTarget,"leaflet-drag-target")),
this._newPos=this._startPos.add(s),this._moving=!0,o.Util.cancelAnimFrame(this._animRequest),this._lastEvent=t,this._animRequest=o.Util.requestAnimFrame(this._updatePosition,this,!0)))},_updatePosition:function(){var t={originalEvent:this._lastEvent};this.fire("predrag",t),o.DomUtil.setPosition(this._element,this._newPos),this.fire("drag",t)},_onUp:function(){o.DomUtil.removeClass(e.body,"leaflet-dragging"),this._lastTarget&&(o.DomUtil.removeClass(this._lastTarget,"leaflet-drag-target"),this._lastTarget=null);for(var t in o.Draggable.MOVE)o.DomEvent.off(e,o.Draggable.MOVE[t],this._onMove,this).off(e,o.Draggable.END[t],this._onUp,this);o.DomUtil.enableImageDrag(),o.DomUtil.enableTextSelection(),this._moved&&this._moving&&(o.Util.cancelAnimFrame(this._animRequest),this.fire("dragend",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1,o.Draggable._dragging=!1}}),o.Handler=o.Class.extend({initialize:function(t){this._map=t},enable:function(){this._enabled||(this._enabled=!0,this.addHooks())},disable:function(){this._enabled&&(this._enabled=!1,this.removeHooks())},enabled:function(){return!!this._enabled}}),o.Map.mergeOptions({dragging:!0,inertia:!o.Browser.android23,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1}),o.Map.Drag=o.Handler.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new o.Draggable(t._mapPane,t._container),this._draggable.on({down:this._onDown,dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}o.DomUtil.addClass(this._map._container,"leaflet-grab"),this._draggable.enable()},removeHooks:function(){o.DomUtil.removeClass(this._map._container,"leaflet-grab"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},_onDown:function(){this._map.stop()},_onDragStart:function(){var t=this._map;if(this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var e=o.latLngBounds(this._map.options.maxBounds);this._offsetLimit=o.bounds(this._map.latLngToContainerPoint(e.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(e.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(i),this._times.push(e),e-this._times[0]>50&&(this._positions.shift(),this._times.shift())}this._map.fire("move",t).fire("drag",t)},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,e){return t-(t-e)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var t=this._draggable._newPos.subtract(this._draggable._startPos),e=this._offsetLimit;t.x<e.min.x&&(t.x=this._viscousLimit(t.x,e.min.x)),t.y<e.min.y&&(t.y=this._viscousLimit(t.y,e.min.y)),t.x>e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,r=Math.abs(o+i)<Math.abs(s+i)?o:s;this._draggable._absPos=this._draggable._newPos.clone(),this._draggable._newPos.x=r},_onDragEnd:function(t){var e=this._map,i=e.options,n=!i.inertia||this._times.length<2;if(e.fire("dragend",t),n)e.fire("moveend");else{var s=this._lastPos.subtract(this._positions[0]),r=(this._lastTime-this._times[0])/1e3,a=i.easeLinearity,h=s.multiplyBy(a/r),l=h.distanceTo([0,0]),u=Math.min(i.inertiaMaxSpeed,l),c=h.multiplyBy(u/l),d=u/(i.inertiaDeceleration*a),_=c.multiplyBy(-d/2).round();_.x||_.y?(_=e._limitOffset(_,e.options.maxBounds),o.Util.requestAnimFrame(function(){e.panBy(_,{duration:d,easeLinearity:a,noMoveStart:!0,animate:!0})})):e.fire("moveend")}}}),o.Map.addInitHook("addHandler","dragging",o.Map.Drag),o.Map.mergeOptions({doubleClickZoom:!0}),o.Map.DoubleClickZoom=o.Handler.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=t.originalEvent.shiftKey?Math.ceil(i)-1:Math.floor(i)+1;"center"===e.options.doubleClickZoom?e.setZoom(n):e.setZoomAround(t.containerPoint,n)}}),o.Map.addInitHook("addHandler","doubleClickZoom",o.Map.DoubleClickZoom),o.Map.mergeOptions({scrollWheelZoom:!0,wheelDebounceTime:40}),o.Map.ScrollWheelZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,{mousewheel:this._onWheelScroll,MozMousePixelScroll:o.DomEvent.preventDefault},this),this._delta=0},removeHooks:function(){o.DomEvent.off(this._map._container,{mousewheel:this._onWheelScroll,MozMousePixelScroll:o.DomEvent.preventDefault},this)},_onWheelScroll:function(t){var e=o.DomEvent.getWheelDelta(t),i=this._map.options.wheelDebounceTime;this._delta+=e,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var n=Math.max(i-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(o.bind(this._performZoom,this),n),o.DomEvent.stop(t)},_performZoom:function(){var t=this._map,e=this._delta,i=t.getZoom();t.stop(),e=e>0?Math.ceil(e):Math.floor(e),e=Math.max(Math.min(e,4),-4),e=t._limitZoom(i+e)-i,this._delta=0,this._startTime=null,e&&("center"===t.options.scrollWheelZoom?t.setZoom(i+e):t.setZoomAround(this._lastMousePos,i+e))}}),o.Map.addInitHook("addHandler","scrollWheelZoom",o.Map.ScrollWheelZoom),o.extend(o.DomEvent,{_touchstart:o.Browser.msPointer?"MSPointerDown":o.Browser.pointer?"pointerdown":"touchstart",_touchend:o.Browser.msPointer?"MSPointerUp":o.Browser.pointer?"pointerup":"touchend",addDoubleTapListener:function(t,e,i){function n(t){var e;if(e=o.Browser.pointer?o.DomEvent._pointersCount:t.touches.length,!(e>1)){var i=Date.now(),n=i-(r||i);a=t.touches?t.touches[0]:t,h=n>0&&l>=n,r=i}}function s(){if(h&&!a.cancelBubble){if(o.Browser.pointer){var t,i,n={};for(i in a)t=a[i],n[i]=t&&t.bind?t.bind(a):t;a=n}a.type="dblclick",e(a),r=null}}var r,a,h=!1,l=250,u="_leaflet_",c=this._touchstart,d=this._touchend;return t[u+c+i]=n,t[u+d+i]=s,t.addEventListener(c,n,!1),t.addEventListener(d,s,!1),this},removeDoubleTapListener:function(t,e){var i="_leaflet_",n=t[i+this._touchend+e];return t.removeEventListener(this._touchstart,t[i+this._touchstart+e],!1),t.removeEventListener(this._touchend,n,!1),this}}),o.extend(o.DomEvent,{POINTER_DOWN:o.Browser.msPointer?"MSPointerDown":"pointerdown",POINTER_MOVE:o.Browser.msPointer?"MSPointerMove":"pointermove",POINTER_UP:o.Browser.msPointer?"MSPointerUp":"pointerup",POINTER_CANCEL:o.Browser.msPointer?"MSPointerCancel":"pointercancel",_pointers:{},_pointersCount:0,addPointerListener:function(t,e,i,n){return"touchstart"===e?this._addPointerStart(t,i,n):"touchmove"===e?this._addPointerMove(t,i,n):"touchend"===e&&this._addPointerEnd(t,i,n),this},removePointerListener:function(t,e,i){var n=t["_leaflet_"+e+i];return"touchstart"===e?t.removeEventListener(this.POINTER_DOWN,n,!1):"touchmove"===e?t.removeEventListener(this.POINTER_MOVE,n,!1):"touchend"===e&&(t.removeEventListener(this.POINTER_UP,n,!1),t.removeEventListener(this.POINTER_CANCEL,n,!1)),this},_addPointerStart:function(t,i,n){var s=o.bind(function(t){"mouse"!==t.pointerType&&t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&o.DomEvent.preventDefault(t),this._handlePointer(t,i)},this);if(t["_leaflet_touchstart"+n]=s,t.addEventListener(this.POINTER_DOWN,s,!1),!this._pointerDocListener){var r=o.bind(this._globalPointerUp,this);e.documentElement.addEventListener(this.POINTER_DOWN,o.bind(this._globalPointerDown,this),!0),e.documentElement.addEventListener(this.POINTER_MOVE,o.bind(this._globalPointerMove,this),!0),e.documentElement.addEventListener(this.POINTER_UP,r,!0),e.documentElement.addEventListener(this.POINTER_CANCEL,r,!0),this._pointerDocListener=!0}},_globalPointerDown:function(t){this._pointers[t.pointerId]=t,this._pointersCount++},_globalPointerMove:function(t){this._pointers[t.pointerId]&&(this._pointers[t.pointerId]=t)},_globalPointerUp:function(t){delete this._pointers[t.pointerId],this._pointersCount--},_handlePointer:function(t,e){t.touches=[];for(var i in this._pointers)t.touches.push(this._pointers[i]);t.changedTouches=[t],e(t)},_addPointerMove:function(t,e,i){var n=o.bind(function(t){(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&"mouse"!==t.pointerType||0!==t.buttons)&&this._handlePointer(t,e)},this);t["_leaflet_touchmove"+i]=n,t.addEventListener(this.POINTER_MOVE,n,!1)},_addPointerEnd:function(t,e,i){var n=o.bind(function(t){this._handlePointer(t,e)},this);t["_leaflet_touchend"+i]=n,t.addEventListener(this.POINTER_UP,n,!1),t.addEventListener(this.POINTER_CANCEL,n,!1)}}),o.Map.mergeOptions({touchZoom:o.Browser.touch&&!o.Browser.android23,bounceAtZoomLimits:!0}),o.Map.TouchZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){o.DomEvent.off(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var n=i.mouseEventToContainerPoint(t.touches[0]),s=i.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=i.getSize()._divideBy(2),this._startLatLng=i.containerPointToLatLng(this._centerPoint),"center"!==i.options.touchZoom&&(this._pinchStartLatLng=i.containerPointToLatLng(n.add(s)._divideBy(2))),this._startDist=n.distanceTo(s),this._startZoom=i.getZoom(),this._moved=!1,this._zooming=!0,i.stop(),o.DomEvent.on(e,"touchmove",this._onTouchMove,this).on(e,"touchend",this._onTouchEnd,this),o.DomEvent.preventDefault(t)}},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var e=this._map,i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]),s=i.distanceTo(n)/this._startDist;if(this._zoom=e.getScaleZoom(s,this._startZoom),"center"===e.options.touchZoom){if(this._center=this._startLatLng,1===s)return}else{var r=i._add(n)._divideBy(2)._subtract(this._centerPoint);if(1===s&&0===r.x&&0===r.y)return;this._center=e.unproject(e.project(this._pinchStartLatLng).subtract(r))}if(e.options.bounceAtZoomLimits||!(this._zoom<=e.getMinZoom()&&1>s||this._zoom>=e.getMaxZoom()&&s>1)){this._moved||(e._moveStart(!0),this._moved=!0),o.Util.cancelAnimFrame(this._animRequest);var a=o.bind(e._move,e,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=o.Util.requestAnimFrame(a,this,!0),o.DomEvent.preventDefault(t)}}},_onTouchEnd:function(){if(!this._moved||!this._zooming)return void(this._zooming=!1);this._zooming=!1,o.Util.cancelAnimFrame(this._animRequest),o.DomEvent.off(e,"touchmove",this._onTouchMove).off(e,"touchend",this._onTouchEnd);var t=this._zoom;t=this._map._limitZoom(t-this._startZoom>0?Math.ceil(t):Math.floor(t)),this._map._animateZoom(this._center,t,!0,!0)}}),o.Map.addInitHook("addHandler","touchZoom",o.Map.TouchZoom),o.Map.mergeOptions({tap:!0,tapTolerance:15}),o.Map.Tap=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){o.DomEvent.off(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(t.touches){if(o.DomEvent.preventDefault(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var i=t.touches[0],n=i.target;this._startPos=this._newPos=new o.Point(i.clientX,i.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.addClass(n,"leaflet-active"),this._holdTimeout=setTimeout(o.bind(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",i))},this),1e3),this._simulateEvent("mousedown",i),o.DomEvent.on(e,{touchmove:this._onMove,touchend:this._onUp},this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),o.DomEvent.off(e,{touchmove:this._onMove,touchend:this._onUp},this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],n=i.target;n&&n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.removeClass(n,"leaflet-active"),this._simulateEvent("mouseup",i),this._isTapValid()&&this._simulateEvent("click",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var e=t.touches[0];this._newPos=new o.Point(e.clientX,e.clientY),this._simulateEvent("mousemove",e)},_simulateEvent:function(i,n){var o=e.createEvent("MouseEvents");o._simulated=!0,n.target._simulatedClick=!0,o.initMouseEvent(i,!0,!0,t,1,n.screenX,n.screenY,n.clientX,n.clientY,!1,!1,!1,!1,0,null),n.target.dispatchEvent(o)}}),o.Browser.touch&&!o.Browser.pointer&&o.Map.addInitHook("addHandler","tap",o.Map.Tap),o.Map.mergeOptions({boxZoom:!0}),o.Map.BoxZoom=o.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane},addHooks:function(){o.DomEvent.on(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){o.DomEvent.off(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_resetState:function(){this._moved=!1},_onMouseDown:function(t){return!t.shiftKey||1!==t.which&&1!==t.button?!1:(this._resetState(),o.DomUtil.disableTextSelection(),o.DomUtil.disableImageDrag(),this._startPoint=this._map.mouseEventToContainerPoint(t),void o.DomEvent.on(e,{contextmenu:o.DomEvent.stop,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this))},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=o.DomUtil.create("div","leaflet-zoom-box",this._container),o.DomUtil.addClass(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var e=new o.Bounds(this._point,this._startPoint),i=e.getSize();o.DomUtil.setPosition(this._box,e.min),this._box.style.width=i.x+"px",this._box.style.height=i.y+"px"},_finish:function(){this._moved&&(o.DomUtil.remove(this._box),o.DomUtil.removeClass(this._container,"leaflet-crosshair")),o.DomUtil.enableTextSelection(),o.DomUtil.enableImageDrag(),o.DomEvent.off(e,{contextmenu:o.DomEvent.stop,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){setTimeout(o.bind(this._resetState,this),0);var e=new o.LatLngBounds(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(e).fire("boxzoomend",{boxZoomBounds:e})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}}),o.Map.addInitHook("addHandler","boxZoom",o.Map.BoxZoom),o.Map.mergeOptions({keyboard:!0,keyboardPanOffset:80,keyboardZoomOffset:1}),o.Map.Keyboard=o.Handler.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,54,173]},initialize:function(t){this._map=t,this._setPanOffset(t.options.keyboardPanOffset),this._setZoomOffset(t.options.keyboardZoomOffset)},addHooks:function(){var t=this._map._container;t.tabIndex<=0&&(t.tabIndex="0"),o.DomEvent.on(t,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.on({focus:this._addHooks,blur:this._removeHooks},this)},removeHooks:function(){this._removeHooks(),o.DomEvent.off(this._map._container,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.off({focus:this._addHooks,blur:this._removeHooks},this)},_onMouseDown:function(){if(!this._focused){var i=e.body,n=e.documentElement,o=i.scrollTop||n.scrollTop,s=i.scrollLeft||n.scrollLeft;this._map._container.focus(),t.scrollTo(s,o)}},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanOffset:function(t){var e,i,n=this._panKeys={},o=this.keyCodes;for(e=0,i=o.left.length;i>e;e++)n[o.left[e]]=[-1*t,0];for(e=0,i=o.right.length;i>e;e++)n[o.right[e]]=[t,0];for(e=0,i=o.down.length;i>e;e++)n[o.down[e]]=[0,t];for(e=0,i=o.up.length;i>e;e++)n[o.up[e]]=[0,-1*t]},_setZoomOffset:function(t){var e,i,n=this._zoomKeys={},o=this.keyCodes;for(e=0,i=o.zoomIn.length;i>e;e++)n[o.zoomIn[e]]=t;for(e=0,i=o.zoomOut.length;i>e;e++)n[o.zoomOut[e]]=-t},_addHooks:function(){o.DomEvent.on(e,"keydown",this._onKeyDown,this)},_removeHooks:function(){o.DomEvent.off(e,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var e,i=t.keyCode,n=this._map;if(i in this._panKeys){if(n._panAnim&&n._panAnim._inProgress)return;e=this._panKeys[i],t.shiftKey&&(e=o.point(e).multiplyBy(3)),n.panBy(e),n.options.maxBounds&&n.panInsideBounds(n.options.maxBounds)}else if(i in this._zoomKeys)n.setZoom(n.getZoom()+(t.shiftKey?3:1)*this._zoomKeys[i]);else{if(27!==i)return;n.closePopup()}o.DomEvent.stop(t)}}}),o.Map.addInitHook("addHandler","keyboard",o.Map.Keyboard),o.Handler.MarkerDrag=o.Handler.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new o.Draggable(t,t,!0)),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this).enable(),o.DomUtil.addClass(t,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this).disable(),this._marker._icon&&o.DomUtil.removeClass(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){this._marker.closePopup().fire("movestart").fire("dragstart")},_onDrag:function(t){var e=this._marker,i=e._shadow,n=o.DomUtil.getPosition(e._icon),s=e._map.layerPointToLatLng(n);i&&o.DomUtil.setPosition(i,n),e._latlng=s,t.latlng=s,e.fire("move",t).fire("drag",t)},_onDragEnd:function(t){this._marker.fire("moveend").fire("dragend",t)}}),o.Control=o.Class.extend({options:{position:"topright"},initialize:function(t){o.setOptions(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return o.DomUtil.addClass(e,"leaflet-control"),-1!==i.indexOf("bottom")?n.insertBefore(e,n.firstChild):n.appendChild(e),this},remove:function(){return this._map?(o.DomUtil.remove(this._container),this.onRemove&&this.onRemove(this._map),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),o.control=function(t){return new o.Control(t)},o.Map.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){function t(t,s){var r=i+t+" "+i+s;e[t+s]=o.DomUtil.create("div",r,n)}var e=this._controlCorners={},i="leaflet-",n=this._controlContainer=o.DomUtil.create("div",i+"control-container",this._container);t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){o.DomUtil.remove(this._controlContainer)}}),o.Control.Zoom=o.Control.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"-",zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=o.DomUtil.create("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){this._disabled||this._map.zoomIn(t.shiftKey?3:1)},_zoomOut:function(t){this._disabled||this._map.zoomOut(t.shiftKey?3:1)},_createButton:function(t,e,i,n,s){var r=o.DomUtil.create("a",i,n);return r.innerHTML=t,r.href="#",r.title=e,o.DomEvent.on(r,"mousedown dblclick",o.DomEvent.stopPropagation).on(r,"click",o.DomEvent.stop).on(r,"click",s,this).on(r,"click",this._refocusOnMap,this),r},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";o.DomUtil.removeClass(this._zoomInButton,e),o.DomUtil.removeClass(this._zoomOutButton,e),(this._disabled||t._zoom===t.getMinZoom())&&o.DomUtil.addClass(this._zoomOutButton,e),(this._disabled||t._zoom===t.getMaxZoom())&&o.DomUtil.addClass(this._zoomInButton,e)}}),o.Map.mergeOptions({zoomControl:!0}),o.Map.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new o.Control.Zoom,this.addControl(this.zoomControl))}),o.control.zoom=function(t){return new o.Control.Zoom(t)},o.Control.Attribution=o.Control.extend({options:{position:"bottomright",prefix:'<a href="http://leafletjs.com" title="A JS library for interactive maps">Leaflet</a>'},initialize:function(t){o.setOptions(this,t),this._attributions={}},onAdd:function(t){this._container=o.DomUtil.create("div","leaflet-control-attribution"),o.DomEvent&&o.DomEvent.disableClickPropagation(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),this._container},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(", ")),this._container.innerHTML=i.join(" | ")}}}),o.Map.mergeOptions({attributionControl:!0}),o.Map.addInitHook(function(){this.options.attributionControl&&(this.attributionControl=(new o.Control.Attribution).addTo(this))}),o.control.attribution=function(t){return new o.Control.Attribution(t)},o.Control.Scale=o.Control.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=o.DomUtil.create("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=o.DomUtil.create("div",e,i)),t.imperial&&(this._iScale=o.DomUtil.create("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,i=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(i)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t),i=1e3>e?e+" m":e/1e3+" km";this._updateScale(this._mScale,i,e/t)},_updateImperial:function(t){var e,i,n,o=3.2808399*t;o>5280?(e=o/5280,i=this._getRoundNum(e),this._updateScale(this._iScale,i+" mi",i/e)):(n=this._getRoundNum(o),this._updateScale(this._iScale,n+" ft",n/o))},_updateScale:function(t,e,i){t.style.width=Math.round(this.options.maxWidth*i)+"px",t.innerHTML=e},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),o.control.scale=function(t){return new o.Control.Scale(t)},o.Control.Layers=o.Control.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1},initialize:function(t,e,i){o.setOptions(this,i),this._layers={},this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in e)this._addLayer(e[n],n,!0)},onAdd:function(t){return this._initLayout(),this._update(),this._map=t,t.on("zoomend",this._checkDisabledLayers,this),this._container},onRemove:function(){this._map.off("zoomend",this._checkDisabledLayers,this)},addBaseLayer:function(t,e){return this._addLayer(t,e),this._update()},addOverlay:function(t,e){return this._addLayer(t,e,!0),this._update()},removeLayer:function(t){return t.off("add remove",this._onLayerChange,this),delete this._layers[o.stamp(t)],this._update()},_initLayout:function(){var t="leaflet-control-layers",e=this._container=o.DomUtil.create("div",t);e.setAttribute("aria-haspopup",!0),o.DomEvent.disableClickPropagation(e),o.Browser.touch||o.DomEvent.disableScrollPropagation(e);var i=this._form=o.DomUtil.create("form",t+"-list");if(this.options.collapsed){o.Browser.android||o.DomEvent.on(e,{mouseenter:this._expand,mouseleave:this._collapse},this);var n=this._layersLink=o.DomUtil.create("a",t+"-toggle",e);n.href="#",n.title="Layers",o.Browser.touch?o.DomEvent.on(n,"click",o.DomEvent.stop).on(n,"click",this._expand,this):o.DomEvent.on(n,"focus",this._expand,this),o.DomEvent.on(i,"click",function(){setTimeout(o.bind(this._onInputClick,this),0)},this),this._map.on("click",this._collapse,this)}else this._expand();this._baseLayersList=o.DomUtil.create("div",t+"-base",i),this._separator=o.DomUtil.create("div",t+"-separator",i),this._overlaysList=o.DomUtil.create("div",t+"-overlays",i),e.appendChild(i)},_addLayer:function(t,e,i){t.on("add remove",this._onLayerChange,this);var n=o.stamp(t);this._layers[n]={layer:t,name:e,overlay:i},this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex))},_update:function(){if(!this._container)return this;o.DomUtil.empty(this._baseLayersList),o.DomUtil.empty(this._overlaysList);var t,e,i,n,s=0;for(i in this._layers)n=this._layers[i],this._addItem(n),e=e||n.overlay,t=t||!n.overlay,s+=n.overlay?0:1;return this.options.hideSingleBase&&(t=t&&s>1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=e&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var e=this._layers[o.stamp(t.target)],i=e.overlay?"add"===t.type?"overlayadd":"overlayremove":"add"===t.type?"baselayerchange":null;i&&this._map.fire(i,e)},_createRadioElement:function(t,i){var n='<input type="radio" class="leaflet-control-layers-selector" name="'+t+'"'+(i?' checked="checked"':"")+"/>",o=e.createElement("div");return o.innerHTML=n,o.firstChild},_addItem:function(t){var i,n=e.createElement("label"),s=this._map.hasLayer(t.layer);t.overlay?(i=e.createElement("input"),i.type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=s):i=this._createRadioElement("leaflet-base-layers",s),i.layerId=o.stamp(t.layer),o.DomEvent.on(i,"click",this._onInputClick,this);var r=e.createElement("span");r.innerHTML=" "+t.name;var a=e.createElement("div");n.appendChild(a),a.appendChild(i),a.appendChild(r);var h=t.overlay?this._overlaysList:this._baseLayersList;return h.appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){var t,e,i,n=this._form.getElementsByTagName("input"),o=[],s=[];this._handlingClick=!0;for(var r=n.length-1;r>=0;r--)t=n[r],e=this._layers[t.layerId].layer,i=this._map.hasLayer(e),t.checked&&!i?o.push(e):!t.checked&&i&&s.push(e);for(r=0;r<s.length;r++)this._map.removeLayer(s[r]);for(r=0;r<o.length;r++)this._map.addLayer(o[r]);this._handlingClick=!1,this._refocusOnMap()},_expand:function(){o.DomUtil.addClass(this._container,"leaflet-control-layers-expanded"),this._form.style.height=null;var t=this._map._size.y-(this._container.offsetTop+50);t<this._form.clientHeight?(o.DomUtil.addClass(this._form,"leaflet-control-layers-scrollbar"),this._form.style.height=t+"px"):o.DomUtil.removeClass(this._form,"leaflet-control-layers-scrollbar"),this._checkDisabledLayers()},_collapse:function(){o.DomUtil.removeClass(this._container,"leaflet-control-layers-expanded")},_checkDisabledLayers:function(){for(var t,e,n=this._form.getElementsByTagName("input"),o=this._map.getZoom(),s=n.length-1;s>=0;s--)t=n[s],e=this._layers[t.layerId].layer,t.disabled=e.options.minZoom!==i&&o<e.options.minZoom||e.options.maxZoom!==i&&o>e.options.maxZoom}}),o.control.layers=function(t,e,i){return new o.Control.Layers(t,e,i)},o.PosAnimation=o.Evented.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=o.DomUtil.getPosition(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=o.Util.requestAnimFrame(this._animate,this),this._step()},_step:function(t){var e=+new Date-this._startTime,i=1e3*this._duration;i>e?this._runFrame(this._easeOut(e/i),t):(this._runFrame(1),this._complete())},_runFrame:function(t,e){var i=this._startPos.add(this._offset.multiplyBy(t));e&&i._round(),o.DomUtil.setPosition(this._el,i),this.fire("step")},_complete:function(){o.Util.cancelAnimFrame(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),o.Map.include({setView:function(t,e,n){if(e=e===i?this._zoom:this._limitZoom(e),t=this._limitCenter(o.latLng(t),e,this.options.maxBounds),n=n||{},this.stop(),this._loaded&&!n.reset&&n!==!0){n.animate!==i&&(n.zoom=o.extend({animate:n.animate},n.zoom),n.pan=o.extend({animate:n.animate,duration:n.duration},n.pan));var s=this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan);if(s)return clearTimeout(this._sizeTimer),this}return this._resetView(t,e),this},panBy:function(t,e){if(t=o.point(t).round(),e=e||{},!t.x&&!t.y)return this.fire("moveend");if(e.animate!==!0&&!this.getSize().contains(t))return this._resetView(this.unproject(this.project(this.getCenter()).add(t)),this.getZoom()),this;if(this._panAnim||(this._panAnim=new o.PosAnimation,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),e.noMoveStart||this.fire("movestart"),e.animate!==!1){o.DomUtil.addClass(this._mapPane,"leaflet-pan-anim");var i=this._getMapPanePos().subtract(t);this._panAnim.run(this._mapPane,i,e.duration||.25,e.easeLinearity)}else this._rawPanBy(t),this.fire("move").fire("moveend");return this},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){o.DomUtil.removeClass(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._floor();return(e&&e.animate)===!0||this.getSize().contains(i)?(this.panBy(i,e),!0):!1}}),o.Map.mergeOptions({zoomAnimation:!0,zoomAnimationThreshold:4});var h=o.DomUtil.TRANSITION&&o.Browser.any3d&&!o.Browser.mobileOpera;h&&o.Map.addInitHook(function(){this._zoomAnimated=this.options.zoomAnimation,this._zoomAnimated&&(this._createAnimProxy(),o.DomEvent.on(this._proxy,o.DomUtil.TRANSITION_END,this._catchTransitionEnd,this))}),o.Map.include(h?{_createAnimProxy:function(){var t=this._proxy=o.DomUtil.create("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(e){var i=o.DomUtil.TRANSFORM,n=t.style[i];o.DomUtil.setTransform(t,this.project(e.center,e.zoom),this.getZoomScale(e.zoom,1)),n===t.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",function(){var e=this.getCenter(),i=this.getZoom();
o.DomUtil.setTransform(t,this.project(e,i),this.getZoomScale(i,1))},this)},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),s=this._getCenterOffset(t)._divideBy(1-1/n);return i.animate===!0||this.getSize().contains(s)?(o.Util.requestAnimFrame(function(){this._moveStart(!0)._animateZoom(t,e,!0)},this),!0):!1},_animateZoom:function(t,e,i,n){i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,o.DomUtil.addClass(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),setTimeout(o.bind(this._onZoomTransitionEnd,this),250)},_onZoomTransitionEnd:function(){this._animatingZoom&&(o.DomUtil.removeClass(this._mapPane,"leaflet-zoom-anim"),o.Util.requestAnimFrame(function(){this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom)._moveEnd(!0)},this))}}:{}),o.Map.include({flyTo:function(t,e,n){function s(t){var e=(v*v-g*g+(t?-1:1)*L*L*y*y)/(2*(t?v:g)*L*y);return Math.log(Math.sqrt(e*e+1)-e)}function r(t){return(Math.exp(t)-Math.exp(-t))/2}function a(t){return(Math.exp(t)+Math.exp(-t))/2}function h(t){return r(t)/a(t)}function l(t){return g*(a(x)/a(x+P*t))}function u(t){return g*(a(x)*h(x+P*t)-r(x))/L}function c(t){return 1-Math.pow(1-t,1.5)}function d(){var i=(Date.now()-b)/D,n=c(i)*w;1>=i?(this._flyToFrame=o.Util.requestAnimFrame(d,this),this._move(this.unproject(_.add(m.subtract(_).multiplyBy(u(n)/y)),f),this.getScaleZoom(g/l(n),f),{flyTo:!0})):this._move(t,e)._moveEnd(!0)}if(n=n||{},n.animate===!1||!o.Browser.any3d)return this.setView(t,e,n);this.stop();var _=this.project(this.getCenter()),m=this.project(t),p=this.getSize(),f=this._zoom;t=o.latLng(t),e=e===i?f:e;var g=Math.max(p.x,p.y),v=g*this.getZoomScale(f,e),y=m.distanceTo(_)||1,P=1.42,L=P*P,x=s(0),b=Date.now(),w=(s(1)-x)/P,D=n.duration?1e3*n.duration:1e3*w*.8;return this._moveStart(!0),d.call(this),this},flyToBounds:function(t,e){var i=this._getBoundsCenterZoom(t,e);return this.flyTo(i.center,i.zoom,e)}}),o.Map.include({_defaultLocateOptions:{timeout:1e4,watch:!1},locate:function(t){if(t=this._locateOptions=o.extend({},this._defaultLocateOptions,t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var e=o.bind(this._handleGeolocationResponse,this),i=o.bind(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e=t.code,i=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+i+"."})},_handleGeolocationResponse:function(t){var e=t.coords.latitude,i=t.coords.longitude,n=new o.LatLng(e,i),s=n.toBounds(t.coords.accuracy),r=this._locateOptions;if(r.setView){var a=this.getBoundsZoom(s);this.setView(n,r.maxZoom?Math.min(a,r.maxZoom):a)}var h={latlng:n,bounds:s,timestamp:t.timestamp};for(var l in t.coords)"number"==typeof t.coords[l]&&(h[l]=t.coords[l]);this.fire("locationfound",h)}})}(window,document);
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "Line 127", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.109856122979807, 34.02851713562027, 0.0 ], [ -118.109846493569705, 34.028524890277993, 0.0 ], [ -118.108933659585702, 34.027689432438237, 0.0 ], [ -118.108543029359595, 34.027719258044542, 0.0 ], [ -118.107103389952897, 34.027634212458644, 0.0 ], [ -118.106481313022101, 34.028271372624587, 0.0 ], [ -118.106362010597095, 34.028189735679511, 0.0 ], [ -118.106131586484494, 34.028190161759561, 0.0 ], [ -118.105365664915496, 34.028953271200002, 0.0 ], [ -118.105275762016603, 34.028951226015622, 0.0 ], [ -118.105138138147595, 34.028863623949221, 0.0 ], [ -118.104354491646902, 34.028705463019897, 0.0 ], [ -118.103729858235496, 34.028570225199481, 0.0 ], [ -118.103176209767199, 34.028434476082893, 0.0 ], [ -118.102707266020502, 34.028341164543278, 0.0 ], [ -118.102583191498397, 34.028403116588343, 0.0 ], [ -118.102045478425396, 34.028214022244633, 0.0 ], [ -118.102039002007999, 34.028064297701107, 0.0 ], [ -118.102024259636906, 34.028061741220561, 0.0 ], [ -118.101759919549295, 34.028014616762633, 0.0 ] ], [ [ -118.101759919549295, 34.028014616762633, 0.0 ], [ -118.101738617991103, 34.028011014848133, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 123", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.085728570962402, 34.022148601737179, 0.0 ], [ -118.085688860298006, 34.022158316363253, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 122", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.204331372541205, 33.846312677339768, 0.0 ], [ -118.204331287325203, 33.846296230648399, 0.0 ], [ -118.204301717367002, 33.846296315864393, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 116", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.976263312552902, 33.961328821940462, 0.0 ], [ -117.977235542101297, 33.961328992372493, 0.0 ], [ -117.977430090270204, 33.961231846112128, 0.0 ], [ -117.979379832760301, 33.962389590931508, 0.0 ], [ -117.979663176019798, 33.962037733993519, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 95", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.204899392866096, 33.997295009247168, 0.0 ], [ -118.204899422516704, 33.997305831681523, 0.0 ] ], [ [ -118.204889221106299, 33.997198800988727, 0.0 ], [ -118.204889281810495, 33.997212520141822, 0.0 ], [ -118.2048991668686, 33.997212520141822, 0.0 ], [ -118.204899392866096, 33.997295009247168, 0.0 ] ], [ [ -118.204691348192895, 33.996750138035623, 0.0 ], [ -118.204727200944504, 33.996750138028617, 0.0 ], [ -118.204741772883494, 33.997151505472978, 0.0 ], [ -118.204889111378506, 33.997151335040961, 0.0 ], [ -118.204889196594493, 33.997193261321797, 0.0 ], [ -118.204889221106299, 33.997198800988727, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 94", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.204920470873105, 34.009075186348163, 0.0 ], [ -118.204921408249305, 34.009075186348163, 0.0 ], [ -118.204941604445494, 34.009075868076323, 0.0 ], [ -118.204942286173605, 34.009046042470104, 0.0 ], [ -118.204942486847401, 34.009007684260773, 0.0 ] ], [ [ -118.204942486847401, 34.009007684260773, 0.0 ], [ -118.204945183518305, 34.008492223569633, 0.0 ], [ -118.204915698776105, 34.008483872399879, 0.0 ], [ -118.204901723349195, 34.008497762610823, 0.0 ], [ -118.204226693923701, 34.008289773088222, 0.0 ], [ -118.204195367776606, 34.008280120901013, 0.0 ], [ -118.204183863614205, 34.008258561248503, 0.0 ], [ -118.203150789828896, 34.007869720558737, 0.0 ], [ -118.203223138228097, 34.00776976216973, 0.0 ], [ -118.203208140209, 34.007763711832418, 0.0 ], [ -118.203179507626999, 34.007752292885989, 0.0 ], [ -118.203183683211904, 34.007744879092407, 0.0 ], [ -118.203094461784701, 34.007709174221347, 0.0 ] ], [ [ -118.203094461784701, 34.007709174221347, 0.0 ], [ -118.2030859405656, 34.007705764990767, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 93", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.237181362059303, 33.781227787909607, 0.0 ], [ -118.237280737455706, 33.781087164846433, 0.0 ] ], [ [ -118.237280737455706, 33.781087164846433, 0.0 ], [ -118.237288631562805, 33.781075994138547, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 93", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.233391064010505, 33.78179006612249, 0.0 ], [ -118.233390220528307, 33.781781921450992, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 92", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.281504672018002, 33.867607573706749, 0.0 ], [ -118.2815051287687, 33.86798038378388, 0.0 ] ], [ [ -118.281504473382, 33.867445452041423, 0.0 ], [ -118.281504672018002, 33.867607573706749, 0.0 ] ], [ [ -118.281503886120703, 33.866966106874017, 0.0 ], [ -118.281504473382, 33.867445452041423, 0.0 ] ], [ [ -118.281503788294899, 33.866886259317887, 0.0 ], [ -118.281503886120703, 33.866966106874017, 0.0 ] ], [ [ -118.281131786495806, 33.863013323106159, 0.0 ], [ -118.281159407383996, 33.863056602268571, 0.0 ], [ -118.2811749166993, 33.863080718401662, 0.0 ], [ -118.281418293646396, 33.862971982762893, 0.0 ], [ -118.281498993215394, 33.8629724088429, 0.0 ], [ -118.281503788294899, 33.866886259317887, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 91", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.228322242965504, 33.78236251225966, 0.0 ], [ -118.228306128997701, 33.782209875012981, 0.0 ] ], [ [ -118.228362098665599, 33.782359872646573, 0.0 ], [ -118.2283353898315, 33.782361641552598, 0.0 ], [ -118.228322242965504, 33.78236251225966, 0.0 ] ], [ [ -118.228306128997701, 33.782209875012981, 0.0 ], [ -118.228298855147102, 33.782140974507399, 0.0 ], [ -118.229313641218098, 33.782068662295181, 0.0 ], [ -118.229327032806594, 33.782076874119198, 0.0 ], [ -118.233391064010505, 33.78179006612249, 0.0 ] ], [ [ -118.233391064010505, 33.78179006612249, 0.0 ], [ -118.233586893613705, 33.781776237436091, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 88", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.102422900168705, 33.773584981631203, 0.0 ], [ -118.102748766221296, 33.773585833791387, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 86", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.097476921221897, 33.774237761438371, 0.0 ], [ -118.098274669632502, 33.774236117224092, 0.0 ], [ -118.098274328768397, 33.774109741869552, 0.0 ], [ -118.0991852027839, 33.774090483049491, 0.0 ], [ -118.099184776703893, 33.773988905556152, 0.0 ], [ -118.100553942463804, 33.773750641570011, 0.0 ], [ -118.100871798210505, 33.773604836963393, 0.0 ], [ -118.101544223969796, 33.773603987287977, 0.0 ] ], [ [ -118.101544223969796, 33.773603987287977, 0.0 ], [ -118.101606477083706, 33.773603908625098, 0.0 ] ], [ [ -118.101606477083706, 33.773603908625098, 0.0 ], [ -118.101642669546393, 33.773603862892443, 0.0 ] ], [ [ -118.101642669546393, 33.773603862892443, 0.0 ], [ -118.102422900168705, 33.773602876994957, 0.0 ], [ -118.102422900168705, 33.773584981631203, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 79", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.162713658926194, 33.810941127406203, 0.0 ], [ -118.162710335501401, 33.810941127406203, 0.0 ] ], [ [ -118.162726696976904, 33.810933031884417, 0.0 ], [ -118.162726696976904, 33.810941127406203, 0.0 ], [ -118.162713658926194, 33.810941127406203, 0.0 ] ], [ [ -118.162733599474393, 33.810911898311943, 0.0 ], [ -118.162733599474393, 33.810920164265738, 0.0 ], [ -118.162726782192905, 33.810926044170976, 0.0 ], [ -118.162726696976904, 33.810933031884417, 0.0 ] ], [ [ -118.1631977618257, 33.810820291455357, 0.0 ], [ -118.162733343826403, 33.810821228468939, 0.0 ], [ -118.162733599474393, 33.810911898311943, 0.0 ] ], [ [ -118.163197941556007, 33.810820291092718, 0.0 ], [ -118.1631977618257, 33.810820291455357, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 198", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.502171249507001, 34.301196719078561, 0.0 ], [ -118.502229474135802, 34.301056509995007, 0.0 ], [ -118.502405185568904, 34.300557636975, 0.0 ], [ -118.502629982987301, 34.299646950095656, 0.0 ], [ -118.502720645922096, 34.299131109259847, 0.0 ], [ -118.502767540543601, 34.298752825980188, 0.0 ], [ -118.502798803624501, 34.298330774387232, 0.0 ], [ -118.502811308856906, 34.297904033332102, 0.0 ], [ -118.502794114162398, 34.297256887556223, 0.0 ], [ -118.502744093232806, 34.296722288871891, 0.0 ], [ -118.502503367509505, 34.295091919199827, 0.0 ], [ -118.502381441493696, 34.294258758092241, 0.0 ], [ -118.502270457556307, 34.293500628378908, 0.0 ], [ -118.502143842078397, 34.292650272576779, 0.0 ], [ -118.502063532264799, 34.292113548575102, 0.0 ], [ -118.501985963519502, 34.291595143594392, 0.0 ], [ -118.501869615077197, 34.290844351041898, 0.0 ] ], [ [ -118.501869615077197, 34.290844351041898, 0.0 ], [ -118.501823822828896, 34.290533479722619, 0.0 ], [ -118.501815152711799, 34.290463587521707, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 68", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.163346141167295, 33.809238940089422, 0.0 ], [ -118.163346132211203, 33.809252827659193, 0.0 ] ], [ [ -118.163346145584697, 33.809238532446059, 0.0 ], [ -118.163346141167295, 33.809238940089422, 0.0 ] ], [ [ -118.163952918459202, 33.808122734046712, 0.0 ], [ -118.163952915321303, 33.808120746322238, 0.0 ], [ -118.163970852700501, 33.808120775184243, 0.0 ], [ -118.163970711519994, 33.808070956508807, 0.0 ], [ -118.163347240019405, 33.80806866587421, 0.0 ], [ -118.163346145584697, 33.809238532446059, 0.0 ] ], [ [ -118.1639998905287, 33.808131957022411, 0.0 ], [ -118.1639529332775, 33.808132120712187, 0.0 ], [ -118.163952918459202, 33.808122734046712, 0.0 ] ], [ [ -118.165544535041406, 33.808006287749023, 0.0 ], [ -118.164297995131307, 33.808002879108287, 0.0 ], [ -118.1642985064274, 33.808072159730969, 0.0 ], [ -118.163978775650904, 33.808070986119972, 0.0 ], [ -118.163978869115297, 33.808120745628123, 0.0 ], [ -118.164005768591906, 33.808120708993059, 0.0 ], [ -118.164005790536905, 33.808131936455418, 0.0 ], [ -118.1639998905287, 33.808131957022411, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 60", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.234566105687193, 33.846711913159211, 0.0 ], [ -118.234565987870994, 33.846692776819502, 0.0 ], [ -118.234537975856895, 33.84669237319401, 0.0 ] ], [ [ -118.234537975856895, 33.84669237319401, 0.0 ], [ -118.234537872097405, 33.846672128180941, 0.0 ], [ -118.234528869968898, 33.846672320498222, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 58", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376740171776802, 33.858191693869607, 0.0 ], [ -118.376740334778006, 33.858226217508907, 0.0 ], [ -118.376786364564495, 33.858225652908587, 0.0 ] ], [ [ -118.376786364564495, 33.858225652908587, 0.0 ], [ -118.376872334389802, 33.858224598404497, 0.0 ], [ -118.377035931919806, 33.858222590125202, 0.0 ] ], [ [ -118.377035931919806, 33.858222590125202, 0.0 ], [ -118.377052821915697, 33.858222382788142, 0.0 ], [ -118.377115626120997, 33.858168696696801, 0.0 ], [ -118.377302078768196, 33.858170741881182, 0.0 ], [ -118.377798035992299, 33.858175940058267, 0.0 ], [ -118.378102512824498, 33.858179007834941, 0.0 ], [ -118.378422839835807, 33.858182416475707, 0.0 ], [ -118.378725101051302, 33.858067033987467, 0.0 ], [ -118.378806256975395, 33.858041066297069, 0.0 ] ], [ [ -118.376740147561094, 33.858186564967582, 0.0 ], [ -118.376740171776802, 33.858191693869607, 0.0 ] ], [ [ -118.376740011865195, 33.858157824564437, 0.0 ], [ -118.376740147561094, 33.858186564967582, 0.0 ] ], [ [ -118.376797514725993, 33.858135803313857, 0.0 ], [ -118.376771268192499, 33.858135888529887, 0.0 ], [ -118.376739908697999, 33.858135973745888, 0.0 ], [ -118.376740011865195, 33.858157824564437, 0.0 ] ], [ [ -118.378806256975395, 33.858041066297069, 0.0 ], [ -118.378975977008096, 33.857986760498527, 0.0 ], [ -118.378981475060996, 33.857973092032331, 0.0 ] ], [ [ -118.378981475060996, 33.857973092032331, 0.0 ], [ -118.378997366228603, 33.857933585703407, 0.0 ], [ -118.379122463342895, 33.857893534174991, 0.0 ], [ -118.379725537101706, 33.85770026424629, 0.0 ], [ -118.380587667555005, 33.857424164348217, 0.0 ], [ -118.381051498340497, 33.857275377180962, 0.0 ], [ -118.381235905803294, 33.857216237264517, 0.0 ], [ -118.382118573316902, 33.856933234869039, 0.0 ], [ -118.382367489305196, 33.856853387460191, 0.0 ], [ -118.382983175034795, 33.856655601082679, 0.0 ], [ -118.383707085106906, 33.856403702533648, 0.0 ], [ -118.384187788663994, 33.856235741762397, 0.0 ], [ -118.384192480260793, 33.85623728944303, 0.0 ] ], [ [ -118.384192480260793, 33.85623728944303, 0.0 ], [ -118.384253660645896, 33.85625747184686, 0.0 ], [ -118.384258858823003, 33.856255682310497, 0.0 ], [ -118.384530101407904, 33.856162370770882, 0.0 ], [ -118.384660141051299, 33.85611771757754, 0.0 ], [ -118.384801173561002, 33.856072979168161, 0.0 ], [ -118.384804411769693, 33.856072041791897, 0.0 ], [ -118.384920135122002, 33.856034802392102, 0.0 ], [ -118.385004584195798, 33.856007703698417, 0.0 ], [ -118.385318008709703, 33.855907063581263, 0.0 ], [ -118.385358827182301, 33.855893940314459, 0.0 ], [ -118.386045071774504, 33.855672463883913, 0.0 ], [ -118.386557134826205, 33.855507400457263, 0.0 ], [ -118.386617638198899, 33.855487800773062, 0.0 ], [ -118.386649338557604, 33.85547766006691, 0.0 ], [ -118.386665614817005, 33.855484136484272, 0.0 ], [ -118.387412618430105, 33.855230363182983, 0.0 ], [ -118.3881240869637, 33.85500206947092, 0.0 ], [ -118.3882830148371, 33.854950258131993, 0.0 ], [ -118.388428137715593, 33.85490355975422, 0.0 ], [ -118.388470309801903, 33.85486063968316, 0.0 ] ], [ [ -118.388470309801903, 33.85486063968316, 0.0 ], [ -118.388529033480793, 33.854800874452643, 0.0 ], [ -118.388586809941003, 33.854742075400331, 0.0 ], [ -118.388633337886702, 33.85472997472575, 0.0 ], [ -118.388785363262699, 33.854677140794642, 0.0 ], [ -118.389307311372505, 33.85450423749424, 0.0 ], [ -118.389899477480995, 33.854303638988071, 0.0 ], [ -118.390308514367007, 33.854188086067772, 0.0 ], [ -118.390772598336596, 33.854030630428952, 0.0 ] ], [ [ -118.390772598336596, 33.854030630428952, 0.0 ], [ -118.390805068103504, 33.854019614000393, 0.0 ], [ -118.392823665135893, 33.852930723723397, 0.0 ], [ -118.392901978656397, 33.852888541794528, 0.0 ], [ -118.392923623524894, 33.852876781984087, 0.0 ], [ -118.393121324686504, 33.852769409801461, 0.0 ], [ -118.393145419673999, 33.852744284232791, 0.0 ] ], [ [ -118.393145419673999, 33.852744284232791, 0.0 ], [ -118.3932209422114, 33.852665531475601, 0.0 ], [ -118.393237985414999, 33.85265914027427, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 53", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2728772425709, 34.160203799078381, 0.0 ], [ -118.272874832698804, 34.160203230639368, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 51", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.501037716971098, 34.303558922857903, 0.0 ], [ -118.501051068103706, 34.303563800866861, 0.0 ], [ -118.501303315082097, 34.303655541346231, 0.0 ], [ -118.501446818856294, 34.303699938891512, 0.0 ], [ -118.501548311133604, 34.303724140240597, 0.0 ], [ -118.501654319859895, 34.303736666995313, 0.0 ], [ -118.501766634571496, 34.303740672148123, 0.0 ], [ -118.5019316127823, 34.303741609524337, 0.0 ], [ -118.502139625081895, 34.303748852885803, 0.0 ], [ -118.5025729485331, 34.303747063349448, 0.0 ], [ -118.502969714312499, 34.303748597237743, 0.0 ], [ -118.5032276631988, 34.303734707026813, 0.0 ], [ -118.503454763886495, 34.303712976942229, 0.0 ], [ -118.503689534015805, 34.303679657479321, 0.0 ], [ -118.503935723091601, 34.303632703453417, 0.0 ], [ -118.504209863021302, 34.303564701071132, 0.0 ], [ -118.504491331528499, 34.303478718109019, 0.0 ], [ -118.504650770698007, 34.303417192144103, 0.0 ], [ -118.5049082082881, 34.30330581480866, 0.0 ], [ -118.505513582879402, 34.303064483045972, 0.0 ], [ -118.505920574580998, 34.302898652675012, 0.0 ], [ -118.506523733555895, 34.302645475885797, 0.0 ], [ -118.506667833842101, 34.302591619362481, 0.0 ], [ -118.506817643601593, 34.302521401363713, 0.0 ], [ -118.507007504889501, 34.302395878169257, 0.0 ], [ -118.507136521940694, 34.302256123899951, 0.0 ], [ -118.5072863317002, 34.302005077511112, 0.0 ], [ -118.507535418120497, 34.302084669271849, 0.0 ], [ -118.508158602859595, 34.302168095753423, 0.0 ], [ -118.508409564032306, 34.302054588017569, 0.0 ], [ -118.508416040497195, 34.3020538210707, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 48", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.545161102160193, 34.317249115308542, 0.0 ], [ -118.543849201564299, 34.317340722527831, 0.0 ], [ -118.543641870992701, 34.31756407371082, 0.0 ], [ -118.543568926081406, 34.317872640911688, 0.0 ], [ -118.543170541197696, 34.318167658765631, 0.0 ], [ -118.542781189211695, 34.318245716638081, 0.0 ], [ -118.542504237153494, 34.318749939816129, 0.0 ], [ -118.541440826466001, 34.318998088860283, 0.0 ], [ -118.540831872801803, 34.319336481667463, 0.0 ], [ -118.539964970251603, 34.319375169739608, 0.0 ], [ -118.539707106581403, 34.318798427730343, 0.0 ], [ -118.539337183847493, 34.31794515974287, 0.0 ], [ -118.538808588888401, 34.317466075290163, 0.0 ], [ -118.538079224991094, 34.317000966264388, 0.0 ], [ -118.536515340630203, 34.316330401419378, 0.0 ], [ -118.535948057598901, 34.315996780709199, 0.0 ], [ -118.535370889509593, 34.315787404953177, 0.0 ], [ -118.5344843872751, 34.315201970910103, 0.0 ], [ -118.533716590953702, 34.314203494828092, 0.0 ], [ -118.533891283790496, 34.313583463081777, 0.0 ], [ -118.533464010676596, 34.311806794324148, 0.0 ], [ -118.533441002351793, 34.311633209295678, 0.0 ], [ -118.532981261935106, 34.310619564762568, 0.0 ], [ -118.530586777047603, 34.308985718050963, 0.0 ], [ -118.529592391334504, 34.308809661757927, 0.0 ], [ -118.529363841974501, 34.308849798502457, 0.0 ], [ -118.528406695661204, 34.308715924138227, 0.0 ], [ -118.527113542589305, 34.307984429840367, 0.0 ], [ -118.520323871145607, 34.3047135834247, 0.0 ], [ -118.519597404592901, 34.304545793085403, 0.0 ], [ -118.518577539290405, 34.303964875491289, 0.0 ], [ -118.517859338691395, 34.303362142596498, 0.0 ], [ -118.517342077462601, 34.303348337601633, 0.0 ], [ -118.517344719159198, 34.302639169900509, 0.0 ], [ -118.517351366008498, 34.302456892838137, 0.0 ], [ -118.517329635924, 34.302282540865562, 0.0 ], [ -118.517231296639295, 34.301891058479143, 0.0 ], [ -118.515458462602595, 34.302142530948032, 0.0 ], [ -118.515211677014605, 34.302203375184867, 0.0 ], [ -118.514998636969807, 34.302265497661878, 0.0 ], [ -118.5147859377891, 34.302343470318277, 0.0 ], [ -118.514390876330097, 34.302537336759109, 0.0 ], [ -118.514071401478901, 34.302738787425447, 0.0 ], [ -118.513965137104606, 34.30282570776366, 0.0 ], [ -118.513471480712695, 34.303257326894503, 0.0 ], [ -118.511963242411596, 34.302356678801083, 0.0 ], [ -118.511510404492398, 34.302142530948032, 0.0 ], [ -118.511346022793802, 34.302101797691527, 0.0 ], [ -118.5111526676491, 34.302056207121893, 0.0 ], [ -118.510861910596006, 34.301995533317147, 0.0 ], [ -118.510692842016397, 34.301963236446383, 0.0 ], [ -118.509576767829799, 34.301988375171597, 0.0 ], [ -118.508416040497195, 34.3020538210707, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 48", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547615323476293, 34.315706364520182, 0.0 ], [ -118.547607994898698, 34.315711903561287, 0.0 ], [ -118.547156861299797, 34.315800016923852, 0.0 ], [ -118.546941179558502, 34.315898697072633, 0.0 ], [ -118.546799209672599, 34.316174115242497, 0.0 ], [ -118.545720204453701, 34.316650898862719, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 189", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.130316437181406, 34.704569345780968, 0.0 ], [ -118.130316254632405, 34.704626153858847, 0.0 ] ], [ [ -118.130365447770501, 34.70448035643193, 0.0 ], [ -118.130315816589601, 34.704480399012269, 0.0 ], [ -118.130316437181406, 34.704569345780968, 0.0 ] ], [ [ -118.130406582461703, 34.704480321140998, 0.0 ], [ -118.130365447770501, 34.70448035643193, 0.0 ] ], [ [ -118.130406574473099, 34.704475235918522, 0.0 ], [ -118.130406582461703, 34.704480321140998, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 181", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.035726623556997, 34.058081095883509, 0.0 ], [ -118.035726163254793, 34.058102039494472, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 41", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255523924306601, 33.777826165404349, 0.0 ], [ -118.255511120541598, 33.777661353581919, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 40", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.101657175010402, 33.764934704832868, 0.0 ], [ -118.1016574898958, 33.764958564137359, 0.0 ], [ -118.101331794275396, 33.764959331081457, 0.0 ], [ -118.101331711261096, 33.764933688136701, 0.0 ] ], [ [ -118.101657034880901, 33.764924087022678, 0.0 ], [ -118.101657175010402, 33.764934704832868, 0.0 ] ], [ [ -118.101331711261096, 33.764933688136701, 0.0 ], [ -118.101331695265699, 33.764929984819048, 0.0 ], [ -118.101232995812794, 33.764930155137407, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 40", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.101606527391695, 33.77364806543531, 0.0 ], [ -118.101606513182404, 33.773635593594697, 0.0 ] ], [ [ -118.101606513182404, 33.773635593594697, 0.0 ], [ -118.101606479602793, 33.773606119732563, 0.0 ] ], [ [ -118.101606479602793, 33.773606119732563, 0.0 ], [ -118.101606477083706, 33.773603908625098, 0.0 ] ], [ [ -118.101606477083706, 33.773603908625098, 0.0 ], [ -118.101606433, 33.77356521499999, 0.0 ], [ -118.101606786252304, 33.773557317546192, 0.0 ] ], [ [ -118.101606786252304, 33.773557317546192, 0.0 ], [ -118.101608382465599, 33.773521631922691, 0.0 ], [ -118.101610143884699, 33.77348225285396, 0.0 ] ], [ [ -118.101610143884699, 33.77348225285396, 0.0 ], [ -118.101610315683502, 33.773478412042849, 0.0 ], [ -118.101602161479704, 33.773385678535661, 0.0 ], [ -118.101405781526395, 33.773217358544002, 0.0 ], [ -118.101327964540701, 33.773203968541289, 0.0 ], [ -118.101121759578405, 33.773170791533857, 0.0 ], [ -118.098930334967207, 33.772974893436363, 0.0 ], [ -118.098487351045407, 33.772940301416106, 0.0 ], [ -118.098479433063901, 33.772722221440397, 0.0 ], [ -118.098485397171203, 33.771339144597952, 0.0 ], [ -118.098539203621002, 33.771034663238183, 0.0 ], [ -118.098547799102803, 33.769874611818167, 0.0 ], [ -118.098527250011699, 33.769569487566791, 0.0 ], [ -118.098533067949703, 33.768776409503928, 0.0 ] ], [ [ -118.098533067949703, 33.768776409503928, 0.0 ], [ -118.098533107038406, 33.768771081097249, 0.0 ], [ -118.098525547368695, 33.768729854896563, 0.0 ], [ -118.098529033524898, 33.768675311431103, 0.0 ], [ -118.098515174378704, 33.768624329908008, 0.0 ], [ -118.098461571401003, 33.768455122924273, 0.0 ], [ -118.098461500419205, 33.768222719950678, 0.0 ], [ -118.098459906518102, 33.76696390009365, 0.0 ], [ -118.099365991363399, 33.766967042142753, 0.0 ], [ -118.099376179463604, 33.76566537329132, 0.0 ], [ -118.101754154056096, 33.765693877417817, 0.0 ], [ -118.101753926120196, 33.765448875174968, 0.0 ], [ -118.101754597076095, 33.765437133447023, 0.0 ], [ -118.101761054108394, 33.765010666495868, 0.0 ], [ -118.101759480115405, 33.764924378505512, 0.0 ], [ -118.101681041748193, 33.764924416411269, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.050200899355403, 33.980410908132868, 0.0 ], [ -118.0503633056571, 33.980248501831063, 0.0 ], [ -118.050535655201898, 33.980420851375463, 0.0 ], [ -118.050955431915298, 33.979999615258507, 0.0 ], [ -118.051035620864397, 33.980066531553973, 0.0 ] ], [ [ -118.051000755647195, 33.980118636920473, 0.0 ], [ -118.050949253517004, 33.9801701390506, 0.0 ] ], [ [ -118.051035620864397, 33.980066531553973, 0.0 ], [ -118.051045018690104, 33.980074373877557, 0.0 ], [ -118.051000755647195, 33.980118636920473, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 15", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.423895023968498, 33.908067151948281, 0.0 ], [ -118.423964688459705, 33.908221479285828, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 14", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.377035931919806, 33.858222590125202, 0.0 ], [ -118.377053333212004, 33.858235761702907, 0.0 ], [ -118.378511975791, 33.858232523494173, 0.0 ], [ -118.378739595093094, 33.858152087237393, 0.0 ] ], [ [ -118.376873272133693, 33.858135748016579, 0.0 ], [ -118.376914260671001, 33.858135718097948, 0.0 ], [ -118.376921163168007, 33.858135718097948, 0.0 ], [ -118.377035931919806, 33.858222590125202, 0.0 ] ], [ [ -118.376798206302595, 33.858201334075837, 0.0 ], [ -118.376798102663997, 33.85819151373618, 0.0 ] ], [ [ -118.376798102663997, 33.85819151373618, 0.0 ], [ -118.376797571828305, 33.858141214082863, 0.0 ] ], [ [ -118.378739595093094, 33.858152087237393, 0.0 ], [ -118.378740099070697, 33.858151909141377, 0.0 ], [ -118.378806256975395, 33.858041066297069, 0.0 ] ], [ [ -118.376797571828305, 33.858141214082863, 0.0 ], [ -118.376797514725993, 33.858135803313857, 0.0 ] ], [ [ -118.376797514725993, 33.858135803313857, 0.0 ], [ -118.376873272133693, 33.858135748016579, 0.0 ] ], [ [ -118.378806256975395, 33.858041066297069, 0.0 ], [ -118.378814663086004, 33.858026982459052, 0.0 ], [ -118.378981475060996, 33.857973092032331, 0.0 ] ], [ [ -118.378981475060996, 33.857973092032331, 0.0 ], [ -118.380205558930996, 33.857577638396528, 0.0 ], [ -118.380890440067006, 33.857335028393528, 0.0 ], [ -118.382970477848005, 33.856665060060642, 0.0 ], [ -118.384188640823993, 33.856238639106891, 0.0 ], [ -118.384192480260793, 33.85623728944303, 0.0 ] ], [ [ -118.384192480260793, 33.85623728944303, 0.0 ], [ -118.384688262336994, 33.856063008893997, 0.0 ], [ -118.386629142361201, 33.855406675124023, 0.0 ], [ -118.386762675861206, 33.855419287094691, 0.0 ], [ -118.388420383058005, 33.854875864548447, 0.0 ], [ -118.388470309801903, 33.85486063968316, 0.0 ] ], [ [ -118.388470309801903, 33.85486063968316, 0.0 ], [ -118.389868203202099, 33.854434360359683, 0.0 ], [ -118.389998839358, 33.854470236303143, 0.0 ], [ -118.390367483850994, 33.854362182392443, 0.0 ], [ -118.390375920237005, 33.854251316353171, 0.0 ], [ -118.390772598336596, 33.854030630428952, 0.0 ] ], [ [ -118.390772598336596, 33.854030630428952, 0.0 ], [ -118.390776776384996, 33.854028306034238, 0.0 ], [ -118.390781378050207, 33.854015523631418, 0.0 ], [ -118.392769801438803, 33.85294633673616, 0.0 ] ], [ [ -118.392769801438803, 33.85294633673616, 0.0 ], [ -118.392871897402003, 33.852891439139093, 0.0 ], [ -118.393017787225006, 33.85281542645123, 0.0 ], [ -118.393115103916998, 33.85276472292054, 0.0 ], [ -118.393145419673999, 33.852744284232791, 0.0 ] ], [ [ -118.393145419673999, 33.852744284232791, 0.0 ], [ -118.393247188744994, 33.852675672181832, 0.0 ], [ -118.393129164559994, 33.852463313865101, 0.0 ], [ -118.394368972405005, 33.851982439875947, 0.0 ], [ -118.394764375501893, 33.852262969916033, 0.0 ] ], [ [ -118.394790793794996, 33.85228171562354, 0.0 ], [ -118.394829479766003, 33.852309158088723, 0.0 ], [ -118.394866122652999, 33.852295267877778, 0.0 ], [ -118.394878819840002, 33.852277457730104, 0.0 ], [ -118.394884702110701, 33.852269705864629, 0.0 ] ], [ [ -118.394764375501893, 33.852262969916033, 0.0 ], [ -118.394790793794996, 33.85228171562354, 0.0 ] ], [ [ -118.394884702110701, 33.852269705864629, 0.0 ], [ -118.394913652950706, 33.852231570911833, 0.0 ] ], [ [ -118.394913652950706, 33.852231570911833, 0.0 ], [ -118.394931272005195, 33.85220836074393, 0.0 ] ], [ [ -118.394931272005195, 33.85220836074393, 0.0 ], [ -118.394942731853007, 33.852193264304269, 0.0 ], [ -118.394929012074996, 33.8521715342197, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 10", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.089365991066799, 33.827439836375547, 0.0 ], [ -118.089350555373002, 33.827437220928928, 0.0 ], [ -118.089354662641696, 33.827407086317962, 0.0 ], [ -118.089355042406893, 33.827404300019893, 0.0 ], [ -118.089350311978507, 33.827402883734322, 0.0 ] ], [ [ -118.089350311978507, 33.827402883734322, 0.0 ], [ -118.089282533734902, 33.827382561010218, 0.0 ] ], [ [ -118.089282533734902, 33.827382561010218, 0.0 ], [ -118.089144692838403, 33.827341506077317, 0.0 ] ], [ [ -118.089144692838403, 33.827341506077317, 0.0 ], [ -118.089142874885297, 33.827340937883747, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 187", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.348769881216199, 34.195132942526897, 0.0 ], [ -118.348769047079003, 34.19524026801848, 0.0 ] ], [ [ -118.349069245087605, 34.19253470614062, 0.0 ], [ -118.349029960503302, 34.193516479882888, 0.0 ], [ -118.348775079393704, 34.193516905963143, 0.0 ], [ -118.348783771427605, 34.195067155761073, 0.0 ], [ -118.348770392512705, 34.195067155761073, 0.0 ], [ -118.348769881216199, 34.195132942526897, 0.0 ] ], [ [ -118.349072787688399, 34.192446035725609, 0.0 ], [ -118.349069245087605, 34.19253470614062, 0.0 ] ], [ [ -118.349049466717901, 34.184635321999863, 0.0 ], [ -118.349004736561994, 34.188188007498681, 0.0 ], [ -118.349002350513501, 34.188678425681907, 0.0 ], [ -118.348963492009403, 34.190121132865222, 0.0 ], [ -118.348964258953501, 34.190312442825103, 0.0 ], [ -118.349158040178196, 34.190312187177277, 0.0 ], [ -118.349072787688399, 34.192446035725609, 0.0 ] ], [ [ -118.349170984978201, 34.177387217969731, 0.0 ], [ -118.349123612906993, 34.179022002179252, 0.0 ], [ -118.349152501137098, 34.179047566984607, 0.0 ], [ -118.349153353297297, 34.179284382298441, 0.0 ], [ -118.349123868554997, 34.17930926537548, 0.0 ], [ -118.349112705256701, 34.180424913482177, 0.0 ], [ -118.349085947427099, 34.181805753836599, 0.0 ], [ -118.349050923643603, 34.183039085263992, 0.0 ], [ -118.349037289080798, 34.184480428990987, 0.0 ], [ -118.349051264507807, 34.184492529665327, 0.0 ], [ -118.349049466717901, 34.184635321999863, 0.0 ] ], [ [ -118.3492242723988, 34.175549033058758, 0.0 ], [ -118.349170984978201, 34.177387217969731, 0.0 ] ], [ [ -118.349225105164905, 34.175520305335652, 0.0 ], [ -118.3492242723988, 34.175549033058758, 0.0 ] ], [ [ -118.346695126828394, 34.167439526239818, 0.0 ], [ -118.346966284197407, 34.16802368204263, 0.0 ], [ -118.347026787570101, 34.168044815614962, 0.0 ], [ -118.348891654906197, 34.171867435746947, 0.0 ], [ -118.348865323156701, 34.171877917317254, 0.0 ], [ -118.348859017171307, 34.171907402059247, 0.0 ], [ -118.349303930000801, 34.172799358119022, 0.0 ], [ -118.349225105164905, 34.175520305335652, 0.0 ] ], [ [ -118.343373909901004, 34.160668836844877, 0.0 ], [ -118.343589343839199, 34.161100221450951, 0.0 ], [ -118.344520669698994, 34.16290330717392, 0.0 ], [ -118.345230348696404, 34.164457476908787, 0.0 ], [ -118.345224383575101, 34.164459607309169, 0.0 ], [ -118.345267247232101, 34.16452556450691, 0.0 ], [ -118.345332693133798, 34.1645472945916, 0.0 ], [ -118.345516078004394, 34.164899321961613, 0.0 ], [ -118.346695126828394, 34.167439526239818, 0.0 ] ], [ [ -118.343599232070304, 34.160591114938448, 0.0 ], [ -118.343373909901004, 34.160668836844877, 0.0 ] ], [ [ -118.343604299650494, 34.160601267112312, 0.0 ], [ -118.343599232070304, 34.160591114938448, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.846563075060004, 34.005091756646323, 0.0 ], [ -117.846536483949507, 34.005113500299792, 0.0 ], [ -117.8465211298616, 34.006497009051351, 0.0 ], [ -117.846168085615204, 34.006496559596201, 0.0 ], [ -117.846164799333707, 34.00738481719879, 0.0 ], [ -117.845430902281706, 34.007721842057649, 0.0 ], [ -117.845429934848994, 34.008245774378381, 0.0 ], [ -117.846381535802095, 34.009040693758017, 0.0 ], [ -117.846350426320399, 34.009133313444821, 0.0 ], [ -117.846491764533596, 34.009166011271738, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 257", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.253037616028095, 33.777602430254298, 0.0 ], [ -118.252817602921994, 33.774753304058052, 0.0 ], [ -118.252814194281299, 33.774753559706191, 0.0 ], [ -118.252736562488906, 33.773735569156138, 0.0 ], [ -118.252750537915901, 33.773725343233949, 0.0 ], [ -118.252727444375097, 33.773595729670703, 0.0 ], [ -118.252734687736606, 33.773586952420807, 0.0 ], [ -118.252718922773298, 33.773495856497689, 0.0 ], [ -118.252700686545495, 33.773154140265817, 0.0 ], [ -118.252669838347003, 33.772677441861632, 0.0 ], [ -118.252700771761496, 33.772645400638879, 0.0 ], [ -118.252679212108902, 33.772613018551993, 0.0 ], [ -118.252595444763301, 33.772493801342918, 0.0 ], [ -118.252509632233298, 33.77240142717956, 0.0 ], [ -118.252466086848102, 33.772429804113443, 0.0 ], [ -118.252384961199098, 33.772290902004229, 0.0 ], [ -118.252319770945306, 33.772209776355233, 0.0 ], [ -118.252247337330104, 33.772134615827433, 0.0 ], [ -118.252138686907301, 33.772036702622813, 0.0 ], [ -118.252010266368302, 33.771932824297018, 0.0 ], [ -118.251955642900796, 33.771876070429137, 0.0 ], [ -118.251889600486905, 33.771787957066543, 0.0 ], [ -118.2518350622355, 33.771706916633534, 0.0 ], [ -118.251794756883697, 33.771624999478789, 0.0 ], [ -118.251763056463901, 33.771500924967853, 0.0 ], [ -118.251738736111605, 33.771331914240832, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 201", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.5972920106217, 34.171945073780627, 0.0 ], [ -118.597295386538093, 34.17194505710669, 0.0 ], [ -118.597295327603007, 34.171936813641061, 0.0 ], [ -118.597311857393507, 34.171936731997889, 0.0 ], [ -118.597312069650002, 34.171959514189503, 0.0 ] ], [ [ -118.597285390094498, 34.17193958717818, 0.0 ], [ -118.597285405960406, 34.171942079832696, 0.0 ], [ -118.597285425346797, 34.171945106305458, 0.0 ] ], [ [ -118.597285425346797, 34.171945106305458, 0.0 ], [ -118.5972920106217, 34.171945073780627, 0.0 ] ], [ [ -118.597285316887806, 34.17192808575529, 0.0 ], [ -118.597285390094498, 34.17193958717818, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 162", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.224616875174704, 33.839248013806312, 0.0 ], [ -118.224798129644796, 33.839247417294118, 0.0 ], [ -118.224797788780705, 33.839236509643897, 0.0 ], [ -118.224814320688196, 33.839236680075921, 0.0 ], [ -118.224825483986507, 33.839199440676083, 0.0 ], [ -118.225079001639799, 33.839199014595948, 0.0 ], [ -118.225861741790794, 33.839196165103822, 0.0 ], [ -118.225864064986098, 33.839194217745231, 0.0 ], [ -118.225936458313498, 33.839196474632828, 0.0 ], [ -118.226056940661493, 33.83919611725134, 0.0 ] ], [ [ -118.236583760571094, 33.839211711782688, 0.0 ], [ -118.236643070919499, 33.839211285702561, 0.0 ], [ -118.236644178727701, 33.839203104964866, 0.0 ], [ -118.236715930614807, 33.839212223078768, 0.0 ], [ -118.237108606025302, 33.838262575775182, 0.0 ], [ -118.237522492549402, 33.837178683249007, 0.0 ], [ -118.237535280090299, 33.837181317064292, 0.0 ], [ -118.237554385760603, 33.837128724308577, 0.0 ], [ -118.237541598226997, 33.837126090495218, 0.0 ], [ -118.238164432487395, 33.835491265656351, 0.0 ], [ -118.2381761922978, 33.83549101000829, 0.0 ], [ -118.238176277513801, 33.835507541915767, 0.0 ], [ -118.238227407124597, 33.835507371483793, 0.0 ], [ -118.238227321908596, 33.835485470967193, 0.0 ], [ -118.238661962245601, 33.835484022448362, 0.0 ], [ -118.238661989267698, 33.835497761491737, 0.0 ] ], [ [ -118.227974386280593, 33.839193475554922, 0.0 ], [ -118.231934794024198, 33.83919043150555, 0.0 ], [ -118.231934782627107, 33.839186309796247, 0.0 ], [ -118.231964418660695, 33.839186252729263, 0.0 ], [ -118.231964430059307, 33.839190374438679, 0.0 ], [ -118.234466227741706, 33.839188362593752, 0.0 ], [ -118.236405659093606, 33.83918461308896, 0.0 ], [ -118.236405999957597, 33.839211967430749, 0.0 ] ], [ [ -118.236405999957597, 33.839211967430749, 0.0 ], [ -118.236583760571094, 33.839211711782688, 0.0 ] ], [ [ -118.226056940661493, 33.83919611725134, 0.0 ], [ -118.226208369525395, 33.83919611725134, 0.0 ], [ -118.226212374678198, 33.839198503299897, 0.0 ], [ -118.226265123393304, 33.839198588515899, 0.0 ], [ -118.226268702466001, 33.839195776387292, 0.0 ], [ -118.227882182549294, 33.839192708610703, 0.0 ], [ -118.227974386280593, 33.839193475554922, 0.0 ] ], [ [ -118.238661989267698, 33.835497761491737, 0.0 ], [ -118.238662010885406, 33.835508752726547, 0.0 ], [ -118.238704816606102, 33.835508667902722, 0.0 ] ], [ [ -118.238704816606102, 33.835508667902722, 0.0 ], [ -118.2387114021016, 33.835508654852433, 0.0 ], [ -118.238711314801506, 33.835483924420892, 0.0 ], [ -118.238793633470493, 33.83548376125249, 0.0 ], [ -118.238793634732403, 33.835485135158358, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.053252027667199, 33.956332664817893, 0.0 ], [ -118.052655321910095, 33.956938152145163, 0.0 ] ], [ [ -118.053335775864099, 33.956247684119482, 0.0 ], [ -118.053252027667199, 33.956332664817893, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 199", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.480656245543599, 34.137594027272392, 0.0 ], [ -118.480674732760505, 34.137578470104913, 0.0 ], [ -118.481035622596394, 34.13747331353882, 0.0 ], [ -118.481279255191595, 34.137427552537147, 0.0 ], [ -118.481598048314595, 34.137393295697898, 0.0 ], [ -118.481864348370607, 34.137352136361237, 0.0 ], [ -118.482127836298005, 34.137315663905511, 0.0 ], [ -118.482283866826805, 34.137329213252443, 0.0 ], [ -118.4825367027521, 34.137403692052082, 0.0 ], [ -118.482812376569996, 34.13751813716415, 0.0 ], [ -118.483045527594996, 34.137627980611292, 0.0 ], [ -118.483197467755005, 34.137667435627577, 0.0 ], [ -118.483430192699899, 34.137697176017852, 0.0 ], [ -118.483659764652202, 34.137689165712082, 0.0 ], [ -118.483889166172403, 34.137636416997083, 0.0 ], [ -118.484175577208603, 34.137455673823062, 0.0 ], [ -118.484358024702999, 34.137312681344923, 0.0 ], [ -118.4846093267398, 34.137137221564011, 0.0 ], [ -118.484832507490694, 34.136987752668588, 0.0 ], [ -118.485015977577305, 34.136840840253747, 0.0 ], [ -118.485168258601306, 34.136705858081363, 0.0 ], [ -118.4852725630073, 34.136596952010443, 0.0 ], [ -118.485357012081096, 34.136490517204066, 0.0 ], [ -118.485424503167195, 34.136395927424182, 0.0 ], [ -118.4855171329787, 34.136227199708699, 0.0 ], [ -118.485632515467003, 34.136085229822932, 0.0 ], [ -118.485810446512403, 34.135954849315461, 0.0 ], [ -118.486014112795203, 34.135864435120411, 0.0 ], [ -118.486181221406298, 34.135833160841841, 0.0 ], [ -118.486711179821796, 34.135786888544132, 0.0 ], [ -118.486909477495402, 34.135753057785017, 0.0 ], [ -118.487073518330007, 34.135686418859002, 0.0 ], [ -118.487246165982299, 34.135521014568212, 0.0 ] ], [ [ -118.487246165982299, 34.135521014568212, 0.0 ], [ -118.487273690756098, 34.135494597602602, 0.0 ], [ -118.487391544508895, 34.135279597589452, 0.0 ], [ -118.487419069282595, 34.135140354616212, 0.0 ], [ -118.487415575425899, 34.135017984414397, 0.0 ], [ -118.487380722074604, 34.134874310208268, 0.0 ], [ -118.4873147648767, 34.134750065254067, 0.0 ], [ -118.487231764475297, 34.134618662154473, 0.0 ], [ -118.4871120359701, 34.134508307411323, 0.0 ], [ -118.486924219866594, 34.134398208316078, 0.0 ], [ -118.486711350253799, 34.134354322066841, 0.0 ], [ -118.486467376794494, 34.1343411135841, 0.0 ], [ -118.486209427908307, 34.134346908273344, 0.0 ], [ -118.485781473066297, 34.134381591192678, 0.0 ], [ -118.485240521784604, 34.134496973680918, 0.0 ], [ -118.484770640661793, 34.134630848045042, 0.0 ], [ -118.484524281153895, 34.134690840121714, 0.0 ], [ -118.484306042932005, 34.134711718046063, 0.0 ], [ -118.484133054415594, 34.134703026012197, 0.0 ], [ -118.483914390113696, 34.134651981617452, 0.0 ], [ -118.483760916065407, 34.134591307812713, 0.0 ], [ -118.483621587876101, 34.134518788981531, 0.0 ], [ -118.483470755524493, 34.134425051361703, 0.0 ], [ -118.483334239463701, 34.134350146482006, 0.0 ], [ -118.483180680199396, 34.134275326818297, 0.0 ], [ -118.482979059101098, 34.134221896375003, 0.0 ], [ -118.482732273513193, 34.134199314130321, 0.0 ], [ -118.482539429664598, 34.134204767955467, 0.0 ], [ -118.482374962750001, 34.134203063635113, 0.0 ], [ -118.482139340460506, 34.134155001800949, 0.0 ], [ -118.481974703113906, 34.134110859903693, 0.0 ], [ -118.481767202110206, 34.134022064813053, 0.0 ], [ -118.481636310306698, 34.133942387836321, 0.0 ], [ -118.481482495394303, 34.133827516644203, 0.0 ], [ -118.481331748258697, 34.133745538834823, 0.0 ], [ -118.481166684831905, 34.133643194397287, 0.0 ], [ -118.4810331513319, 34.133594195187086, 0.0 ], [ -118.480684106522503, 34.133543747304422, 0.0 ], [ -118.480542051420599, 34.133490998589338, 0.0 ], [ -118.480402893663396, 34.133453588757497, 0.0 ], [ -118.480263565474004, 34.133385756807208, 0.0 ], [ -118.480166760077694, 34.133322526521923, 0.0 ], [ -118.480081288411697, 34.13324736599408, 0.0 ], [ -118.479987039495896, 34.13312584795257, 0.0 ], [ -118.479918014521402, 34.132963426222382, 0.0 ], [ -118.479877536912795, 34.132824524113211, 0.0 ], [ -118.479854017291899, 34.132673691761518, 0.0 ], [ -118.479850353003101, 34.132532233171801, 0.0 ], [ -118.479874810000197, 34.132348933517221, 0.0 ], [ -118.479922019674206, 34.132175007624703, 0.0 ], [ -118.480003400971299, 34.132028436073803, 0.0 ], [ -118.480216867096203, 34.131674363519402, 0.0 ] ], [ [ -118.480216867096203, 34.131674363519402, 0.0 ], [ -118.480237659804601, 34.131639936248128, 0.0 ] ], [ [ -118.480237659804601, 34.131639936248128, 0.0 ], [ -118.480513077974507, 34.131183093176077, 0.0 ], [ -118.4805839777014, 34.130976955628768, 0.0 ], [ -118.480611246827195, 34.130836008335088, 0.0 ], [ -118.480615337195999, 34.130700088786512, 0.0 ], [ -118.480617041516396, 34.130001913951688, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.043127124025602, 33.966508432256163, 0.0 ], [ -118.043441355101706, 33.966736915303471, 0.0 ], [ -118.044206452238498, 33.968125533405299, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 192", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.924615070325601, 34.557602472880752, 0.0 ], [ -117.924618715798005, 34.557815080964453, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 170", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.193264895777901, 33.890560303290997, 0.0 ], [ -118.193376109357104, 33.890560101915923, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 158", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.063657025808993, 33.918092600497133, 0.0 ], [ -118.063658389265996, 33.918092600497133, 0.0 ], [ -118.063735935842004, 33.918092600497133, 0.0 ], [ -118.063902277509001, 33.918092685713127, 0.0 ], [ -118.063902192293, 33.917929241390773, 0.0 ], [ -118.063902192293, 33.917925406669951, 0.0 ], [ -118.063902192293, 33.917918930252583, 0.0 ], [ -118.063902192293, 33.917883139525088, 0.0 ], [ -118.063902021860997, 33.917711258817022, 0.0 ], [ -118.063901680997006, 33.917314066957417, 0.0 ], [ -118.063901680997006, 33.917252796640518, 0.0 ], [ -118.063801211311997, 33.917252967072628, 0.0 ], [ -118.063768488361006, 33.917253137504566, 0.0 ], [ -118.063268866848006, 33.917254415744928, 0.0 ], [ -118.063268440767999, 33.917205757398577, 0.0 ], [ -118.063245602875, 33.917206013046723, 0.0 ], [ -118.062419263148996, 33.917214108568409, 0.0 ] ], [ [ -118.063653729807996, 33.918092602237223, 0.0 ], [ -118.063657025808993, 33.918092600497133, 0.0 ] ], [ [ -118.058611981900697, 33.917245041982881, 0.0 ], [ -118.058579173713994, 33.917244881389863, 0.0 ] ], [ [ -118.062419263148996, 33.917214108568409, 0.0 ], [ -118.062330212410004, 33.917017600431087, 0.0 ], [ -118.062320838648006, 33.916996978154756, 0.0 ], [ -118.060575188521, 33.916859269069818, 0.0 ], [ -118.060544943630404, 33.916868413081808, 0.0 ], [ -118.060175184532994, 33.916869068911801, 0.0 ], [ -118.058928072332705, 33.917006042361393, 0.0 ], [ -118.058620620291094, 33.91723851039653, 0.0 ], [ -118.058611981900697, 33.917245041982881, 0.0 ] ], [ [ -118.058579173713994, 33.917244881389863, 0.0 ], [ -118.057103402734995, 33.917237883837437, 0.0 ], [ -118.056653121297003, 33.917238139485377, 0.0 ], [ -118.056571228703007, 33.917235838652992, 0.0 ], [ -118.056181024557006, 33.917224760570612, 0.0 ], [ -118.055773095480006, 33.917179170000971, 0.0 ], [ -118.055752899282993, 33.91717712481659, 0.0 ], [ -118.055385618246007, 33.917139374120701, 0.0 ], [ -118.055336704251999, 33.917133664647523, 0.0 ], [ -118.055336547634496, 33.917133647461633, 0.0 ] ], [ [ -118.030962330483007, 33.917174225374673, 0.0 ], [ -118.030962366647003, 33.917212233816016, 0.0 ], [ -118.030962371904096, 33.917226687525208, 0.0 ] ], [ [ -118.030962281431002, 33.917122671781193, 0.0 ], [ -118.030962330483007, 33.917174225374673, 0.0 ] ], [ [ -118.042982682486198, 33.917124951253797, 0.0 ], [ -118.041654079550995, 33.917131534246991, 0.0 ], [ -118.038524095213006, 33.917146958346308, 0.0 ], [ -118.037318032911003, 33.91715300868362, 0.0 ], [ -118.037287610793001, 33.917153179115608, 0.0 ], [ -118.037287610793001, 33.91711466147553, 0.0 ], [ -118.036076435530006, 33.917117899684229, 0.0 ], [ -118.035281966594994, 33.917120030084597, 0.0 ], [ -118.035270377215994, 33.917113127587108, 0.0 ], [ -118.034067041827001, 33.917104179905323, 0.0 ], [ -118.034039005757904, 33.917117899684229, 0.0 ], [ -118.033835339475004, 33.917117984900138, 0.0 ], [ -118.033832271698003, 33.91713511331983, 0.0 ], [ -118.032396296580004, 33.917153264331638, 0.0 ], [ -118.032393484452001, 33.917132982919249, 0.0 ], [ -118.031998763857004, 33.917133664647523, 0.0 ], [ -118.031983936269, 33.917122501349077, 0.0 ], [ -118.030962281431002, 33.917122671781193, 0.0 ] ], [ [ -118.055336547634496, 33.917133647461633, 0.0 ], [ -118.054821829071997, 33.917077166427553, 0.0 ], [ -118.054098004215007, 33.917000983307567, 0.0 ], [ -118.053940525013999, 33.917000472011487, 0.0 ], [ -118.053799880309597, 33.917000070537071, 0.0 ], [ -118.053795292535, 33.91700005740006, 0.0 ], [ -118.051616428558006, 33.916993484297997, 0.0 ], [ -118.051375778522996, 33.916992802569801, 0.0 ], [ -118.050387017066996, 33.916989820009213, 0.0 ], [ -118.050363923526007, 33.917002602411898, 0.0 ], [ -118.050040187874004, 33.917003965868169, 0.0 ], [ -118.050011810940006, 33.916994762538273, 0.0 ], [ -118.048386485829994, 33.917015470030591, 0.0 ], [ -118.047774293958, 33.917023224688307, 0.0 ], [ -118.047721033946004, 33.917057566743473, 0.0 ], [ -118.046696296990902, 33.917064536296401, 0.0 ] ], [ [ -118.046683252994299, 33.917064625012642, 0.0 ], [ -118.044181581325603, 33.917081639655287, 0.0 ], [ -118.044181330993993, 33.917119007492403, 0.0 ], [ -118.043526701545005, 33.9171221604851, 0.0 ], [ -118.043408336496, 33.917122842213217, 0.0 ], [ -118.042982682486198, 33.917124951253797, 0.0 ] ], [ [ -118.046696296990902, 33.917064536296401, 0.0 ], [ -118.046683252994299, 33.917064625012642, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 198", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.474812409677, 34.163878295433292, 0.0 ], [ -118.474909899881894, 34.16387745860748, 0.0 ], [ -118.474895211993299, 34.160323307015453, 0.0 ], [ -118.474929459639498, 34.155851331325572, 0.0 ], [ -118.474855970688495, 34.155851774053737, 0.0 ], [ -118.474855877495997, 34.155821537743734, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 196", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.454778850217593, 34.133084826673397, 0.0 ], [ -118.4548103930819, 34.133087074664431, 0.0 ], [ -118.454927394674499, 34.133078126982483, 0.0 ], [ -118.4557563760969, 34.132966238350953, 0.0 ], [ -118.455862896119299, 34.132934282344351, 0.0 ], [ -118.455934988870396, 34.13288826569466, 0.0 ], [ -118.456000093908102, 34.132830659666517, 0.0 ], [ -118.456054802591595, 34.132773309286428, 0.0 ], [ -118.456106017418406, 34.132698660054707, 0.0 ], [ -118.456174360664704, 34.132606882403479, 0.0 ], [ -118.456242789127202, 34.132529335827122, 0.0 ], [ -118.456311217589501, 34.132454601379443, 0.0 ], [ -118.4563901276221, 34.132399977911973, 0.0 ], [ -118.456479263576895, 34.132353790830287, 0.0 ], [ -118.456578966317807, 34.132327714728817, 0.0 ], [ -118.456661540639104, 34.132312972357703, 0.0 ], [ -118.456754426098698, 34.132295503073998, 0.0 ], [ -118.456843817701497, 34.132275136445649, 0.0 ], [ -118.456915910452693, 34.132243436087073, 0.0 ], [ -118.456981015490399, 34.132194522092703, 0.0 ], [ -118.457046120528005, 34.132128394462796, 0.0 ], [ -118.457135086050698, 34.132047865325887, 0.0 ], [ -118.457241265209106, 34.131964524060358, 0.0 ], [ -118.457368237075798, 34.131875302889632, 0.0 ], [ -118.457519069427605, 34.131768782867233, 0.0 ], [ -118.457628827658596, 34.131691065858917, 0.0 ], [ -118.457759208166095, 34.131613263634527, 0.0 ], [ -118.457838118198595, 34.131558640166993, 0.0 ], [ -118.457910040517703, 34.131495409881737, 0.0 ], [ -118.457973357399894, 34.131416970069651, 0.0 ] ], [ [ -118.454551402668599, 34.13305046834941, 0.0 ], [ -118.454596926957095, 34.133065088931872, 0.0 ], [ -118.454696800130094, 34.13307897914278, 0.0 ], [ -118.454778850217593, 34.133084826673397, 0.0 ] ], [ [ -118.454477138310907, 34.133017386332803, 0.0 ], [ -118.454517590844404, 34.133039609342482, 0.0 ], [ -118.454551402668599, 34.13305046834941, 0.0 ] ], [ [ -118.448891417473703, 34.131465886860987, 0.0 ], [ -118.448884641627998, 34.131471975476799, 0.0 ], [ -118.448940032039602, 34.131531882337427, 0.0 ], [ -118.448981702672299, 34.131606190705092, 0.0 ], [ -118.449013062166998, 34.131689105890487, 0.0 ], [ -118.449048000734194, 34.131780457461673, 0.0 ], [ -118.449086433158399, 34.131866184775717, 0.0 ], [ -118.449152219924201, 34.131949014745167, 0.0 ], [ -118.449231726468895, 34.132014631078903, 0.0 ], [ -118.449321458935799, 34.13206567547364, 0.0 ], [ -118.449428405038205, 34.132096779320143, 0.0 ], [ -118.4495385041334, 34.132099335800689, 0.0 ], [ -118.449648603228596, 34.132087405558288, 0.0 ], [ -118.449758702323706, 34.132058432112167, 0.0 ], [ -118.449947541019398, 34.131986083712981, 0.0 ], [ -118.450050567185002, 34.131945691320432, 0.0 ], [ -118.450167398345698, 34.131916632658267, 0.0 ], [ -118.450322321066196, 34.1319017198552, 0.0 ], [ -118.450993141559294, 34.131833376608903, 0.0 ], [ -118.451130765428204, 34.131827241055547, 0.0 ], [ -118.451261572015696, 34.13182954188796, 0.0 ], [ -118.451392463819303, 34.131846159011467, 0.0 ], [ -118.451523440838898, 34.131865758695547, 0.0 ], [ -118.451668222853201, 34.131902401583318, 0.0 ], [ -118.451833627143998, 34.131947566072782, 0.0 ], [ -118.452054336630397, 34.13200397907665, 0.0 ], [ -118.452292089320395, 34.132057494735918, 0.0 ], [ -118.452502061588604, 34.13208246302915, 0.0 ], [ -118.452663972022606, 34.132093370679492, 0.0 ], [ -118.452825797240607, 34.132098483640547, 0.0 ], [ -118.452980719961204, 34.132094989783823, 0.0 ], [ -118.453125331543603, 34.132103085305467, 0.0 ], [ -118.453259631987805, 34.132122599773638, 0.0 ], [ -118.453387200366706, 34.132147908930889, 0.0 ], [ -118.453521671242996, 34.132201765454248, 0.0 ], [ -118.4536390136996, 34.132252809849, 0.0 ], [ -118.453759935229101, 34.132326777352482, 0.0 ], [ -118.453856740625497, 34.13239520581498, 0.0 ], [ -118.453939570594798, 34.132460736932707, 0.0 ], [ -118.454022570996301, 34.132530017555311, 0.0 ], [ -118.454085034337396, 34.132611910148533, 0.0 ], [ -118.454268674855996, 34.132851622806903, 0.0 ], [ -118.454341534551403, 34.132934282344351, 0.0 ], [ -118.454424364520705, 34.132988394515699, 0.0 ], [ -118.454477138310907, 34.133017386332803, 0.0 ] ], [ [ -118.428071539448297, 34.131309236905217, 0.0 ], [ -118.428103096554096, 34.131310320690837, 0.0 ], [ -118.428203140159198, 34.131347134010603, 0.0 ], [ -118.4283031837642, 34.131395366276692, 0.0 ], [ -118.428451459635397, 34.131463624307052, 0.0 ], [ -118.428561814378597, 34.131500437626798, 0.0 ], [ -118.428678901187297, 34.131508618364563, 0.0 ], [ -118.428785506425697, 34.131485269175663, 0.0 ], [ -118.429084273784397, 34.131369801471379, 0.0 ], [ -118.429187640814206, 34.13136076857343, 0.0 ], [ -118.429359862386406, 34.131397496677153, 0.0 ], [ -118.429432466433695, 34.131457318321793, 0.0 ], [ -118.429467405001006, 34.131571593001709, 0.0 ], [ -118.429540520344403, 34.131705893445996, 0.0 ], [ -118.429568726846398, 34.131851783268687, 0.0 ], [ -118.429669196531506, 34.131968784861307, 0.0 ], [ -118.429765916711801, 34.132028606505827, 0.0 ], [ -118.4299037962288, 34.132068231954193, 0.0 ], [ -118.430038096673002, 34.132084763861677, 0.0 ], [ -118.430162000763104, 34.13208732034218, 0.0 ], [ -118.430567629008294, 34.131982760288253, 0.0 ], [ -118.430718717008105, 34.131893539117428, 0.0 ], [ -118.430838615945305, 34.131790001655709, 0.0 ], [ -118.430927666684099, 34.131732480843603, 0.0 ], [ -118.431027369425095, 34.131703507397482, 0.0 ], [ -118.431137724168295, 34.131723192297592, 0.0 ], [ -118.4312170602809, 34.131771594995797, 0.0 ], [ -118.431393713086095, 34.131968358781258, 0.0 ], [ -118.431503982613293, 34.132008069445497, 0.0 ], [ -118.431627971919298, 34.132027669129691, 0.0 ], [ -118.431775992142406, 34.132032867306783, 0.0 ], [ -118.431961933493497, 34.132023578760851, 0.0 ], [ -118.432268029429906, 34.131973897822363, 0.0 ], [ -118.433367486493097, 34.131589232717467, 0.0 ], [ -118.433525306558295, 34.131477003221903, 0.0 ], [ -118.433658584410296, 34.131290465358582, 0.0 ], [ -118.433774563410694, 34.13111261952924, 0.0 ], [ -118.4339081821268, 34.130991868431877, 0.0 ], [ -118.434086709684294, 34.130885433625473, 0.0 ], [ -118.434268560666595, 34.130793059462043, 0.0 ], [ -118.434478106854698, 34.130706479987879, 0.0 ], [ -118.434629365286497, 34.130657310345477, 0.0 ], [ -118.434784117575006, 34.130622371778117, 0.0 ], [ -118.434938869863601, 34.130601834717908, 0.0 ], [ -118.435083311013898, 34.130589819259328, 0.0 ], [ -118.435238318950496, 34.130586410618598, 0.0 ], [ -118.435382760100893, 34.130588711451082, 0.0 ], [ -118.435523963042499, 34.13060251644599, 0.0 ], [ -118.435661842559597, 34.13062492825879, 0.0 ], [ -118.435772197302796, 34.130661826794459, 0.0 ], [ -118.435879058189201, 34.130704264371388, 0.0 ], [ -118.436614216775794, 34.131085179971492, 0.0 ], [ -118.436638162476797, 34.131050837916263, 0.0 ], [ -118.436821036051299, 34.131127361900361, 0.0 ], [ -118.436915078688301, 34.13116323191808, 0.0 ] ], [ [ -118.436932963257803, 34.131170053502899, 0.0 ], [ -118.437252229101901, 34.131291828814973, 0.0 ], [ -118.437255722958696, 34.131311939795253, 0.0 ], [ -118.437956965570194, 34.131565372232487, 0.0 ], [ -118.437990114601106, 34.131555401958373, 0.0 ], [ -118.438117682979893, 34.131600736879861, 0.0 ], [ -118.438248659999502, 34.131631840726399, 0.0 ], [ -118.438379637018997, 34.131651269978562, 0.0 ], [ -118.438513937463298, 34.131659365500248, 0.0 ], [ -118.438696299741594, 34.131658683772073, 0.0 ], [ -118.438854631102899, 34.131646668313557, 0.0 ], [ -118.439016200672896, 34.131620421780092, 0.0 ], [ -118.439171038177506, 34.131594004814467, 0.0 ], [ -118.439322296609205, 34.131561963591722, 0.0 ], [ -118.4394941773174, 34.131518418206582, 0.0 ], [ -118.439672790090896, 34.131463368658977, 0.0 ], [ -118.441638321404497, 34.130749128971154, 0.0 ] ], [ [ -118.447363605719303, 34.130885817560397, 0.0 ], [ -118.447383902336398, 34.130839331759788, 0.0 ], [ -118.448690775187202, 34.131275211691452, 0.0 ], [ -118.448780507654007, 34.131312110227242, 0.0 ], [ -118.448866916696204, 34.131366222398633, 0.0 ], [ -118.448932533030003, 34.131428941387711, 0.0 ], [ -118.448891417473703, 34.131465886860987, 0.0 ] ], [ [ -118.457973357399894, 34.131416970069651, 0.0 ], [ -118.457974975123307, 34.13141496596085, 0.0 ], [ -118.458026104734103, 34.13132608565418, 0.0 ], [ -118.458080728201594, 34.131240017476031, 0.0 ], [ -118.458107180057894, 34.131205991299758, 0.0 ] ], [ [ -118.427497463372106, 34.131151878665698, 0.0 ], [ -118.427499937579398, 34.131152074545582, 0.0 ], [ -118.427517065998899, 34.131166390836569, 0.0 ], [ -118.427706671638802, 34.131214367454689, 0.0 ], [ -118.427934368838706, 34.131304526001557, 0.0 ], [ -118.428071539448297, 34.131309236905217, 0.0 ] ], [ [ -118.462704451631595, 34.131180990563948, 0.0 ], [ -118.462820272686201, 34.131201925916052, 0.0 ], [ -118.462951164489695, 34.13121573091091, 0.0 ], [ -118.463061263584905, 34.13121530483086, 0.0 ], [ -118.463164460182497, 34.131197665115103, 0.0 ], [ -118.463233059076998, 34.131157357938648, 0.0 ], [ -118.463287938192593, 34.131105717031829, 0.0 ], [ -118.463328927097194, 34.131042486746502, 0.0 ], [ -118.463359519647597, 34.130979512109228, 0.0 ], [ -118.463379801059801, 34.130916367040058, 0.0 ], [ -118.463396588615396, 34.130850495058162, 0.0 ], [ -118.463405091179197, 34.130810586149252, 0.0 ] ], [ [ -118.458107180057894, 34.131205991299758, 0.0 ], [ -118.458138760309794, 34.131165368244318, 0.0 ], [ -118.458241360395405, 34.13104470236307, 0.0 ], [ -118.458327002493306, 34.13094713002242, 0.0 ], [ -118.458392022314996, 34.130883899737171, 0.0 ], [ -118.4584741705563, 34.130817686891291, 0.0 ], [ -118.458559983086403, 34.130762978207741, 0.0 ], [ -118.458669911749496, 34.13071108165277, 0.0 ], [ -118.458776261339807, 34.130664809355061, 0.0 ], [ -118.458889683859695, 34.130633023780447, 0.0 ], [ -118.459006600236293, 34.130606777246861, 0.0 ], [ -118.4591270104697, 34.130580530713402, 0.0 ], [ -118.459223219353802, 34.130565873558261, 0.0 ], [ -118.459329909808304, 34.130554028531783, 0.0 ], [ -118.4594400089034, 34.130544995633912, 0.0 ], [ -118.459581126629104, 34.130535877519968, 0.0 ], [ -118.459708439359801, 34.130532468879238, 0.0 ], [ -118.459859783007701, 34.130526162893908, 0.0 ], [ -118.4599767846004, 34.130522924685287, 0.0 ], [ -118.460079981198007, 34.130511079658802, 0.0 ], [ -118.460193488933896, 34.130490627814467, 0.0 ], [ -118.460310320094393, 34.130458671807737, 0.0 ], [ -118.460430559895698, 34.130421006327772, 0.0 ], [ -118.460550884913005, 34.130391862449699, 0.0 ], [ -118.460654166726698, 34.130382914767821, 0.0 ], [ -118.460750631259003, 34.130396890194682, 0.0 ], [ -118.460853998288798, 34.130422284568127, 0.0 ], [ -118.4609540418938, 34.130464807360973, 0.0 ], [ -118.461074878207199, 34.130521561228967, 0.0 ], [ -118.461157793392601, 34.130575673400358, 0.0 ], [ -118.461240708578103, 34.130632597700313, 0.0 ], [ -118.461327117620201, 34.13068952200031, 0.0 ], [ -118.461416935303106, 34.13074636108427, 0.0 ], [ -118.461523796189596, 34.13079178122176, 0.0 ], [ -118.461623839794598, 34.130828679757542, 0.0 ], [ -118.461734109321796, 34.130859698388051, 0.0 ], [ -118.461871988838794, 34.130882110200822, 0.0 ], [ -118.462013276996501, 34.1309015394529, 0.0 ], [ -118.462140674943299, 34.130929660738801, 0.0 ], [ -118.462240803764303, 34.130972268747762, 0.0 ], [ -118.462344426442101, 34.131029107831679, 0.0 ], [ -118.462468586180293, 34.131094468517418, 0.0 ], [ -118.462582519996204, 34.131145598128207, 0.0 ], [ -118.462696283380097, 34.131179514103323, 0.0 ], [ -118.462704451631595, 34.131180990563948, 0.0 ] ], [ [ -118.426535875070002, 34.131089295449968, 0.0 ], [ -118.426549608547404, 34.131101115366818, 0.0 ], [ -118.426632438516904, 34.13114951806503, 0.0 ], [ -118.426728988265197, 34.131180621911533, 0.0 ], [ -118.426839172576393, 34.131191699993899, 0.0 ], [ -118.426990516224194, 34.131168180372889, 0.0 ], [ -118.427190006922103, 34.131144575535998, 0.0 ], [ -118.427327716007099, 34.131138439982657, 0.0 ], [ -118.427497463372106, 34.131151878665698, 0.0 ] ], [ [ -118.436915078688301, 34.13116323191808, 0.0 ], [ -118.436932963257803, 34.131170053502899, 0.0 ] ], [ [ -118.422582217601999, 34.129752781690911, 0.0 ], [ -118.422591324515096, 34.129752486667257, 0.0 ], [ -118.422680801333996, 34.129775068912053, 0.0 ], [ -118.422763631303496, 34.12981486479233, 0.0 ], [ -118.422836235350701, 34.129871874308392, 0.0 ], [ -118.422891625762304, 34.129937490642163, 0.0 ], [ -118.422940198892505, 34.130017508482958, 0.0 ], [ -118.423006070874393, 34.130111672182792, 0.0 ], [ -118.423078760137699, 34.13018299798977, 0.0 ], [ -118.423168407388502, 34.130217084396989, 0.0 ], [ -118.423271689202195, 34.130225265134683, 0.0 ], [ -118.423392099435603, 34.130216317452764, 0.0 ], [ -118.423557162862195, 34.130195609960438, 0.0 ], [ -118.423732707859202, 34.130174987684072, 0.0 ], [ -118.423921887418899, 34.130157177536361, 0.0 ], [ -118.4241179694762, 34.130142179517172, 0.0 ], [ -118.424307319467999, 34.130130078842669, 0.0 ], [ -118.4244862731056, 34.130129482330467, 0.0 ], [ -118.424623982190596, 34.130146099453988, 0.0 ], [ -118.424731013509003, 34.130197314280757, 0.0 ], [ -118.424851764606501, 34.130259777621902, 0.0 ], [ -118.424993308412297, 34.13033365990951, 0.0 ], [ -118.425131358361298, 34.130404815284422, 0.0 ], [ -118.425279719448497, 34.130464381280923, 0.0 ], [ -118.425431403960403, 34.130512613547097, 0.0 ], [ -118.4255691982614, 34.130554965907997, 0.0 ], [ -118.4256900345747, 34.130606095518793, 0.0 ], [ -118.425800389317899, 34.130671541420561, 0.0 ], [ -118.4259213108474, 34.130736902106307, 0.0 ], [ -118.426028342165907, 34.130799535879397, 0.0 ], [ -118.426138696909106, 34.130856289747321, 0.0 ], [ -118.426259362790503, 34.130907419358103, 0.0 ], [ -118.426376790463095, 34.13096136109742, 0.0 ], [ -118.426470102002796, 34.131032686904483, 0.0 ], [ -118.426535875070002, 34.131089295449968, 0.0 ] ], [ [ -118.444874966508195, 34.130436131073147, 0.0 ], [ -118.446036296229096, 34.130509290122369, 0.0 ], [ -118.446153383037597, 34.130526077677906, 0.0 ], [ -118.4462706402783, 34.130551386835243, 0.0 ], [ -118.447360127067398, 34.130893784795269, 0.0 ], [ -118.447363605719303, 34.130885817560397, 0.0 ] ], [ [ -118.463405091179197, 34.130810586149252, 0.0 ], [ -118.463410223178201, 34.130786497828673, 0.0 ], [ -118.463426925517794, 34.13072446056767, 0.0 ], [ -118.463457603284198, 34.13066421284298, 0.0 ], [ -118.463502000829607, 34.130603879902303, 0.0 ], [ -118.463560799881904, 34.130543206097563, 0.0 ], [ -118.463602865870698, 34.130514353679743, 0.0 ] ], [ [ -118.441638321404497, 34.130749128971154, 0.0 ], [ -118.442089660194696, 34.130585121574441, 0.0 ] ], [ [ -118.442089660194696, 34.130585121574441, 0.0 ], [ -118.442266680460307, 34.130520794284791, 0.0 ], [ -118.442933410584502, 34.130335193797812, 0.0 ], [ -118.442950794652205, 34.130360929035227, 0.0 ], [ -118.443040015822902, 34.130320536642763, 0.0 ], [ -118.443428858063996, 34.130345032122527, 0.0 ] ], [ [ -118.479513182917898, 34.130289813474668, 0.0 ], [ -118.479262362479602, 34.130316020193789, 0.0 ], [ -118.4791213299699, 34.130316531489868, 0.0 ], [ -118.4789833652368, 34.130285598075361, 0.0 ], [ -118.478852217785303, 34.130217425261037, 0.0 ], [ -118.478682978773605, 34.130132209243122, 0.0 ], [ -118.478541690615998, 34.130089771666192, 0.0 ], [ -118.478400487674307, 34.130078864015893, 0.0 ], [ -118.478238832888294, 34.130093862035068, 0.0 ], [ -118.478099334267, 34.130130760570822, 0.0 ], [ -118.477970828511999, 34.130180782373237, 0.0 ], [ -118.477850673926696, 34.13024708043524, 0.0 ], [ -118.477706658856405, 34.130336386822087, 0.0 ], [ -118.477572869708297, 34.130422881080207, 0.0 ], [ -118.477422037356504, 34.130506392777797, 0.0 ], [ -118.477308614836701, 34.13054116091309, 0.0 ], [ -118.477167497110997, 34.130550364243113, 0.0 ], [ -118.4770297028101, 34.130533661903598, 0.0 ], [ -118.476764340130202, 34.130480401892321, 0.0 ] ], [ [ -118.463602865870698, 34.130514353679743, 0.0 ], [ -118.464160891080098, 34.130131612730963, 0.0 ], [ -118.464253606107604, 34.130091220338493, 0.0 ], [ -118.464349900207907, 34.130070683278163, 0.0 ], [ -118.464453096805499, 34.130067530285487, 0.0 ], [ -118.464570268830101, 34.130084232625009, 0.0 ], [ -118.464694258136205, 34.130109541782339, 0.0 ], [ -118.464970696232697, 34.130167925640087, 0.0 ] ], [ [ -118.443428858063996, 34.130345032122527, 0.0 ], [ -118.444874966508195, 34.130436131073147, 0.0 ] ], [ [ -118.479717775498898, 34.130268436826299, 0.0 ], [ -118.479513182917898, 34.130289813474668, 0.0 ] ], [ [ -118.480336170505495, 34.129731521709488, 0.0 ], [ -118.480408773568598, 34.129758963084633, 0.0 ], [ -118.480364802103296, 34.129890792264362, 0.0 ], [ -118.480032715281496, 34.130201319433702, 0.0 ], [ -118.479953805248897, 34.130234468464579, 0.0 ], [ -118.479861005005304, 34.130253471636607, 0.0 ], [ -118.479717775498898, 34.130268436826299, 0.0 ] ], [ [ -118.464970696232697, 34.130167925640087, 0.0 ], [ -118.465266398480495, 34.130230378095732, 0.0 ], [ -118.465376582791805, 34.13024137096199, 0.0 ], [ -118.465490175743497, 34.130238132753369, 0.0 ], [ -118.465596780981997, 34.130226202510848, 0.0 ], [ -118.465706794861106, 34.130197229064727, 0.0 ], [ -118.465796016031902, 34.130148229854441, 0.0 ], [ -118.465864529710302, 34.130084999569192, 0.0 ], [ -118.466028826192897, 34.129932633329133, 0.0 ], [ -118.466152304202794, 34.12984060002983, 0.0 ], [ -118.4662345376601, 34.129780096656987, 0.0 ], [ -118.466340972466497, 34.129739619048571, 0.0 ], [ -118.466454480202401, 34.129719167204271, 0.0 ], [ -118.466581792933098, 34.129707066529768, 0.0 ], [ -118.466709020447894, 34.12969820406385, 0.0 ], [ -118.466808808404906, 34.129674769658877, 0.0 ], [ -118.466891127078199, 34.129631565137871, 0.0 ], [ -118.466956232115805, 34.12956842006858, 0.0 ], [ -118.467007361726601, 34.129499480310074, 0.0 ], [ -118.467072381548306, 34.129419121605153, 0.0 ], [ -118.467161517503001, 34.129355806103817, 0.0 ], [ -118.467250738673698, 34.12931251636671, 0.0 ], [ -118.467350441414794, 34.129286269833237, 0.0 ], [ -118.467450229371707, 34.129277407367361, 0.0 ], [ -118.467570810037103, 34.129288315017703, 0.0 ], [ -118.467677585707506, 34.129319418864213, 0.0 ], [ -118.467836257932902, 34.129376087516142, 0.0 ], [ -118.468001832655702, 34.129438380425157, 0.0 ], [ -118.468091283880199, 34.129469122857529, 0.0 ] ], [ [ -118.468648020846302, 34.129671282729291, 0.0 ], [ -118.468808913561404, 34.129730074854493, 0.0 ], [ -118.468819309915702, 34.129744305929577, 0.0 ], [ -118.469281692028801, 34.129937234994102, 0.0 ], [ -118.469413265560505, 34.130001573087632, 0.0 ], [ -118.469547395572704, 34.130059264331777, 0.0 ], [ -118.469674963951505, 34.130101701908707, 0.0 ], [ -118.469819660750005, 34.130132635323207, 0.0 ], [ -118.469951830793804, 34.13015777404852, 0.0 ], [ -118.470088432070497, 34.130171579043427, 0.0 ], [ -118.470205518879098, 34.130179759781107, 0.0 ], [ -118.470319111831003, 34.130176521572409, 0.0 ], [ -118.470442930705005, 34.130164591329937, 0.0 ], [ -118.470566664363005, 34.130146866398178, 0.0 ], [ -118.470686989380297, 34.13012351720927, 0.0 ], [ -118.4708004119002, 34.130088663857897, 0.0 ], [ -118.470917157844795, 34.130048186249397, 0.0 ], [ -118.471023677867194, 34.129999101823117, 0.0 ], [ -118.471119716319294, 34.129952914741402, 0.0 ], [ -118.471222742484997, 34.12989820605786, 0.0 ], [ -118.471325598218698, 34.129829095867407, 0.0 ], [ -118.4714180575981, 34.129751378859019, 0.0 ], [ -118.471403826523101, 34.129662668984373, 0.0 ], [ -118.471472340201501, 34.12958810496869, 0.0 ], [ -118.471544092088607, 34.12950476370316, 0.0 ], [ -118.471952504969906, 34.128938255913319, 0.0 ] ], [ [ -118.415455192864101, 34.126338091730958, 0.0 ], [ -118.415521462804605, 34.126353560576561, 0.0 ], [ -118.4156181829849, 34.12639898071405, 0.0 ], [ -118.416107663791806, 34.126566259757311, 0.0 ], [ -118.416231908745999, 34.126611679894843, 0.0 ], [ -118.416366464838305, 34.126691271655552, 0.0 ], [ -118.416480483870302, 34.126765324375143, 0.0 ], [ -118.416597996758895, 34.12685650551434, 0.0 ], [ -118.416701704652795, 34.126953481342703, 0.0 ], [ -118.416795016192395, 34.127041935569288, 0.0 ], [ -118.416895059797397, 34.127098774653248, 0.0 ], [ -118.417008908397307, 34.127135587973001, 0.0 ], [ -118.417129489062702, 34.12715237552851, 0.0 ], [ -118.417253393152706, 34.127154761577017, 0.0 ], [ -118.417377297242794, 34.127142916550547, 0.0 ], [ -118.417600818857807, 34.12711351702437, 0.0 ], [ -118.417786589776895, 34.127092809532009, 0.0 ], [ -118.417889786374602, 34.127083861850139, 0.0 ], [ -118.418027495459498, 34.12708633311469, 0.0 ], [ -118.418148076124893, 34.127108830143371, 0.0 ], [ -118.418285870425805, 34.127145473031092, 0.0 ], [ -118.418272406295003, 34.127197113937918, 0.0 ], [ -118.419216684989607, 34.127431372771177, 0.0 ], [ -118.419316813810696, 34.127479775469382, 0.0 ], [ -118.419396320355304, 34.127562520222803, 0.0 ], [ -118.419482899829603, 34.127670914997552, 0.0 ], [ -118.419552436100204, 34.127785189677589, 0.0 ], [ -118.419656314426007, 34.127922217034453, 0.0 ], [ -118.419780729812203, 34.12802481712, 0.0 ], [ -118.419870462278993, 34.128078929291377, 0.0 ], [ -118.420005018371299, 34.128147102105693, 0.0 ], [ -118.4203533814526, 34.128291884120188, 0.0 ], [ -118.420484614120198, 34.128365936839671, 0.0 ], [ -118.420588322013998, 34.128454305850298, 0.0 ], [ -118.420761395746396, 34.128648257507031, 0.0 ], [ -118.420823773871504, 34.128742506422952, 0.0 ], [ -118.420872602649794, 34.128865387920719, 0.0 ], [ -118.420904217792497, 34.12899133719521, 0.0 ], [ -118.420935918151102, 34.129137227017907, 0.0 ], [ -118.421141714834405, 34.129665992408988, 0.0 ], [ -118.421207501600094, 34.129748737162473, 0.0 ], [ -118.421283514288206, 34.129805661462512, 0.0 ], [ -118.421383557893193, 34.129851166816032, 0.0 ], [ -118.421483516282294, 34.129873663844791, 0.0 ], [ -118.421600603090894, 34.12988482714308, 0.0 ], [ -118.421738312175805, 34.12988141850235, 0.0 ], [ -118.422491366126195, 34.129755724876013, 0.0 ], [ -118.422582217601999, 34.129752781690911, 0.0 ] ], [ [ -118.471952504969906, 34.128938255913319, 0.0 ], [ -118.473156123499606, 34.127268695393013, 0.0 ], [ -118.4732518210877, 34.127148114727632, 0.0 ], [ -118.473371464376797, 34.127027363630233, 0.0 ], [ -118.4734811373919, 34.126918116695293, 0.0 ], [ -118.473592173863196, 34.126819010466349, 0.0 ], [ -118.4737038068467, 34.126737032657211, 0.0 ], [ -118.473837510778793, 34.126650623615049, 0.0 ], [ -118.4739816962812, 34.12658125777638, 0.0 ], [ -118.474105259507098, 34.126526463876921, 0.0 ], [ -118.474239304303296, 34.126488713181033, 0.0 ], [ -118.474376757740202, 34.126459484086773, 0.0 ], [ -118.474421837013693, 34.126502262527843, 0.0 ], [ -118.474521539754704, 34.126487605372787, 0.0 ], [ -118.4746487672694, 34.126472777785622, 0.0 ], [ -118.476571922361899, 34.126296295412551, 0.0 ], [ -118.476623222404498, 34.126241671945039, 0.0 ], [ -118.477235499493304, 34.126187815421723, 0.0 ], [ -118.477404141992807, 34.126178612091778, 0.0 ], [ -118.477558979497303, 34.126178015579633, 0.0 ], [ -118.477717310858594, 34.126185940669252, 0.0 ], [ -118.477855190375706, 34.126208267266023, 0.0 ], [ -118.477993069892605, 34.126244910153737, 0.0 ], [ -118.478137766691006, 34.126284365169987, 0.0 ], [ -118.478279225280801, 34.126332512220152, 0.0 ], [ -118.478403385018893, 34.126383641830927, 0.0 ], [ -118.478517404050805, 34.126446105171993, 0.0 ], [ -118.478697124632603, 34.126579894320187, 0.0 ], [ -118.478783618890901, 34.126662468641527, 0.0 ], [ -118.478870283581102, 34.126756717557321, 0.0 ], [ -118.478949960557799, 34.126859402858898, 0.0 ], [ -118.479016002971704, 34.126962173376519, 0.0 ], [ -118.479068240390703, 34.127056507508428, 0.0 ], [ -118.479113490096196, 34.127159278026042, 0.0 ], [ -118.479145020022798, 34.127247987900653, 0.0 ], [ -118.479162830170594, 34.127353826194891, 0.0 ], [ -118.479173823036803, 34.12746818609093, 0.0 ], [ -118.4792155788857, 34.128163634013177, 0.0 ], [ -118.479226827400097, 34.128306711707232, 0.0 ], [ -118.479241399339102, 34.128455498874537, 0.0 ], [ -118.479259379918901, 34.128587072406248, 0.0 ], [ -118.479292784597902, 34.12872682667556, 0.0 ], [ -118.479336670847104, 34.128861638415898, 0.0 ], [ -118.479392487338899, 34.128993041515614, 0.0 ], [ -118.479465432250294, 34.129112940452792, 0.0 ], [ -118.479545194443006, 34.129218523098977, 0.0 ], [ -118.479708042253193, 34.129395261120202, 0.0 ], [ -118.479808341506299, 34.129475108528922, 0.0 ], [ -118.479918866681601, 34.129546178687839, 0.0 ], [ -118.480050014133099, 34.129617334062871, 0.0 ], [ -118.480236296348295, 34.129693772830869, 0.0 ], [ -118.480336170505495, 34.129731521709488, 0.0 ] ], [ [ -118.408757898731295, 34.129665323299818, 0.0 ], [ -118.408774314153902, 34.129668293241551, 0.0 ], [ -118.408915602311495, 34.129682183452488, 0.0 ], [ -118.409067031175397, 34.129684484284937, 0.0 ], [ -118.412215677821393, 34.129530669372613, 0.0 ], [ -118.412360204187806, 34.129507320183713, 0.0 ], [ -118.4124702180669, 34.129472637264413, 0.0 ], [ -118.412566426951301, 34.129432159655863, 0.0 ], [ -118.412652069049201, 34.129380433533001, 0.0 ], [ -118.4127309790818, 34.129302801740728, 0.0 ], [ -118.4129431669664, 34.129056016152759, 0.0 ], [ -118.413052925197505, 34.128972504455326, 0.0 ], [ -118.413159360003903, 34.128940718880592, 0.0 ], [ -118.413303801154299, 34.128914387131012, 0.0 ], [ -118.413441510239196, 34.128913961050962, 0.0 ], [ -118.413575895899498, 34.128939270208292, 0.0 ], [ -118.413734568124895, 34.129013237711767, 0.0 ], [ -118.413920679908003, 34.129072633276238, 0.0 ], [ -118.414044583998106, 34.129072207196188, 0.0 ], [ -118.414161415158603, 34.129008806478907, 0.0 ], [ -118.414246972040601, 34.128908422009808, 0.0 ], [ -118.414270491661597, 34.128788096992473, 0.0 ], [ -118.414256175370596, 34.128705096590991, 0.0 ], [ -118.414085317254603, 34.12823342593186, 0.0 ], [ -118.414046970046599, 34.128144801273208, 0.0 ], [ -118.414042964893696, 34.128050381925313, 0.0 ], [ -118.414056258592495, 34.127950082672207, 0.0 ], [ -118.414086936358999, 34.127866997054817, 0.0 ], [ -118.414138065969794, 34.127795330383712, 0.0 ], [ -118.414203341439404, 34.127740706916313, 0.0 ], [ -118.414285574896795, 34.127688810361342, 0.0 ], [ -118.414367978786103, 34.127637084238472, 0.0 ], [ -118.4144295899669, 34.127579563426373, 0.0 ], [ -118.414484383866494, 34.127510708883847, 0.0 ], [ -118.414511482560201, 34.12742762326635, 0.0 ], [ -118.414524776258901, 34.127333118702538, 0.0 ], [ -118.414517532897506, 34.127232989881499, 0.0 ], [ -118.414523924098802, 34.127147092135381, 0.0 ], [ -118.414544120295105, 34.127069715991169, 0.0 ], [ -118.414585109199706, 34.126989442502307, 0.0 ], [ -118.414639562235195, 34.126886160688571, 0.0 ], [ -118.414690691845905, 34.126774272057062, 0.0 ], [ -118.414728016461794, 34.126662639073558, 0.0 ], [ -118.4147826399292, 34.126573673550887, 0.0 ], [ -118.414875099308702, 34.126484708028222, 0.0 ], [ -118.414971137760801, 34.12641849518225, 0.0 ], [ -118.415077572567199, 34.126375205445143, 0.0 ], [ -118.415180769165005, 34.126346231999058, 0.0 ], [ -118.415301094182198, 34.126328592283329, 0.0 ], [ -118.415425083488302, 34.126331063547759, 0.0 ], [ -118.415455192864101, 34.126338091730958, 0.0 ] ], [ [ -118.468641282823398, 34.129668820575091, 0.0 ], [ -118.468648020846302, 34.129671282729291, 0.0 ] ], [ [ -118.468091283880199, 34.129469122857529, 0.0 ], [ -118.468150108526899, 34.129489339603921, 0.0 ], [ -118.468641282823398, 34.129668820575091, 0.0 ] ], [ [ -118.407736102775203, 34.129480456024609, 0.0 ], [ -118.408757898731295, 34.129665323299818, 0.0 ] ], [ [ -118.406924076435402, 34.128925306071757, 0.0 ], [ -118.406929387365906, 34.128947536162009, 0.0 ], [ -118.406988527282394, 34.129061896058047, 0.0 ], [ -118.407085417894805, 34.129181709779189, 0.0 ], [ -118.407206339424107, 34.129278600391601, 0.0 ], [ -118.4073133707426, 34.129349840982577, 0.0 ], [ -118.407430713199403, 34.129406680066587, 0.0 ], [ -118.4075789038545, 34.129452014988082, 0.0 ], [ -118.407736102775203, 34.129480456024609, 0.0 ] ], [ [ -118.402638394484498, 34.125050745678401, 0.0 ], [ -118.402673699431105, 34.125073786419513, 0.0 ], [ -118.4027704196114, 34.125147924355034, 0.0 ], [ -118.402877621361995, 34.125247797528083, 0.0 ], [ -118.402967439044801, 34.125333269194059, 0.0 ], [ -118.403047201237598, 34.125436124927667, 0.0 ], [ -118.403210815991997, 34.125834339379402, 0.0 ], [ -118.403256406561596, 34.126023007643013, 0.0 ], [ -118.403301997131194, 34.126203239520962, 0.0 ], [ -118.403354490198197, 34.12638909565608, 0.0 ], [ -118.4034450748252, 34.126603499157163, 0.0 ], [ -118.403524922234098, 34.126743423858542, 0.0 ], [ -118.403656580981803, 34.126934819034808, 0.0 ], [ -118.403726117252305, 34.127069119478968, 0.0 ], [ -118.403774775598606, 34.127183394159047, 0.0 ], [ -118.4038028968845, 34.127289232453222, 0.0 ], [ -118.403824115673004, 34.127409387038618, 0.0 ], [ -118.403828206041794, 34.127552464732673, 0.0 ], [ -118.403818406199804, 34.127646969296492, 0.0 ], [ -118.403818832279896, 34.127741473860382, 0.0 ], [ -118.403839880636298, 34.127827286390392, 0.0 ], [ -118.403888368550497, 34.127887193251013, 0.0 ], [ -118.4039608873818, 34.127932698604617, 0.0 ], [ -118.404057437130007, 34.127960990322592, 0.0 ], [ -118.404184835076805, 34.127957837329973, 0.0 ], [ -118.404332514435893, 34.127914377160778, 0.0 ], [ -118.404631537442796, 34.127818935220667, 0.0 ], [ -118.405869214886906, 34.12751420274062, 0.0 ], [ -118.406196700043793, 34.127621915787259, 0.0 ], [ -118.406590568478705, 34.127926818699457, 0.0 ], [ -118.406663257741997, 34.128023879743822, 0.0 ], [ -118.406732879228599, 34.128175308607631, 0.0 ], [ -118.406806420652003, 34.128432831413747, 0.0 ], [ -118.406924076435402, 34.128925306071757, 0.0 ] ], [ [ -118.400061444208603, 34.123340786434483, 0.0 ], [ -118.400146533203696, 34.123444882236939, 0.0 ], [ -118.400225869316401, 34.123521917517131, 0.0 ], [ -118.400322674712697, 34.123596140668788, 0.0 ], [ -118.400426297390496, 34.123667210827684, 0.0 ], [ -118.4004989014377, 34.123718596086484, 0.0 ], [ -118.400630474969404, 34.123915615519969, 0.0 ], [ -118.400685609733003, 34.123915530303933, 0.0 ], [ -118.400720292652295, 34.12397833450909, 0.0 ], [ -118.400813604191896, 34.124052387228687, 0.0 ], [ -118.401382591543495, 34.12427667578789, 0.0 ], [ -118.401499678352195, 34.124307694418398, 0.0 ], [ -118.401809779441393, 34.12436402220623, 0.0 ], [ -118.4019168107599, 34.124415066600903, 0.0 ], [ -118.402280001428196, 34.124808935035851, 0.0 ], [ -118.402376806824606, 34.124888782444543, 0.0 ], [ -118.402507869060202, 34.124965562076667, 0.0 ], [ -118.402638394484498, 34.125050745678401, 0.0 ] ], [ [ -118.386861657089497, 34.121798101445847, 0.0 ], [ -118.386872519308497, 34.121818704966927, 0.0 ], [ -118.386928165368204, 34.121947295938092, 0.0 ], [ -118.386970091649005, 34.122087391071503, 0.0 ], [ -118.387075759511305, 34.12227750800745, 0.0 ], [ -118.387206736530899, 34.122652117622259, 0.0 ], [ -118.387337287470203, 34.123348502920678, 0.0 ], [ -118.387396342170604, 34.123431332890128, 0.0 ], [ -118.387465537577199, 34.123466186241458, 0.0 ], [ -118.387578789665, 34.123470873122379, 0.0 ], [ -118.387671589908607, 34.123439002331772, 0.0 ], [ -118.387795238350606, 34.123367080012628, 0.0 ], [ -118.388001120249797, 34.123257662645543, 0.0 ], [ -118.388169677533199, 34.123217099821083, 0.0 ], [ -118.3883553632363, 34.123196392328637, 0.0 ], [ -118.388613312122601, 34.123146881822308, 0.0 ], [ -118.388744033494106, 34.123132224667138, 0.0 ], [ -118.388854217805203, 34.123134695931647, 0.0 ], [ -118.388960993475706, 34.123154380831842, 0.0 ], [ -118.389071177786803, 34.123171168387387, 0.0 ], [ -118.389263765987295, 34.123144836637849, 0.0 ], [ -118.389452519467, 34.123015393506677, 0.0 ], [ -118.389596790185394, 34.122974915898133, 0.0 ], [ -118.389861471136996, 34.122893875465088, 0.0 ], [ -118.390023125922994, 34.122853312640537, 0.0 ], [ -118.390098627314899, 34.122818714937317, 0.0 ], [ -118.390163902784593, 34.122778407760798, 0.0 ], [ -118.390211708970597, 34.122720972164693, 0.0 ], [ -118.390238978096306, 34.122657997527462, 0.0 ], [ -118.390364671722807, 34.122305458861362, 0.0 ], [ -118.390402337202701, 34.122245296352752, 0.0 ], [ -118.390450313820907, 34.122202177047697, 0.0 ], [ -118.390508601577096, 34.122181895635393, 0.0 ], [ -118.390580864760295, 34.122173118385547, 0.0 ], [ -118.390670767659202, 34.122164341135701, 0.0 ], [ -118.390777032033498, 34.122158205582387, 0.0 ], [ -118.391203793851304, 34.122171073201088, 0.0 ], [ -118.391327697941307, 34.122170732337068, 0.0 ], [ -118.391417089544106, 34.122141758890983, 0.0 ], [ -118.391489097079202, 34.122081511166257, 0.0 ], [ -118.391547214403502, 34.122003964589979, 0.0 ], [ -118.391615557649899, 34.121897785431713, 0.0 ], [ -118.391711425669996, 34.121774392637647, 0.0 ], [ -118.391814110971595, 34.121676820297161, 0.0 ], [ -118.391934180340897, 34.121579077524601, 0.0 ], [ -118.392085183124607, 34.121484061664617, 0.0 ], [ -118.392253399543904, 34.121400635183058, 0.0 ], [ -118.392442323455697, 34.121319765182093, 0.0 ], [ -118.392737682173703, 34.121201485349239, 0.0 ], [ -118.392820086063196, 34.12114967401034, 0.0 ], [ -118.392885191100802, 34.121083716812443, 0.0 ], [ -118.392926094789402, 34.12100063119501, 0.0 ], [ -118.392953193483095, 34.120914477800831, 0.0 ], [ -118.392990092018906, 34.120714134942773, 0.0 ], [ -118.393149531188399, 34.120209826548717, 0.0 ], [ -118.393194013949696, 34.12015239095264, 0.0 ], [ -118.393255795562695, 34.120112083776156, 0.0 ], [ -118.393331382170601, 34.120088990235317, 0.0 ], [ -118.393414041707999, 34.120088734587178, 0.0 ], [ -118.393538031014103, 34.12011412896063, 0.0 ], [ -118.393717325515794, 34.120176507085731, 0.0 ], [ -118.393844723462493, 34.120204628371631, 0.0 ], [ -118.393965218911902, 34.120204287507583, 0.0 ], [ -118.394061427796103, 34.120175314061463, 0.0 ], [ -118.394209021939204, 34.120097597053153, 0.0 ], [ -118.394329091308407, 34.120016982700193, 0.0 ], [ -118.394431861826106, 34.119919410359593, 0.0 ], [ -118.394527985494193, 34.119867513804692, 0.0 ], [ -118.394658621649796, 34.119829933540828, 0.0 ], [ -118.395019596701601, 34.119742927986508, 0.0 ], [ -118.395143159927599, 34.119690860999633, 0.0 ], [ -118.395273710867002, 34.119621836025047, 0.0 ], [ -118.395668261029996, 34.119374368709011, 0.0 ], [ -118.395980492519598, 34.119164396440837, 0.0 ], [ -118.396104140961697, 34.119106705196778, 0.0 ], [ -118.396231283260406, 34.119071937061449, 0.0 ], [ -118.396368821913299, 34.119039981054733, 0.0 ], [ -118.397115399446307, 34.118991834004582, 0.0 ], [ -118.3972910296592, 34.119005468567501, 0.0 ], [ -118.397459927806807, 34.119062222435382, 0.0 ], [ -118.397587581401595, 34.119127583121127, 0.0 ], [ -118.397680892941196, 34.119210327874583, 0.0 ], [ -118.398075357888203, 34.119658393696703, 0.0 ], [ -118.398151626224205, 34.119769771032168, 0.0 ], [ -118.398193722936995, 34.119932789274444, 0.0 ], [ -118.398225678943703, 34.120147363207543, 0.0 ], [ -118.398202500186898, 34.120327765517523, 0.0 ], [ -118.398210680924606, 34.120619715594913, 0.0 ], [ -118.398242807363403, 34.120851503163642, 0.0 ], [ -118.398233604033393, 34.121441879735762, 0.0 ], [ -118.398250817669094, 34.121463268956312, 0.0 ], [ -118.398302714224002, 34.121502468324579, 0.0 ], [ -118.398341657944201, 34.121555983983733, 0.0 ], [ -118.398341828376203, 34.121570300274747, 0.0 ], [ -118.398672466525696, 34.121829697833391, 0.0 ], [ -118.398741832364294, 34.12190963045807, 0.0 ], [ -118.398786826421698, 34.121986665738383, 0.0 ], [ -118.398856618340503, 34.122169709744817, 0.0 ], [ -118.398898715053306, 34.122347129494109, 0.0 ], [ -118.398967995675804, 34.122449900011688, 0.0 ], [ -118.399030373800997, 34.122538439454352, 0.0 ], [ -118.399355217261302, 34.122806358614682, 0.0 ], [ -118.399506986989195, 34.122877428773627, 0.0 ], [ -118.399693439636394, 34.122979858427193, 0.0 ], [ -118.399776184389793, 34.123025363780798, 0.0 ], [ -118.399848703220997, 34.123082373296747, 0.0 ], [ -118.399924886340997, 34.123173724867939, 0.0 ], [ -118.400061444208603, 34.123340786434483, 0.0 ] ], [ [ -118.3754850663246, 34.123375117216611, 0.0 ], [ -118.375539040150002, 34.12343336739977, 0.0 ], [ -118.375621533678697, 34.123369806925211, 0.0 ], [ -118.3756272575107, 34.123363412490463, 0.0 ] ], [ [ -118.375484094290101, 34.123374068167493, 0.0 ], [ -118.3754850663246, 34.123375117216611, 0.0 ] ], [ [ -118.375476192384397, 34.123365540192196, 0.0 ], [ -118.375484094290101, 34.123374068167493, 0.0 ] ], [ [ -118.375472133043999, 34.123361159229368, 0.0 ], [ -118.375476192384397, 34.123365540192196, 0.0 ] ], [ [ -118.3756272575107, 34.123363412490463, 0.0 ], [ -118.375633154990894, 34.12335682406286, 0.0 ] ], [ [ -118.375633154990894, 34.12335682406286, 0.0 ], [ -118.375693541213906, 34.123289363004247, 0.0 ], [ -118.375744841256704, 34.123211986859992, 0.0 ], [ -118.375782165872593, 34.123120294424673, 0.0 ], [ -118.3758092645662, 34.123019995171603, 0.0 ] ], [ [ -118.3758092645662, 34.123019995171603, 0.0 ], [ -118.375815826199599, 34.122928387952363, 0.0 ], [ -118.375801595124599, 34.122836780733017, 0.0 ], [ -118.375773729486696, 34.122751138635088, 0.0 ], [ -118.375728479781202, 34.122668223449622, 0.0 ], [ -118.375679991867003, 34.122588205608821, 0.0 ], [ -118.375541260189806, 34.122361019705053, 0.0 ], [ -118.375520297049505, 34.122272395046387, 0.0 ], [ -118.375516377112604, 34.122186497300319, 0.0 ], [ -118.375529841243406, 34.122103496898852, 0.0 ], [ -118.375563927650703, 34.122026120754597, 0.0 ], [ -118.375625538831599, 34.121945676833747, 0.0 ], [ -118.375704363648097, 34.121885429109057, 0.0 ], [ -118.375793670034994, 34.121856370446913, 0.0 ], [ -118.3758901345672, 34.12186480683274, 0.0 ], [ -118.375976287961294, 34.121887389077408, 0.0 ], [ -118.376066105644199, 34.121938689120228, 0.0 ], [ -118.376152173822305, 34.121978399784581, 0.0 ], [ -118.376238497648501, 34.122012486191757, 0.0 ], [ -118.376327974467301, 34.122026632050762, 0.0 ], [ -118.376603392637193, 34.122037198836928, 0.0 ], [ -118.376703180594205, 34.122051174263902, 0.0 ], [ -118.376786010563606, 34.122082363326442, 0.0 ], [ -118.376875657814495, 34.122130766024647, 0.0 ], [ -118.377089720451494, 34.122258930915628, 0.0 ], [ -118.377182776343105, 34.122304436269111, 0.0 ], [ -118.377320741076005, 34.122355480663913, 0.0 ], [ -118.377503018138398, 34.122337840948177, 0.0 ], [ -118.377595818381906, 34.122297363339712, 0.0 ], [ -118.377695265474799, 34.122242739872163, 0.0 ], [ -118.377815505276104, 34.122190758101198, 0.0 ], [ -118.3779152080171, 34.122170391472892, 0.0 ], [ -118.378018489830694, 34.122170221040861, 0.0 ], [ -118.378128674141905, 34.122184111251798, 0.0 ], [ -118.378225223890198, 34.122215300314458, 0.0 ], [ -118.378318364997796, 34.122263617796548, 0.0 ], [ -118.378401280183198, 34.122320627312583, 0.0 ], [ -118.378504817644995, 34.122409081539203, 0.0 ], [ -118.378615257604196, 34.122480236914107, 0.0 ], [ -118.378722203706701, 34.122531366524903, 0.0 ], [ -118.378849772085601, 34.122559658242828, 0.0 ], [ -118.379035713436707, 34.122581984839478, 0.0 ], [ -118.379328260026099, 34.122592466409692, 0.0 ], [ -118.379565842284094, 34.122603203628003, 0.0 ], [ -118.379779223192998, 34.122596812426558, 0.0 ], [ -118.379861882730395, 34.122607975724961, 0.0 ], [ -118.379958432478702, 34.122650583733893, 0.0 ], [ -118.380068872437903, 34.122716200067771, 0.0 ], [ -118.380213824884393, 34.122815902808682, 0.0 ], [ -118.380327758700403, 34.122892767656921, 0.0 ], [ -118.380452003654398, 34.122963923031833, 0.0 ], [ -118.380814086514505, 34.123123106553322, 0.0 ], [ -118.380921032617096, 34.123148500926597, 0.0 ], [ -118.380993210584293, 34.123136911548272, 0.0 ], [ -118.381068626760097, 34.123082202864722, 0.0 ], [ -118.381133731797803, 34.123010536193647, 0.0 ], [ -118.381212215750395, 34.122870014980137, 0.0 ], [ -118.381328194750694, 34.122634903986622, 0.0 ], [ -118.381396537997105, 34.122520203226543, 0.0 ], [ -118.3815028023715, 34.12244257143422, 0.0 ], [ -118.381612816250495, 34.122410700643528, 0.0 ], [ -118.381719421488995, 34.122396128704388, 0.0 ], [ -118.3818158008052, 34.122398599969031, 0.0 ], [ -118.381915673978199, 34.122424079558307, 0.0 ], [ -118.382012308942507, 34.122460978094047, 0.0 ], [ -118.382112267331607, 34.122509295576187, 0.0 ], [ -118.382919433453296, 34.122134600745468, 0.0 ], [ -118.382974312568805, 34.122102985602773, 0.0 ], [ -118.383084070799896, 34.122031063283657, 0.0 ], [ -118.383290293563306, 34.121973201607503, 0.0 ], [ -118.383428002648301, 34.121947040289939, 0.0 ], [ -118.383586078361503, 34.121929315358258, 0.0 ], [ -118.383744494938796, 34.121925906717529, 0.0 ], [ -118.383909728797505, 34.121919685948193, 0.0 ], [ -118.383957790631698, 34.121902387096597, 0.0 ], [ -118.3842605631433, 34.121895740247211, 0.0 ], [ -118.3844223031453, 34.121886622133218, 0.0 ], [ -118.384573732009102, 34.121860375599837, 0.0 ], [ -118.3847249052249, 34.121825522248429, 0.0 ], [ -118.384879487081406, 34.121773540477548, 0.0 ], [ -118.385020434375093, 34.121712866672723, 0.0 ], [ -118.385528492273906, 34.121450912633748, 0.0 ], [ -118.385676342064997, 34.121396033518167, 0.0 ], [ -118.385813710285902, 34.121352573349029, 0.0 ], [ -118.3859582366523, 34.121335018849287, 0.0 ], [ -118.386106171659307, 34.121334507553129, 0.0 ], [ -118.386285295729095, 34.121359731494543, 0.0 ], [ -118.386447206163098, 34.121396374382229, 0.0 ], [ -118.386567872044495, 34.121453298682141, 0.0 ], [ -118.386681805860405, 34.121515932455353, 0.0 ], [ -118.386771623543297, 34.121581378357128, 0.0 ], [ -118.386847721447296, 34.121649892035499, 0.0 ], [ -118.386899618002204, 34.121727012531693, 0.0 ], [ -118.386837836389205, 34.121752918201217, 0.0 ], [ -118.386861657089497, 34.121798101445847, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.881274604272903, 34.061080486693193, 0.0 ], [ -117.881274636483496, 34.061105530408653, 0.0 ] ], [ [ -117.881274556472206, 34.061043321668542, 0.0 ], [ -117.881274604272903, 34.061080486693193, 0.0 ] ], [ [ -117.881260741319906, 34.060832590086058, 0.0 ], [ -117.881274295619406, 34.060840508593067, 0.0 ], [ -117.881274556472206, 34.061043321668542, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 255", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.328617486003097, 33.841222809805558, 0.0 ], [ -118.328617400787095, 33.841214714283907, 0.0 ], [ -118.328610498289606, 33.841214714283907, 0.0 ] ], [ [ -118.328610498289606, 33.841214714283907, 0.0 ], [ -118.328610498289606, 33.841211987371253, 0.0 ], [ -118.328643562104602, 33.841211987371253, 0.0 ], [ -118.328638288504806, 33.840918931030657, 0.0 ] ], [ [ -118.328638288504806, 33.840918931030657, 0.0 ], [ -118.328638239059202, 33.840916183318157, 0.0 ] ], [ [ -118.328638239059202, 33.840916183318157, 0.0 ], [ -118.328606067056796, 33.839128370517201, 0.0 ], [ -118.328638875223604, 33.839128285301094, 0.0 ], [ -118.328598148056997, 33.835844315568288, 0.0 ] ], [ [ -118.328598148056997, 33.835844315568288, 0.0 ], [ -118.328547523652404, 33.831762297928307, 0.0 ] ], [ [ -118.328547523652404, 33.831762297928307, 0.0 ], [ -118.3285805874674, 33.831762212712228, 0.0 ], [ -118.328571128489401, 33.830968510721348, 0.0 ], [ -118.328640835192004, 33.830968340289317, 0.0 ], [ -118.328590341805196, 33.828127687763832, 0.0 ], [ -118.328589073664403, 33.827652127931358, 0.0 ] ], [ [ -118.374332255677004, 33.828280703793403, 0.0 ], [ -118.374459187194404, 33.828162091603247, 0.0 ], [ -118.374531961673597, 33.82808607891527, 0.0 ], [ -118.374724464658101, 33.827968139946478, 0.0 ], [ -118.375023402449003, 33.827981859725391, 0.0 ], [ -118.375313477774, 33.828002993297801, 0.0 ], [ -118.375814462743307, 33.828047902139247, 0.0 ], [ -118.378798642474806, 33.828318122132032, 0.0 ], [ -118.379333202555202, 33.828342664345172, 0.0 ], [ -118.382030374738306, 33.828440321901702, 0.0 ], [ -118.382113204707807, 33.8286352961508, 0.0 ] ], [ [ -118.382113204707807, 33.8286352961508, 0.0 ], [ -118.382114727291693, 33.828634846988571, 0.0 ] ], [ [ -118.382114727291693, 33.828634846988571, 0.0 ], [ -118.382150395377707, 33.828624324904283, 0.0 ], [ -118.382149275637403, 33.828621740882689, 0.0 ] ], [ [ -118.371021190121198, 33.827169743566976, 0.0 ], [ -118.371050792862107, 33.827172205950163, 0.0 ], [ -118.3719504276268, 33.827220539821312, 0.0 ], [ -118.372544127623598, 33.827402816883627, 0.0 ], [ -118.372982308387805, 33.827567965526313, 0.0 ], [ -118.373975160212595, 33.828051140347867, 0.0 ], [ -118.374327869310704, 33.828284802669003, 0.0 ], [ -118.374332255677004, 33.828280703793403, 0.0 ] ], [ [ -118.328589073664403, 33.827652127931358, 0.0 ], [ -118.328671937745099, 33.827652152118702, 0.0 ], [ -118.328672558702607, 33.827244941403343, 0.0 ], [ -118.328682435992604, 33.827244951894031, 0.0 ], [ -118.328682776812798, 33.827021430278933, 0.0 ] ], [ [ -118.370551610100094, 33.82713068346915, 0.0 ], [ -118.371021190121198, 33.827169743566976, 0.0 ] ], [ [ -118.351534572388303, 33.825583441786968, 0.0 ], [ -118.367971010022103, 33.82689143556015, 0.0 ], [ -118.367970072645804, 33.826899786729832, 0.0 ], [ -118.368077700476505, 33.826908990059721, 0.0 ], [ -118.368078978716696, 33.826900979754058, 0.0 ], [ -118.369390873660805, 33.827034132345183, 0.0 ], [ -118.370551610100094, 33.82713068346915, 0.0 ] ], [ [ -118.328682776812798, 33.827021430278933, 0.0 ], [ -118.328667507805605, 33.826099267457508, 0.0 ], [ -118.328684039713096, 33.826085292030619, 0.0 ], [ -118.328666996509497, 33.826071657467701, 0.0 ], [ -118.328655593463495, 33.825328462020202, 0.0 ], [ -118.328560494607103, 33.825328686194403, 0.0 ], [ -118.328548219710498, 33.82462692492642, 0.0 ], [ -118.328538812815793, 33.82415817695302, 0.0 ], [ -118.328532572922299, 33.823878402579467, 0.0 ], [ -118.328530328451706, 33.823524197102287, 0.0 ], [ -118.328519655134897, 33.823061008107118, 0.0 ], [ -118.328517105299994, 33.822592310872579, 0.0 ], [ -118.328510554478697, 33.822223617278773, 0.0 ] ], [ [ -118.351257093798793, 33.825561360343542, 0.0 ], [ -118.351534572388303, 33.825583441786968, 0.0 ] ], [ [ -118.350906432465706, 33.825520680366147, 0.0 ], [ -118.351183795356107, 33.825547067661432, 0.0 ], [ -118.3511824318999, 33.825555418831136, 0.0 ], [ -118.351257093798793, 33.825561360343542, 0.0 ] ], [ [ -118.350899250114793, 33.825519997063381, 0.0 ], [ -118.350906432465706, 33.825520680366147, 0.0 ] ], [ [ -118.345170380089002, 33.825091042666777, 0.0 ], [ -118.345170996860602, 33.82508557120989, 0.0 ], [ -118.346250819171104, 33.825165054993803, 0.0 ], [ -118.346334263760994, 33.825157464054612, 0.0 ], [ -118.348680621736307, 33.825331846231506, 0.0 ], [ -118.350505731501599, 33.825482559135779, 0.0 ], [ -118.350899250114793, 33.825519997063381, 0.0 ] ], [ [ -118.344809354899695, 33.825058733084447, 0.0 ], [ -118.345170380089002, 33.825091042666777, 0.0 ] ], [ [ -118.3397110274325, 33.824204282336893, 0.0 ], [ -118.339776671939902, 33.824217621519253, 0.0 ], [ -118.339779979777404, 33.824229595960531, 0.0 ], [ -118.339969075582005, 33.824267424992513, 0.0 ], [ -118.341165386978801, 33.824495081392932, 0.0 ], [ -118.341174729709195, 33.824485590171278, 0.0 ], [ -118.342397316167194, 33.824717934975993, 0.0 ], [ -118.343477557556398, 33.824932523205661, 0.0 ], [ -118.344810059547399, 33.825050905547272, 0.0 ], [ -118.344809354899695, 33.825058733084447, 0.0 ] ], [ [ -118.330440290186203, 33.822334578049137, 0.0 ], [ -118.330444181197393, 33.822321228345473, 0.0 ], [ -118.3397110274325, 33.824204282336893, 0.0 ] ], [ [ -118.328495981464698, 33.821925134331693, 0.0 ], [ -118.328495919798897, 33.821915910434157, 0.0 ], [ -118.330440290186203, 33.822334578049137, 0.0 ] ], [ [ -118.328510554478697, 33.822223617278773, 0.0 ], [ -118.328500011323499, 33.822221881637446, 0.0 ], [ -118.328499273637405, 33.821925118999353, 0.0 ], [ -118.328495981464698, 33.821925134331693, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 256", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.372008459735, 34.02411879607142, 0.0 ], [ -118.372007647439403, 34.024105073446421, 0.0 ], [ -118.371961799688506, 34.024105029704728, 0.0 ] ], [ [ -118.370490434589996, 34.004488398507497, 0.0 ], [ -118.370490530318193, 34.004480155333162, 0.0 ], [ -118.370322268621607, 34.004478799880729, 0.0 ], [ -118.370318955, 34.00476408632008, 0.0 ], [ -118.372017855104602, 34.005849639860458, 0.0 ], [ -118.373184871266503, 34.005882342381071, 0.0 ], [ -118.373261653400803, 34.006619679315342, 0.0 ], [ -118.373242583144204, 34.007363419323603, 0.0 ], [ -118.373137696732798, 34.009263293639592, 0.0 ], [ -118.373051880578004, 34.011029676159197, 0.0 ], [ -118.373082869744906, 34.011346719175478, 0.0 ], [ -118.373097172437397, 34.011458756933152, 0.0 ], [ -118.373154383207293, 34.011735275654232, 0.0 ], [ -118.373190139938501, 34.011875918796797, 0.0 ], [ -118.373318864170699, 34.012231102326403, 0.0 ], [ -118.373440437056601, 34.012526691304053, 0.0 ], [ -118.373526253211395, 34.012703091177762, 0.0 ], [ -118.373836144881494, 34.013389620416213, 0.0 ], [ -118.373955333985407, 34.013678058047603, 0.0 ], [ -118.3740602203968, 34.014016555102657, 0.0 ], [ -118.374138885205497, 34.014407495363393, 0.0 ], [ -118.374160339244199, 34.014588662801323, 0.0 ], [ -118.374172258154601, 34.014791284277869, 0.0 ], [ -118.374172258154601, 34.014953381459271, 0.0 ], [ -118.374160339244199, 34.015189375884987, 0.0 ], [ -118.374141268987501, 34.015346705502047, 0.0 ], [ -118.374105512256307, 34.015566013453203, 0.0 ], [ -118.374069755525099, 34.015713807942049, 0.0 ], [ -118.374026847447794, 34.015859218648771, 0.0 ], [ -118.373976788024194, 34.016029659067392, 0.0 ], [ -118.373907658343896, 34.016232280543953, 0.0 ], [ -118.3738504475741, 34.016351469647887, 0.0 ], [ -118.373759863855, 34.01654455599612, 0.0 ], [ -118.373674047700206, 34.016701885613251, 0.0 ], [ -118.373566777506696, 34.016892588179431, 0.0 ], [ -118.373326015516895, 34.017333587863853, 0.0 ], [ -118.373144848078994, 34.017653014662287, 0.0 ], [ -118.3731090913478, 34.017712609214229, 0.0 ], [ -118.3728736159714, 34.018139110761673, 0.0 ], [ -118.372701176251795, 34.018073133825467, 0.0 ], [ -118.372559975611694, 34.018377402461198, 0.0 ], [ -118.372480003567901, 34.018581331173159, 0.0 ], [ -118.372426022438205, 34.018759268970904, 0.0 ], [ -118.372371041658099, 34.018959199080598, 0.0 ], [ -118.372328056684395, 34.019182121152973, 0.0 ], [ -118.372303065420695, 34.019374054058332, 0.0 ], [ -118.372283072409701, 34.019611970888931, 0.0 ], [ -118.372264079049302, 34.019875878633869, 0.0 ], [ -118.372241087086707, 34.020377703209363, 0.0 ], [ -118.372165113644996, 34.02180420454242, 0.0 ], [ -118.372184107005396, 34.021829195806113, 0.0 ], [ -118.372098947317795, 34.023631117057121, 0.0 ], [ -118.372106743424595, 34.023632000489449, 0.0 ], [ -118.372105899969597, 34.02364043504091, 0.0 ], [ -118.372098416618201, 34.023639437056453, 0.0 ], [ -118.372069644835904, 34.024090504353573, 0.0 ], [ -118.372038114909202, 34.024118710855419, 0.0 ], [ -118.372008459735, 34.02411879607142, 0.0 ] ], [ [ -118.371961799688506, 34.024105029704728, 0.0 ], [ -118.371875640447499, 34.024104947503197, 0.0 ] ], [ [ -118.370526630608097, 34.004496934003647, 0.0 ], [ -118.370526726332798, 34.004488690829312, 0.0 ] ], [ [ -118.370526726332798, 34.004488690829312, 0.0 ], [ -118.370490434589996, 34.004488398507497, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 193", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.026311756026104, 34.704551612328871, 0.0 ], [ -118.027976516991998, 34.704539765056708, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 202", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.474298812842093, 34.155830472615342, 0.0 ], [ -118.474298305939897, 34.155741166142192, 0.0 ], [ -118.474462421064004, 34.155741536951737, 0.0 ] ], [ [ -118.474462421064004, 34.155741536951737, 0.0 ], [ -118.474784345953907, 34.155742264324218, 0.0 ], [ -118.474803945638101, 34.1557263289289, 0.0 ], [ -118.474803263909905, 34.155297095846542, 0.0 ], [ -118.474779232992802, 34.155276388354217, 0.0 ], [ -118.474778125184699, 34.155275450978003, 0.0 ], [ -118.472129355699593, 34.154911578581498, 0.0 ], [ -118.4721107786077, 34.154895131890058, 0.0 ], [ -118.472115976784806, 34.15431881596092, 0.0 ], [ -118.472097655341003, 34.154301772757272, 0.0 ], [ -118.471590108738297, 34.154221669700448, 0.0 ], [ -118.469201162892006, 34.153826778673412, 0.0 ], [ -118.468902565965095, 34.153757838914863, 0.0 ], [ -118.466828152440996, 34.153415781818978, 0.0 ], [ -118.466147361673706, 34.153303552323401, 0.0 ], [ -118.466152304202794, 34.152585777804461, 0.0 ], [ -118.466083364444401, 34.15257410321005, 0.0 ] ], [ [ -118.466083364444401, 34.15257410321005, 0.0 ], [ -118.4656046208557, 34.152492807128858, 0.0 ], [ -118.461742716139597, 34.151851471378038, 0.0 ], [ -118.453803736262302, 34.150536076925391, 0.0 ], [ -118.453506417575696, 34.150499689685887, 0.0 ], [ -118.453243781808496, 34.150488696819551, 0.0 ], [ -118.453004324798201, 34.150497218421343, 0.0 ], [ -118.452815060022402, 34.150515113785012, 0.0 ], [ -118.452616591916694, 34.150528748347931, 0.0 ], [ -118.452436530470706, 34.150529430076041, 0.0 ], [ -118.452263712386497, 34.150525339707158, 0.0 ], [ -118.4520774301713, 34.150509745175931, 0.0 ], [ -118.451907338999504, 34.150487929875332, 0.0 ], [ -118.451617348890494, 34.150434669864168, 0.0 ], [ -118.448999257172005, 34.150003476813502, 0.0 ], [ -118.448985366961097, 34.150061849785708, 0.0 ], [ -118.448892481501503, 34.150046681334622, 0.0 ], [ -118.448909013408993, 34.149987797066203, 0.0 ], [ -118.448316074428504, 34.149889903935438, 0.0 ] ], [ [ -118.448316074428504, 34.149889903935438, 0.0 ], [ -118.446274048918994, 34.149552769294708, 0.0 ], [ -118.445952869747501, 34.149497123235037, 0.0 ], [ -118.445801781747704, 34.149465934172419, 0.0 ], [ -118.445669611703906, 34.149437131158408, 0.0 ], [ -118.4454103845774, 34.149360351526227, 0.0 ], [ -118.445219500697206, 34.149296354296801, 0.0 ], [ -118.445109145954106, 34.149248803758773, 0.0 ], [ -118.444951155456806, 34.149177733599863, 0.0 ], [ -118.444789756318897, 34.149111946834061, 0.0 ], [ -118.4446024515115, 34.149044540963807, 0.0 ], [ -118.444335640159395, 34.148977561173737, 0.0 ], [ -118.444025539070196, 34.148914416104489, 0.0 ], [ -118.4425126991041, 34.148662858419613, 0.0 ], [ -118.442348146973401, 34.148632180653117, 0.0 ], [ -118.442266936108396, 34.148601758534689, 0.0 ], [ -118.442196632893598, 34.148565626943103, 0.0 ], [ -118.442115336812506, 34.148519098997347, 0.0 ], [ -118.442039835420601, 34.148488336014879, 0.0 ], [ -118.441928713733304, 34.148464305097818, 0.0 ], [ -118.439479861026399, 34.148057569044262, 0.0 ], [ -118.439479264514304, 34.148892686019913, 0.0 ], [ -118.431292306024702, 34.147542097351888, 0.0 ], [ -118.430910282616395, 34.147429953072347, 0.0 ], [ -118.422587660226398, 34.146048686637883, 0.0 ], [ -118.422573180276203, 34.146048735759102, 0.0 ] ], [ [ -118.422573180276203, 34.146048735759102, 0.0 ], [ -118.422462051815998, 34.146049112718053, 0.0 ], [ -118.422460773575807, 34.146248262551907, 0.0 ], [ -118.422401633659305, 34.146290018400649, 0.0 ], [ -118.415543192889203, 34.145154685393877, 0.0 ], [ -118.415455505606701, 34.144910626718612, 0.0 ], [ -118.412632405202203, 34.144443442285308, 0.0 ] ], [ [ -118.412632405202203, 34.144443442285308, 0.0 ], [ -118.411581074136095, 34.144269461399688, 0.0 ], [ -118.411583545400504, 34.1438872675594, 0.0 ], [ -118.411585420153003, 34.143596340074183, 0.0 ], [ -118.411370931435897, 34.143362592537052, 0.0 ], [ -118.410545529086306, 34.142472340797887, 0.0 ], [ -118.410431083974203, 34.142349885380163, 0.0 ], [ -118.410316042350004, 34.142207574630213, 0.0 ], [ -118.410223156890495, 34.142073103753901, 0.0 ], [ -118.410058945624002, 34.141802628113098, 0.0 ], [ -118.4097305230909, 34.141163337546651, 0.0 ], [ -118.409635081150896, 34.141010545226543, 0.0 ], [ -118.409481607102506, 34.140707261418747, 0.0 ], [ -118.409415138608594, 34.140588725937803, 0.0 ], [ -118.409261834992293, 34.140369379907661, 0.0 ], [ -118.409197070818706, 34.140296179348361, 0.0 ], [ -118.409117564273998, 34.14020585036927, 0.0 ], [ -118.409070865896197, 34.140160941527817, 0.0 ], [ -118.408980792565302, 34.140073424677453, 0.0 ], [ -118.408867966557494, 34.139952332716, 0.0 ], [ -118.408779767978999, 34.139856209047807, 0.0 ], [ -118.408653648272505, 34.139727958940803, 0.0 ], [ -118.408528721590201, 34.139588886399594, 0.0 ], [ -118.408426547584796, 34.139461658884827, 0.0 ], [ -118.408322839690896, 34.139317473382491, 0.0 ], [ -118.408193140911607, 34.139134599808052, 0.0 ], [ -118.408041285967698, 34.138919940658923, 0.0 ], [ -118.407963739391406, 34.138812568476332, 0.0 ], [ -118.407880142477794, 34.138695226019699, 0.0 ], [ -118.407796630780297, 34.138591688557902, 0.0 ], [ -118.407720447660296, 34.138506898620072, 0.0 ], [ -118.407659688639399, 34.138439833613951, 0.0 ], [ -118.407341406812506, 34.138127176044279, 0.0 ], [ -118.407203868159598, 34.13798861479912, 0.0 ], [ -118.407095132520794, 34.13787851570396, 0.0 ], [ -118.4069556338994, 34.137740891835023, 0.0 ], [ -118.406739526077999, 34.137557847828468, 0.0 ], [ -118.406558271607906, 34.137429256857473, 0.0 ], [ -118.406179571624193, 34.137126910425863, 0.0 ], [ -118.405692988161903, 34.136822263161811, 0.0 ], [ -118.4052398093786, 34.136629334097243, 0.0 ], [ -118.405183566806897, 34.136605388396177, 0.0 ], [ -118.404944621092497, 34.136453448236253, 0.0 ], [ -118.404778790721707, 34.136316591311541, 0.0 ], [ -118.404596854523504, 34.136063925818412, 0.0 ], [ -118.403705665407998, 34.135440059351197, 0.0 ], [ -118.403529097818904, 34.135234518316011, 0.0 ], [ -118.403341707795505, 34.134921690314187, 0.0 ], [ -118.403206384759102, 34.134686068024671, 0.0 ], [ -118.402684862729402, 34.134683511544132, 0.0 ], [ -118.402422653042194, 34.134916236489033, 0.0 ], [ -118.402272843282802, 34.134899534149532, 0.0 ], [ -118.402143400151601, 34.134826930102307, 0.0 ], [ -118.402013360508207, 34.134629910668821, 0.0 ], [ -118.401919878536503, 34.134527140151206, 0.0 ], [ -118.401592819459793, 34.134154660936893, 0.0 ], [ -118.4014685745056, 34.134077796088732, 0.0 ], [ -118.401278542785604, 34.133978008131713, 0.0 ], [ -118.401234571320401, 34.133953295486542, 0.0 ], [ -118.401195883248306, 34.133921424695863, 0.0 ], [ -118.401162393353303, 34.133882140111631, 0.0 ], [ -118.401130437346495, 34.133809365632303, 0.0 ], [ -118.401091323194294, 34.13368852931891, 0.0 ], [ -118.401056384626997, 34.133629389402458, 0.0 ], [ -118.401015310506395, 34.133561898316231, 0.0 ], [ -118.400929157112202, 34.133516989474778, 0.0 ], [ -118.400787954170497, 34.133503440127967, 0.0 ], [ -118.400645217340497, 34.133520909411587, 0.0 ], [ -118.400552587529006, 34.133583884048939, 0.0 ], [ -118.400208059168605, 34.133947159933278, 0.0 ], [ -118.400146447987694, 34.134028967310471, 0.0 ], [ -118.400059698081407, 34.134226753688033, 0.0 ], [ -118.399874012378405, 34.13428316669193, 0.0 ], [ -118.399543203796796, 34.134206983571957, 0.0 ], [ -118.399398677430497, 34.134211755668879, 0.0 ], [ -118.399068721009101, 34.134311628842013, 0.0 ], [ -118.398903401934305, 34.134303618536229, 0.0 ], [ -118.398608469296207, 34.134175709293388, 0.0 ], [ -118.398345151800896, 34.134163693834807, 0.0 ], [ -118.398045361849796, 34.134100293117413, 0.0 ], [ -118.397786731235399, 34.134010986730686, 0.0 ], [ -118.397600789884393, 34.133998715624067, 0.0 ], [ -118.397271089111101, 34.134150059271917, 0.0 ], [ -118.397105940468293, 34.134172130220627, 0.0 ], [ -118.396764650316499, 34.134065865846253, 0.0 ], [ -118.396547690334998, 34.134040812337027, 0.0 ], [ -118.396403419616604, 34.13409714012478, 0.0 ], [ -118.396386802493097, 34.134310435817653, 0.0 ], [ -118.396278322502198, 34.134320491307768, 0.0 ], [ -118.396168393839204, 34.13210598265016, 0.0 ], [ -118.396115048612003, 34.131040697210139, 0.0 ], [ -118.396074997083502, 34.130858761011908, 0.0 ], [ -118.396105930497995, 34.130747213244447, 0.0 ], [ -118.396147856778896, 34.130308435968168, 0.0 ], [ -118.396119905924905, 34.130288921500103, 0.0 ], [ -118.396160553965501, 34.129831737563869, 0.0 ], [ -118.395882238450994, 34.12999296626981, 0.0 ], [ -118.394957985520605, 34.129992540189718, 0.0 ], [ -118.394106336637705, 34.129861989250273, 0.0 ], [ -118.3939336889853, 34.129835487068767, 0.0 ], [ -118.393527123363796, 34.129662242904239, 0.0 ], [ -118.393378677060596, 34.12958069117515, 0.0 ], [ -118.393244547048397, 34.129501951574589, 0.0 ], [ -118.393123284654905, 34.129430796199678, 0.0 ], [ -118.392978502640403, 34.129380944829087, 0.0 ], [ -118.392196816108097, 34.12929351319471, 0.0 ], [ -118.392071463345701, 34.128943957089263, 0.0 ], [ -118.391263018983693, 34.128381020074848, 0.0 ], [ -118.390191086694301, 34.127650037073202, 0.0 ], [ -118.389655418805702, 34.127116499584972, 0.0 ], [ -118.389547194462907, 34.12668701085471, 0.0 ], [ -118.389204455638804, 34.126417131725937, 0.0 ], [ -118.388962271715897, 34.126226503493832, 0.0 ], [ -118.388592093334097, 34.126218663620193, 0.0 ], [ -118.387311211368797, 34.126507290272897, 0.0 ], [ -118.386971199457307, 34.126399236362197, 0.0 ], [ -118.3861704245368, 34.125477795560407, 0.0 ], [ -118.385908896577902, 34.125431267614637, 0.0 ], [ -118.385674722960601, 34.125502678637687, 0.0 ], [ -118.385107354713298, 34.126256243884058, 0.0 ], [ -118.384823500157694, 34.126411933548781, 0.0 ], [ -118.384341518360301, 34.126460336246993, 0.0 ], [ -118.384241133891194, 34.126470476953138, 0.0 ], [ -118.384065077598194, 34.126374864581081, 0.0 ], [ -118.383989831854294, 34.126227696518058, 0.0 ], [ -118.383876238902502, 34.126111973165763, 0.0 ], [ -118.383676066476397, 34.126051981089141, 0.0 ], [ -118.383486119972403, 34.126089390921052, 0.0 ], [ -118.383345854406997, 34.126201535200593, 0.0 ], [ -118.383145937628896, 34.126463915319754, 0.0 ], [ -118.383036264613906, 34.126607845174021, 0.0 ], [ -118.382765448108898, 34.126699793257409, 0.0 ], [ -118.381315838428094, 34.126573417902748, 0.0 ], [ -118.379261024588004, 34.126057349698257, 0.0 ], [ -118.379110618316403, 34.126019599002369, 0.0 ], [ -118.379081730086298, 34.125937621193103, 0.0 ], [ -118.379187738812604, 34.12575764496323, 0.0 ], [ -118.379214752290295, 34.125625730567499, 0.0 ], [ -118.379186631004401, 34.1255096663511, 0.0 ], [ -118.379047217598995, 34.125439618784362, 0.0 ], [ -118.378292288896304, 34.125151077347731, 0.0 ], [ -118.378208777198793, 34.125118865692869, 0.0 ], [ -118.378135747071397, 34.125085375797852, 0.0 ], [ -118.378040731211499, 34.125033223594933, 0.0 ], [ -118.377815505276104, 34.124903610031687, 0.0 ], [ -118.377663309468105, 34.124816093181288, 0.0 ], [ -118.377524833438997, 34.124731558891483, 0.0 ], [ -118.377436975724507, 34.124686138753873, 0.0 ], [ -118.377325683605093, 34.124654012315233, 0.0 ], [ -118.377210897628999, 34.124642678584813, 0.0 ], [ -118.377139486605898, 34.124636713463516, 0.0 ], [ -118.377046175066297, 34.1246175398595, 0.0 ], [ -118.376988654254205, 34.124595042830819, 0.0 ], [ -118.376250513106896, 34.124269091562283, 0.0 ], [ -118.376244633201793, 34.124226398337292, 0.0 ], [ -118.376597597948006, 34.123966404266582, 0.0 ], [ -118.376342716838394, 34.123582676537907, 0.0 ], [ -118.375736830950899, 34.12339017355351, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 182", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.043776982237603, 34.071249133405573, 0.0 ], [ -118.043973534857201, 34.07124636951977, 0.0 ] ], [ [ -118.043973534857201, 34.07124636951977, 0.0 ], [ -118.044061772920998, 34.071245128732819, 0.0 ], [ -118.044061772920998, 34.071236521914997, 0.0 ] ], [ [ -118.044061772920998, 34.071236521914997, 0.0 ], [ -118.044061760931996, 34.071230994959187, 0.0 ] ], [ [ -118.044061760931996, 34.071230994959187, 0.0 ], [ -118.0440617461974, 34.07122420232561, 0.0 ] ], [ [ -118.0440617461974, 34.07122420232561, 0.0 ], [ -118.044061726652203, 34.071215191959602, 0.0 ] ], [ [ -118.044061726652203, 34.071215191959602, 0.0 ], [ -118.044061709356299, 34.07120721858012, 0.0 ] ], [ [ -118.044061709356299, 34.07120721858012, 0.0 ], [ -118.044061693421796, 34.071199872753063, 0.0 ] ], [ [ -118.044061693421796, 34.071199872753063, 0.0 ], [ -118.044061687704996, 34.071197237330772, 0.0 ], [ -118.044042815865794, 34.07119720776786, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 190", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.463852579527298, 34.404997327199553, 0.0 ], [ -118.463868685354697, 34.405010024386208, 0.0 ], [ -118.463861868073195, 34.40501598950749, 0.0 ], [ -118.4637460595048, 34.404925064016354, 0.0 ], [ -118.463734896206503, 34.404935375154537, 0.0 ] ], [ [ -118.463734896206503, 34.404935375154537, 0.0 ], [ -118.463831638383894, 34.405010976535607, 0.0 ] ], [ [ -118.463322012292707, 34.404589577655393, 0.0 ], [ -118.463852579527298, 34.404997327199553, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 180", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.791202531987494, 34.058209125734791, 0.0 ], [ -117.790969746982199, 34.056957596739188, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 193", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.130506744909795, 34.704272499674801, 0.0 ], [ -118.13050687706, 34.704289090158071, 0.0 ], [ -118.130493364874098, 34.704289147892958, 0.0 ] ], [ [ -118.130387049808206, 34.704265872761383, 0.0 ], [ -118.130506689181402, 34.704265503388932, 0.0 ], [ -118.130506744909795, 34.704272499674801, 0.0 ] ], [ [ -118.130203844877499, 34.704037178667477, 0.0 ], [ -118.130362803956302, 34.7040355052197, 0.0 ], [ -118.130365464251298, 34.70426593940423, 0.0 ], [ -118.130387049808206, 34.704265872761383, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 186", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.141693059574294, 34.082015891311357, 0.0 ], [ -118.141693059574294, 34.081952382201109, 0.0 ], [ -118.141708936830995, 34.081952382201109, 0.0 ] ], [ [ -118.141708936830995, 34.081952382201109, 0.0 ], [ -118.141745227703595, 34.081952382201109, 0.0 ], [ -118.141745679335301, 34.081895350437797, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 150", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.160584834421599, 33.9942357896592, 0.0 ], [ -118.160587378250597, 33.994219434667279, 0.0 ] ], [ [ -118.160587378250597, 33.994219434667279, 0.0 ], [ -118.160596927475495, 33.994158040013119, 0.0 ], [ -118.160638909699998, 33.994164780654842, 0.0 ] ], [ [ -118.160638909699998, 33.994164780654842, 0.0 ], [ -118.160780303537393, 33.993234766490843, 0.0 ], [ -118.160755561302906, 33.993175797498473, 0.0 ], [ -118.160770546849605, 33.993087723390907, 0.0 ], [ -118.160808023087597, 33.993066873934623, 0.0 ], [ -118.160930081281606, 33.992297730868593, 0.0 ] ], [ [ -118.160930081281606, 33.992297730868593, 0.0 ], [ -118.160930533523299, 33.992294881091887, 0.0 ] ], [ [ -118.160930533523299, 33.992294881091887, 0.0 ], [ -118.161126048719694, 33.991062852723807, 0.0 ], [ -118.1611025209681, 33.991030003312773, 0.0 ], [ -118.161135752421401, 33.990834645272713, 0.0 ], [ -118.161126278736006, 33.990822914426097, 0.0 ], [ -118.1613104004132, 33.989645599024684, 0.0 ], [ -118.161317760735798, 33.989641700194873, 0.0 ], [ -118.161321916836499, 33.989615609118367, 0.0 ], [ -118.161315886836505, 33.989608749313717, 0.0 ], [ -118.161393221964303, 33.989106819061213, 0.0 ] ], [ [ -118.161393221964303, 33.989106819061213, 0.0 ], [ -118.161400056384693, 33.989062461439786, 0.0 ] ], [ [ -118.161400056384693, 33.989062461439786, 0.0 ], [ -118.161577047907201, 33.987913728617762, 0.0 ], [ -118.161585774869494, 33.987908439549742, 0.0 ], [ -118.161589741670497, 33.987881729756161, 0.0 ], [ -118.161583130335501, 33.987875118421123, 0.0 ], [ -118.1616575263578, 33.987416841561739, 0.0 ], [ -118.161664622565695, 33.987413340301579, 0.0 ], [ -118.161682204136795, 33.987308889906643, 0.0 ] ], [ [ -118.138110227892696, 33.986898516357662, 0.0 ], [ -118.137970680150204, 33.987033088118601, 0.0 ], [ -118.137973206355994, 33.987035707029158, 0.0 ], [ -118.137939458933403, 33.987067111140242, 0.0 ], [ -118.137936797242503, 33.987064213216897, 0.0 ], [ -118.137260833704403, 33.987661802006031, 0.0 ], [ -118.137090842865803, 33.987662340166978, 0.0 ], [ -118.137002315589399, 33.987590779516417, 0.0 ] ], [ [ -118.137002315589399, 33.987590779516417, 0.0 ], [ -118.136984419334297, 33.987576313154193, 0.0 ] ], [ [ -118.161682204136795, 33.987308889906643, 0.0 ], [ -118.161706735173595, 33.987153764815318, 0.0 ], [ -118.161701164555396, 33.987147080073477, 0.0 ], [ -118.161790459599004, 33.986586027835997, 0.0 ], [ -118.161827876108205, 33.986590429778303, 0.0 ], [ -118.161929902404495, 33.985883865224949, 0.0 ] ], [ [ -118.138930514141805, 33.98610479669243, 0.0 ], [ -118.138905687251494, 33.986131421421611, 0.0 ], [ -118.138110227892696, 33.986898516357662, 0.0 ] ], [ [ -118.138934663637002, 33.986100346711609, 0.0 ], [ -118.138930514141805, 33.98610479669243, 0.0 ] ], [ [ -118.139034066844005, 33.985993745223212, 0.0 ], [ -118.138934663637002, 33.986100346711609, 0.0 ] ], [ [ -118.139297634495605, 33.985680849367469, 0.0 ], [ -118.1392606443723, 33.985728135578142, 0.0 ], [ -118.139124774863006, 33.985894445797292, 0.0 ], [ -118.139034066844005, 33.985993745223212, 0.0 ] ], [ [ -118.161929902404495, 33.985883865224949, 0.0 ], [ -118.161984280303798, 33.985506378784173, 0.0 ], [ -118.161949006514504, 33.985500553654347, 0.0 ], [ -118.162444385492805, 33.982424099985892, 0.0 ] ], [ [ -118.1395306586233, 33.985374786080747, 0.0 ], [ -118.139519233053207, 33.985368040571437, 0.0 ], [ -118.139403470535896, 33.985545554189493, 0.0 ], [ -118.139297634495605, 33.985680849367469, 0.0 ] ], [ [ -118.140134286975297, 33.984421942015857, 0.0 ], [ -118.1395306586233, 33.985374786080747, 0.0 ] ], [ [ -118.140940710699994, 33.983148979840642, 0.0 ], [ -118.140134286975297, 33.984421942015857, 0.0 ] ], [ [ -118.141451108011694, 33.98233851575511, 0.0 ], [ -118.140926575285306, 33.983140648872627, 0.0 ], [ -118.140940710699994, 33.983148979840642, 0.0 ] ], [ [ -118.162444385492805, 33.982424099985892, 0.0 ], [ -118.162657414351699, 33.98110112617551, 0.0 ] ], [ [ -118.141534139097999, 33.982211541820462, 0.0 ], [ -118.141451108011694, 33.98233851575511, 0.0 ] ], [ [ -118.141624143432196, 33.982101439329128, 0.0 ], [ -118.141611402835906, 33.982093387509323, 0.0 ], [ -118.141534139097999, 33.982211541820462, 0.0 ] ], [ [ -118.144696990580201, 33.977440473790011, 0.0 ], [ -118.144600096126595, 33.97743046015033, 0.0 ], [ -118.143498779456493, 33.979174407534273, 0.0 ], [ -118.141624143432196, 33.982101439329128, 0.0 ] ], [ [ -118.162657414351699, 33.98110112617551, 0.0 ], [ -118.162659779172003, 33.981086439924248, 0.0 ] ], [ [ -118.162659779172003, 33.981086439924248, 0.0 ], [ -118.162938060255598, 33.979358230011947, 0.0 ] ], [ [ -118.162938060255598, 33.979358230011947, 0.0 ], [ -118.163111487109504, 33.978281196660689, 0.0 ], [ -118.163429442644698, 33.976243080406412, 0.0 ], [ -118.163409921278998, 33.976240387804218, 0.0 ], [ -118.163414775035307, 33.976209445107223, 0.0 ] ], [ [ -118.145051364891401, 33.976867740000017, 0.0 ], [ -118.144696990580201, 33.977440473790011, 0.0 ] ], [ [ -118.145119274879207, 33.976894918132118, 0.0 ], [ -118.145114505927694, 33.976902923157922, 0.0 ], [ -118.145051364891401, 33.976867740000017, 0.0 ] ], [ [ -118.145138563334498, 33.976862541082198, 0.0 ], [ -118.145119274879207, 33.976894918132118, 0.0 ] ], [ [ -118.1450782801586, 33.976819086377922, 0.0 ], [ -118.145143486543006, 33.976854277125042, 0.0 ], [ -118.145138563334498, 33.976862541082198, 0.0 ] ], [ [ -118.145291870072995, 33.976487693407982, 0.0 ], [ -118.1450782801586, 33.976819086377922, 0.0 ] ], [ [ -118.1469121557016, 33.973973652092567, 0.0 ], [ -118.145291870072995, 33.976487693407982, 0.0 ] ], [ [ -118.163414775035307, 33.976209445107223, 0.0 ], [ -118.163420691687705, 33.976171726448982, 0.0 ], [ -118.163440213053306, 33.976174419051127, 0.0 ], [ -118.163458051542705, 33.976062002910609, 0.0 ], [ -118.163495518329597, 33.976068067370299, 0.0 ], [ -118.1635750903352, 33.975558064882783, 0.0 ], [ -118.163354911747405, 33.975533872990567, 0.0 ] ], [ [ -118.163354911747405, 33.975533872990567, 0.0 ], [ -118.163194865350405, 33.975516288059978, 0.0 ] ], [ [ -118.163194865350405, 33.975516288059978, 0.0 ], [ -118.163197076892999, 33.975495646996357, 0.0 ] ], [ [ -118.163197076892999, 33.975495646996357, 0.0 ], [ -118.162302763621597, 33.975400715507568, 0.0 ] ], [ [ -118.162302763621597, 33.975400715507568, 0.0 ], [ -118.160825095652697, 33.975243860829323, 0.0 ], [ -118.157110511891702, 33.97484682150499, 0.0 ], [ -118.156798634644403, 33.974805746245522, 0.0 ], [ -118.156405676837295, 33.974767162602873, 0.0 ], [ -118.155685678192299, 33.974755619036493, 0.0 ], [ -118.152450218541503, 33.97441957677303, 0.0 ], [ -118.151511293634996, 33.97431822434838, 0.0 ], [ -118.151427658371702, 33.974309463335103, 0.0 ] ], [ [ -118.151427658371702, 33.974309463335103, 0.0 ], [ -118.150284938761004, 33.974189760458543, 0.0 ] ], [ [ -118.150284938761004, 33.974189760458543, 0.0 ], [ -118.149762672783694, 33.974135051727551, 0.0 ], [ -118.147745717953597, 33.973947266658293, 0.0 ], [ -118.147745613171907, 33.973947255987191, 0.0 ] ], [ [ -118.147064989110305, 33.973881449080949, 0.0 ], [ -118.147025506041004, 33.973880863725263, 0.0 ], [ -118.146975362076205, 33.973889232778511, 0.0 ], [ -118.146951967924906, 33.973923843303837, 0.0 ], [ -118.146942674358002, 33.973926407046378, 0.0 ], [ -118.1469121557016, 33.973973652092567, 0.0 ] ], [ [ -118.147745613171907, 33.973947255987191, 0.0 ], [ -118.147382954065705, 33.973910322222942, 0.0 ], [ -118.147365327812594, 33.973916316325237, 0.0 ], [ -118.147064989110305, 33.973881449080949, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 176", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.046358429819904, 34.07654249727068, 0.0 ], [ -118.047157585636, 34.076694096566563, 0.0 ], [ -118.048767827510602, 34.07728310968244, 0.0 ], [ -118.050587871221296, 34.077992192167528, 0.0 ], [ -118.050604969822402, 34.077940106585572, 0.0 ] ], [ [ -118.050604969822402, 34.077940106585572, 0.0 ], [ -118.051283404359594, 34.075873466314007, 0.0 ], [ -118.051309207356397, 34.075880217533147, 0.0 ], [ -118.051782770224506, 34.074413801143073, 0.0 ] ], [ [ -118.051782770224506, 34.074413801143073, 0.0 ], [ -118.055456432756998, 34.074360626347911, 0.0 ], [ -118.055490774812199, 34.07437485742291, 0.0 ], [ -118.056194659120195, 34.074376902607291, 0.0 ], [ -118.056159720552898, 34.072010879869843, 0.0 ], [ -118.060163680370806, 34.071968271860882, 0.0 ] ], [ [ -118.060163680370806, 34.071968271860882, 0.0 ], [ -118.060122009738095, 34.07021162886749, 0.0 ], [ -118.060113658568298, 34.069423721565769, 0.0 ], [ -118.061544179861102, 34.068953584794933, 0.0 ], [ -118.061674901232493, 34.068921969652351, 0.0 ], [ -118.061822836239699, 34.06890313691234, 0.0 ], [ -118.063067927477505, 34.068901432592007, 0.0 ], [ -118.063222040357502, 34.068746324360347, 0.0 ], [ -118.064233767818607, 34.068742760366703, 0.0 ] ], [ [ -118.064233767818607, 34.068742760366703, 0.0 ], [ -118.064385111466393, 34.068743101230673, 0.0 ], [ -118.064384514954398, 34.067930225635841, 0.0 ], [ -118.064384679223494, 34.067913937303707, 0.0 ], [ -118.064389102804498, 34.067475311149558, 0.0 ], [ -118.064376760296696, 34.066885477256108, 0.0 ], [ -118.064373276920904, 34.066845984750202, 0.0 ], [ -118.064362870085802, 34.066727998054951, 0.0 ], [ -118.064331766239206, 34.066579210887717, 0.0 ], [ -118.064290521686502, 34.066458971086327, 0.0 ], [ -118.064208714309402, 34.066337197396827, 0.0 ], [ -118.064172260594503, 34.066292273554112, 0.0 ], [ -118.064121793971097, 34.066230080862347, 0.0 ], [ -118.064015103516596, 34.066124327784017, 0.0 ], [ -118.063877394431699, 34.066024198962943, 0.0 ], [ -118.063760392839001, 34.065941198561482, 0.0 ], [ -118.063636488748998, 34.065869702322502, 0.0 ], [ -118.063512158578902, 34.065818998791812, 0.0 ], [ -118.063361326227195, 34.065769658717457, 0.0 ], [ -118.0632237023583, 34.065735401878257, 0.0 ], [ -118.063224639734401, 34.063249309771557, 0.0 ] ], [ [ -118.063224639734401, 34.063249309771557, 0.0 ], [ -118.063227918463397, 34.063249308054971, 0.0 ] ], [ [ -118.063227918463397, 34.063249308054971, 0.0 ], [ -118.063244450057596, 34.063249299399622, 0.0 ], [ -118.063244331643304, 34.063092671302961, 0.0 ] ], [ [ -118.063244331643304, 34.063092671302961, 0.0 ], [ -118.063244292174204, 34.063040461933703, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 165", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.246669562828401, 33.820233262660807, 0.0 ], [ -118.246682864863402, 33.820237895676343, 0.0 ], [ -118.246694724039401, 33.820214384971678, 0.0 ], [ -118.246765623766294, 33.820237393296523, 0.0 ] ], [ [ -118.246634748460195, 33.820209675986042, 0.0 ], [ -118.246632301664107, 33.820214394135981, 0.0 ], [ -118.246629746523595, 33.820219321402497, 0.0 ], [ -118.246669562828401, 33.820233262660807, 0.0 ] ], [ [ -118.246273756910895, 33.82004199296744, 0.0 ], [ -118.246294293971204, 33.820017024674129, 0.0 ], [ -118.246373374435805, 33.820062274379708, 0.0 ], [ -118.246420328461696, 33.820089373073401, 0.0 ], [ -118.246452795764498, 33.820107779733277, 0.0 ], [ -118.246508612256207, 33.820133770618803, 0.0 ], [ -118.246570053005101, 33.8201616362566, 0.0 ], [ -118.246602690740005, 33.820174333443262, 0.0 ], [ -118.246627573817193, 33.820184900229513, 0.0 ], [ -118.246617859191105, 33.820203051241279, 0.0 ], [ -118.246634748460195, 33.820209675986042, 0.0 ] ], [ [ -118.246240948743903, 33.820009781312663, 0.0 ], [ -118.246234535173798, 33.820019440076969, 0.0 ], [ -118.246237591556493, 33.820021477665463, 0.0 ], [ -118.246273756910895, 33.82004199296744, 0.0 ] ], [ [ -118.246084988902197, 33.819934397431879, 0.0 ], [ -118.246090274390198, 33.819937141610247, 0.0 ], [ -118.246094140664496, 33.819932237649446, 0.0 ], [ -118.246098297129905, 33.819926695695187, 0.0 ], [ -118.246099469254801, 33.819927281757671, 0.0 ], [ -118.246101194474605, 33.819928144367488, 0.0 ], [ -118.246093269384801, 33.819938540721751, 0.0 ], [ -118.246230126309698, 33.820006117023993, 0.0 ], [ -118.246235239270703, 33.820006969184092, 0.0 ], [ -118.246240948743903, 33.820009781312663, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 199", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.4748556777852, 34.155756741507723, 0.0 ], [ -118.474855461473993, 34.155718676305092, 0.0 ] ], [ [ -118.474855461473993, 34.155718676305092, 0.0 ], [ -118.474855349870097, 34.155699036886908, 0.0 ], [ -118.474845355785405, 34.155685336634861, 0.0 ], [ -118.474842026888894, 34.155115388635423, 0.0 ], [ -118.474203598791803, 34.155024404589241, 0.0 ], [ -118.474198656262701, 34.154069218244388, 0.0 ], [ -118.474194565893896, 34.152247299781251, 0.0 ], [ -118.4741891120688, 34.150853591808257, 0.0 ], [ -118.474156474333896, 34.150661685335827, 0.0 ], [ -118.4741101168201, 34.150580730118932, 0.0 ], [ -118.474037853637, 34.150492787188362, 0.0 ], [ -118.473806151284293, 34.15035823109605, 0.0 ], [ -118.473785065051601, 34.150347441326453, 0.0 ], [ -118.473463753324197, 34.150183026963248, 0.0 ], [ -118.472691355337801, 34.149813530309537, 0.0 ], [ -118.472656212570499, 34.149800594135719, 0.0 ], [ -118.472592504757003, 34.149777143069826, 0.0 ], [ -118.472511890404107, 34.149753964312957, 0.0 ], [ -118.472276268114499, 34.149706413774972, 0.0 ], [ -118.472076862632605, 34.149670367399438, 0.0 ], [ -118.472023495659599, 34.14966120568738, 0.0 ], [ -118.471759177317793, 34.149615829147983, 0.0 ], [ -118.470130869647406, 34.14934595001921, 0.0 ], [ -118.470175437624803, 34.149110072081633, 0.0 ], [ -118.470218130849801, 34.149035934145992, 0.0 ], [ -118.4702865593122, 34.148966483091478, 0.0 ], [ -118.470337944571, 34.148922426410152, 0.0 ], [ -118.470400833992201, 34.148873086335797, 0.0 ], [ -118.470498065468703, 34.148827325334167, 0.0 ], [ -118.470635518905496, 34.148778155691851, 0.0 ], [ -118.470735818158602, 34.148757277767501, 0.0 ], [ -118.471134373474399, 34.148710408957591, 0.0 ], [ -118.471475493194106, 34.148663710579697, 0.0 ], [ -118.471638852300501, 34.148627323340087, 0.0 ], [ -118.471802040974794, 34.148567757343592, 0.0 ], [ -118.471942221324298, 34.148498050640903, 0.0 ], [ -118.472050701315098, 34.148404313021231, 0.0 ], [ -118.472113420304296, 34.148332561134161, 0.0 ], [ -118.472156113529195, 34.14826651872022, 0.0 ], [ -118.472195568545501, 34.148137586885127, 0.0 ], [ -118.4722459312122, 34.147841035142783, 0.0 ], [ -118.4722582875347, 34.147736389872719, 0.0 ], [ -118.472299276439301, 34.147495313758093, 0.0 ], [ -118.472297572119004, 34.147404899563043, 0.0 ], [ -118.472269365617095, 34.147303918581862, 0.0 ], [ -118.472213208261294, 34.147200040256003, 0.0 ], [ -118.472121601042005, 34.147090708105033, 0.0 ], [ -118.471844308119699, 34.14690885712276, 0.0 ], [ -118.471814993809502, 34.146792025962171, 0.0 ], [ -118.472190370368395, 34.14631507190996, 0.0 ], [ -118.472995406089694, 34.14523410672264, 0.0 ], [ -118.473092211486104, 34.145201128123666, 0.0 ], [ -118.4736191021249, 34.14441560687046, 0.0 ], [ -118.473838703803096, 34.144095961587297, 0.0 ], [ -118.473908325289699, 34.143958934230483, 0.0 ], [ -118.473959204651706, 34.143812205210473, 0.0 ], [ -118.473961218663504, 34.143806397079928, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 254", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.322873366319897, 33.917031773130539, 0.0 ], [ -118.322873366319897, 33.917040966786942, 0.0 ], [ -118.322880438363299, 33.917040966786942, 0.0 ], [ -118.322880459082199, 33.917050209708293, 0.0 ] ], [ [ -118.322886803202294, 33.916998063057051, 0.0 ], [ -118.322873366319897, 33.916998063057051, 0.0 ], [ -118.322873366319897, 33.917031773130539, 0.0 ] ], [ [ -118.322911307181499, 33.916578726750927, 0.0 ], [ -118.322910528567405, 33.916635691519232, 0.0 ], [ -118.322881284572404, 33.91663527051756, 0.0 ], [ -118.322879649833197, 33.916989388676548, 0.0 ], [ -118.322886803202294, 33.91698934087016, 0.0 ], [ -118.322886803202294, 33.916998063057051, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 184", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.273358732549696, 34.155437530849483, 0.0 ], [ -118.272981737440503, 34.155488917102858, 0.0 ], [ -118.272714926088398, 34.15551090283553, 0.0 ], [ -118.272596220175402, 34.155518060981009, 0.0 ], [ -118.272434480173402, 34.155522662646021, 0.0 ], [ -118.271854329523407, 34.155526923446892, 0.0 ], [ -118.271356667978793, 34.155526838230898, 0.0 ], [ -118.271116188376197, 34.155527690391082, 0.0 ], [ -118.271116273592199, 34.15551277758793, 0.0 ], [ -118.271096759124106, 34.154075865093773, 0.0 ], [ -118.269943360321506, 34.154059418402277, 0.0 ], [ -118.269926231902005, 34.154080978054829, 0.0 ], [ -118.269925279683804, 34.154261488907977, 0.0 ] ], [ [ -118.274071185099501, 34.155463303783243, 0.0 ], [ -118.274067883834107, 34.155455531161209, 0.0 ] ], [ [ -118.274108874598497, 34.155453028645567, 0.0 ], [ -118.274071185099501, 34.155463303783243, 0.0 ] ], [ [ -118.274067883834107, 34.155455531161209, 0.0 ], [ -118.274001858391003, 34.155300078407222, 0.0 ], [ -118.273908461635301, 34.155324109324233, 0.0 ], [ -118.273377480627701, 34.155434975363633, 0.0 ], [ -118.273370649941995, 34.155435906431087, 0.0 ], [ -118.273369565325297, 34.155433310711892, 0.0 ], [ -118.273358215148903, 34.155435171494183, 0.0 ], [ -118.273358732549696, 34.155437530849483, 0.0 ] ], [ [ -118.257883930329896, 34.155218271030023, 0.0 ], [ -118.257883872674697, 34.155206717376231, 0.0 ], [ -118.257873980226407, 34.155206727631509, 0.0 ] ], [ [ -118.268921130451801, 34.154856074025517, 0.0 ], [ -118.264577733753299, 34.154877662606438, 0.0 ], [ -118.264571001687898, 34.155182991598572, 0.0 ], [ -118.257893815387902, 34.155215458901452, 0.0 ], [ -118.257893815387902, 34.155218185814029, 0.0 ], [ -118.257883930329896, 34.155218271030023, 0.0 ] ], [ [ -118.257873980226407, 34.155206727631509, 0.0 ], [ -118.257850184786705, 34.151782020323367, 0.0 ] ], [ [ -118.269925279683804, 34.154261488907977, 0.0 ], [ -118.269922482397206, 34.154791764860363, 0.0 ], [ -118.269823972680399, 34.154851586504883, 0.0 ], [ -118.268921130451801, 34.154856074025517, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 186", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.152949035471195, 34.160046309653481, 0.0 ], [ -118.153343987324007, 34.160528592402613, 0.0 ], [ -118.1538963575521, 34.16118833481336, 0.0 ], [ -118.154033640557003, 34.161352205215763, 0.0 ], [ -118.154197766607496, 34.161351864351708, 0.0 ], [ -118.154258462300504, 34.161306913563301, 0.0 ], [ -118.154706484671294, 34.160975111455947, 0.0 ], [ -118.157668024738697, 34.162545405116568, 0.0 ], [ -118.157791536191397, 34.162615044552751, 0.0 ], [ -118.157864867506603, 34.163208977030187, 0.0 ], [ -118.157749825882505, 34.163378471689853, 0.0 ], [ -118.157728862742005, 34.163790235488356, 0.0 ], [ -118.1577288569231, 34.16389828062723, 0.0 ], [ -118.157732017316405, 34.163912046326487, 0.0 ], [ -118.157727074952305, 34.163922536809302, 0.0 ], [ -118.157683341552797, 34.163988156572387, 0.0 ] ], [ [ -118.150500233753505, 34.152473687982003, 0.0 ], [ -118.150500301278797, 34.152480802271427, 0.0 ], [ -118.150505697415198, 34.153087359285891, 0.0 ], [ -118.150504930471001, 34.153587832959147, 0.0 ], [ -118.150517031145498, 34.154573441422443, 0.0 ], [ -118.150550861904605, 34.157186420179883, 0.0 ], [ -118.150561599122994, 34.157873261284323, 0.0 ], [ -118.151098460035797, 34.157872920420218, 0.0 ], [ -118.151247076771099, 34.158046505448688, 0.0 ], [ -118.151544480673607, 34.158393760721793, 0.0 ], [ -118.1529323939574, 34.16002598832894, 0.0 ], [ -118.152949035471195, 34.160046309653481, 0.0 ] ], [ [ -118.150888401023806, 34.150810486003891, 0.0 ], [ -118.150880936878295, 34.1508129740523, 0.0 ], [ -118.150860960925499, 34.150819632703289, 0.0 ], [ -118.150703055774898, 34.150870048203153, 0.0 ], [ -118.150521369728196, 34.150929976061462, 0.0 ], [ -118.150520418492405, 34.151066954023392, 0.0 ], [ -118.150499476645905, 34.152256162247127, 0.0 ], [ -118.150500091667297, 34.152460982174993, 0.0 ], [ -118.150500156969798, 34.152466446073923, 0.0 ], [ -118.150500233753505, 34.152473687982003, 0.0 ] ], [ [ -118.150898059123506, 34.150807266637237, 0.0 ], [ -118.150888401023806, 34.150810486003891, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 166", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.255687833405403, 33.807745275447211, 0.0 ], [ -118.255688083979905, 33.807745271071788, 0.0 ] ], [ [ -118.255688083979905, 33.807745271071788, 0.0 ], [ -118.255810244477999, 33.807743130959537, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.8468341437124, 34.042317107527069, 0.0 ], [ -117.846839440154696, 34.042320000122672, 0.0 ], [ -117.846964025972895, 34.042388428585092, 0.0 ], [ -117.847081283213498, 34.042461629144498, 0.0 ], [ -117.847233223373493, 34.04256635963047, 0.0 ], [ -117.847376897579693, 34.042673305732919, 0.0 ], [ -117.847535740237106, 34.042800192383631, 0.0 ], [ -117.847670296329397, 34.042924266905644, 0.0 ], [ -117.847803574181398, 34.043056863029612, 0.0 ], [ -117.847919041885604, 34.043167984716902, 0.0 ], [ -117.847979289610294, 34.043239225307957, 0.0 ], [ -117.847996758893999, 34.043265386625443, 0.0 ], [ -117.848011927345198, 34.043292570535201, 0.0 ], [ -117.848023175859495, 34.043318817068709, 0.0 ], [ -117.848167105713898, 34.043486522191898, 0.0 ], [ -117.848253940836102, 34.043596536071057, 0.0 ], [ -117.848342735926806, 34.043728365250843, 0.0 ], [ -117.848462038351798, 34.043967907477118, 0.0 ], [ -117.848490670933799, 34.044019463168041, 0.0 ], [ -117.848537795391806, 34.044111240819277, 0.0 ], [ -117.8485839824735, 34.044210517480167, 0.0 ], [ -117.848622414897605, 34.044298716058726, 0.0 ], [ -117.848717686405607, 34.044529566251178, 0.0 ], [ -117.848767963856105, 34.044656708550029, 0.0 ], [ -117.848889907977807, 34.044983938058877, 0.0 ], [ -117.849152714177094, 34.045700519553421, 0.0 ], [ -117.849194129161802, 34.04580865868023, 0.0 ], [ -117.849215092302202, 34.045857317026467, 0.0 ], [ -117.849293025680595, 34.046007552830901, 0.0 ], [ -117.849684462128906, 34.0469058149109, 0.0 ], [ -117.849836061424796, 34.047248042438937, 0.0 ], [ -117.849938491078305, 34.047474717046541, 0.0 ], [ -117.850107304009896, 34.047857422183, 0.0 ], [ -117.850540797893004, 34.048827010034877, 0.0 ], [ -117.850697765797904, 34.049116659279839, 0.0 ], [ -117.8508374348513, 34.049316661273807, 0.0 ], [ -117.8508659822173, 34.049353559809589, 0.0 ], [ -117.850942420985405, 34.049445933973111, 0.0 ], [ -117.850996788804807, 34.049507374721948, 0.0 ], [ -117.851067858963802, 34.04958210916967, 0.0 ], [ -117.851154182789998, 34.049666387811413, 0.0 ], [ -117.851257208955602, 34.049759273270944, 0.0 ], [ -117.851346941422506, 34.049835285958963, 0.0 ], [ -117.851438633857697, 34.049910276054703, 0.0 ], [ -117.8516035268525, 34.05003358363264, 0.0 ], [ -117.851679795188502, 34.050086758427767, 0.0 ], [ -117.851769783303396, 34.050144790535967, 0.0 ], [ -117.851828838003797, 34.050179814319399, 0.0 ], [ -117.851956917678706, 34.050247561053581, 0.0 ], [ -117.852038639839904, 34.050292384679118, 0.0 ], [ -117.852094711979703, 34.050319824236823, 0.0 ], [ -117.852141836437596, 34.050340190865128, 0.0 ], [ -117.852203277186604, 34.050367630422834, 0.0 ], [ -117.852258838030195, 34.05039166133993, 0.0 ], [ -117.852351126977595, 34.050430690276087, 0.0 ], [ -117.852454664439406, 34.050471934828742, 0.0 ], [ -117.852575159888701, 34.050515565429947, 0.0 ], [ -117.852650661280606, 34.050540192859089, 0.0 ], [ -117.852725907024507, 34.050564223776178, 0.0 ], [ -117.852821093316507, 34.050593367654344, 0.0 ], [ -117.852910740567296, 34.050618762027582, 0.0 ], [ -117.853085689052094, 34.050660688308469, 0.0 ], [ -117.853205332341204, 34.050685400953718, 0.0 ], [ -117.853288077094604, 34.050700739836842, 0.0 ], [ -117.853378661721706, 34.050714885695847, 0.0 ], [ -117.853501458003507, 34.050730480227067, 0.0 ], [ -117.853598433831905, 34.05074070614922, 0.0 ], [ -117.853722337921994, 34.050750761639392, 0.0 ], [ -117.853816160757702, 34.050757323272776, 0.0 ], [ -117.853907001032795, 34.050762606665941, 0.0 ], [ -117.854006192477698, 34.050764737066359, 0.0 ], [ -117.854075302668207, 34.050764737066359, 0.0 ], [ -117.854169636799995, 34.050761498857618, 0.0 ], [ -117.854336660195102, 34.050752806823837, 0.0 ], [ -117.854448974906703, 34.050745733894402, 0.0 ], [ -117.854559670514007, 34.050734996676091, 0.0 ], [ -117.854660225415202, 34.050722214273392, 0.0 ], [ -117.854762569852696, 34.050706278878067, 0.0 ], [ -117.854890138231497, 34.0506827592571, 0.0 ], [ -117.855054008633999, 34.050647224177702, 0.0 ], [ -117.855262361797799, 34.050594475462582, 0.0 ], [ -117.855493893718403, 34.050524513111831, 0.0 ], [ -117.855538802559906, 34.050614842090887, 0.0 ], [ -117.856114266328902, 34.050421913026241, 0.0 ], [ -117.856285720957004, 34.05036814171892, 0.0 ], [ -117.856493903688701, 34.050296304615891, 0.0 ], [ -117.856627863268898, 34.050259235648113, 0.0 ], [ -117.856811077707405, 34.050219610199747, 0.0 ], [ -117.857007841492802, 34.050187568976988, 0.0 ], [ -117.857195657596293, 34.050166009324457, 0.0 ], [ -117.857414662762395, 34.050148795688777, 0.0 ], [ -117.857627276727001, 34.050137461958457, 0.0 ], [ -117.857795578362499, 34.050140785383121, 0.0 ], [ -117.858019440841503, 34.050149988713137, 0.0 ], [ -117.858195667566605, 34.050170610989461, 0.0 ], [ -117.8584275403514, 34.050204697396559, 0.0 ], [ -117.858433164608499, 34.050237590779538, 0.0 ], [ -117.858748975170897, 34.050305763593848, 0.0 ], [ -117.859119238768798, 34.050423106050481, 0.0 ], [ -117.860192108434404, 34.050874239649438, 0.0 ], [ -117.861659698694993, 34.051494441827813, 0.0 ], [ -117.862170313074301, 34.051708674896823, 0.0 ], [ -117.862491066165802, 34.051858995952422, 0.0 ], [ -117.863011395171199, 34.052147281741057, 0.0 ], [ -117.863282041244105, 34.052320099825472, 0.0 ], [ -117.863611401153406, 34.052569186245719, 0.0 ], [ -117.863948089640203, 34.052879116902972, 0.0 ], [ -117.8642152418563, 34.053161608002277, 0.0 ], [ -117.864356274366003, 34.05333561911101, 0.0 ], [ -117.864516565695695, 34.053552408660522, 0.0 ], [ -117.864710432136505, 34.0538469152185, 0.0 ], [ -117.865179716747093, 34.054600821328918, 0.0 ], [ -117.866096300235895, 34.056102924076818, 0.0 ], [ -117.866303034295399, 34.056390357705247, 0.0 ], [ -117.866544195626005, 34.056651800448179, 0.0 ], [ -117.866687869832305, 34.056788401724951, 0.0 ], [ -117.866946670878704, 34.056996499240732, 0.0 ], [ -117.867092219837303, 34.05709969583836, 0.0 ], [ -117.867314377995996, 34.056972383107642, 0.0 ], [ -117.867444161991301, 34.056914862295613, 0.0 ], [ -117.867529804089301, 34.056884184529117, 0.0 ], [ -117.867662229781104, 34.056843962568642, 0.0 ], [ -117.867865469983798, 34.056791639933692, 0.0 ], [ -117.868139439481496, 34.056737612978353, 0.0 ], [ -117.868363728040705, 34.056707361291949, 0.0 ], [ -117.869062158523505, 34.056641915390173, 0.0 ], [ -117.869617170448194, 34.056595302228402, 0.0 ], [ -117.869861825635695, 34.056580474641237, 0.0 ], [ -117.870027570790498, 34.056580559857238, 0.0 ], [ -117.870245042068206, 34.05659598395647, 0.0 ], [ -117.870436437244393, 34.056617799257083, 0.0 ], [ -117.870667969165197, 34.05665759513743, 0.0 ], [ -117.870921742466507, 34.056717331566027, 0.0 ], [ -117.871125834829499, 34.056779624475112, 0.0 ], [ -117.871328137655993, 34.056855296298991, 0.0 ], [ -117.871524560577299, 34.056940427100884, 0.0 ], [ -117.871717574857897, 34.057033994288602, 0.0 ], [ -117.871847358853103, 34.057108217440224, 0.0 ], [ -117.871963508285504, 34.057182440591809, 0.0 ], [ -117.872059802385905, 34.057248738653797, 0.0 ], [ -117.872188478572895, 34.05735006049904, 0.0 ], [ -117.872320392968703, 34.057471067244457, 0.0 ], [ -117.872546811928203, 34.057696463611883, 0.0 ], [ -117.8728083398872, 34.057996423995007, 0.0 ], [ -117.872980476243498, 34.058207333639317, 0.0 ], [ -117.873041064832194, 34.058281642006968, 0.0 ], [ -117.873262796910694, 34.058553140239987, 0.0 ], [ -117.873099863884505, 34.058660341990588, 0.0 ] ], [ [ -117.846795348308106, 34.042295919829748, 0.0 ], [ -117.8468341437124, 34.042317107527069, 0.0 ] ], [ [ -117.844227889015997, 34.040885725224783, 0.0 ], [ -117.844254892577197, 34.04090963675462, 0.0 ], [ -117.844255333681105, 34.040947274938112, 0.0 ], [ -117.844306437560306, 34.04098798480787, 0.0 ], [ -117.844725670623205, 34.04128378901008, 0.0 ], [ -117.845001817636401, 34.04144598688405, 0.0 ], [ -117.845176334336202, 34.041531192096258, 0.0 ], [ -117.8454257905601, 34.041651300648518, 0.0 ], [ -117.845459667331198, 34.041652327217307, 0.0 ], [ -117.845505862928206, 34.041659513199079, 0.0 ], [ -117.846236668242796, 34.041909634791601, 0.0 ], [ -117.846568936211398, 34.042046308040668, 0.0 ], [ -117.846679115220894, 34.042102219776879, 0.0 ], [ -117.8466131916271, 34.042196436896702, 0.0 ], [ -117.846795348308106, 34.042295919829748, 0.0 ] ], [ [ -117.836262126572805, 34.026835249054848, 0.0 ], [ -117.836247941287596, 34.026853292870449, 0.0 ], [ -117.836367414144704, 34.026939616696623, 0.0 ], [ -117.836185733594405, 34.027149929828852, 0.0 ], [ -117.836350200509003, 34.027843332566633, 0.0 ], [ -117.836434479150796, 34.027968259248873, 0.0 ], [ -117.836658426845801, 34.028350197441178, 0.0 ], [ -117.836961795869698, 34.028925064698058, 0.0 ], [ -117.837339388045095, 34.029691838427297, 0.0 ], [ -117.837798652733298, 34.030632814298563, 0.0 ], [ -117.8380736210934, 34.031177884322197, 0.0 ], [ -117.838412683790693, 34.031815932890012, 0.0 ], [ -117.838552438060205, 34.032097827477237, 0.0 ], [ -117.838857159252399, 34.032747393988387, 0.0 ], [ -117.839307328691504, 34.033647732866761, 0.0 ], [ -117.839565263613494, 34.034263369991599, 0.0 ], [ -117.839773809168705, 34.034863798689557, 0.0 ], [ -117.839885134854299, 34.035190475701519, 0.0 ], [ -117.840034785775998, 34.035728854017293, 0.0 ], [ -117.840268387214607, 34.036648659682093, 0.0 ], [ -117.840366937821599, 34.036966211637811, 0.0 ], [ -117.8405092886983, 34.037281938582318, 0.0 ], [ -117.840673539709897, 34.037581240425673, 0.0 ], [ -117.840865165890094, 34.037858642134118, 0.0 ], [ -117.841164467733407, 34.038218169348397, 0.0 ], [ -117.841513044880301, 34.038555796427772, 0.0 ], [ -117.842825936142702, 34.03964430237599, 0.0 ], [ -117.844227889015997, 34.040885725224783, 0.0 ] ], [ [ -117.836272514580003, 34.026822035412593, 0.0 ], [ -117.836262126572805, 34.026835249054848, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8372350836392, 34.102972500876128, 0.0 ], [ -117.837234998423099, 34.103091803301318, 0.0 ], [ -117.835401490581603, 34.103094530213852, 0.0 ], [ -117.8354013201496, 34.103109869097104, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 192", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.924576270511807, 34.557559090682759, 0.0 ], [ -117.9245795911811, 34.557559144776128, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 161", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.197083256784097, 33.864742004276572, 0.0 ], [ -118.197083256651396, 33.864749294697837, 0.0 ], [ -118.1971600236391, 33.864749294697837, 0.0 ], [ -118.197159993393697, 33.864745311724207, 0.0 ] ], [ [ -118.197159993393697, 33.864745311724207, 0.0 ], [ -118.197161696351401, 33.864745311724207, 0.0 ], [ -118.197161696351401, 33.864731329545151, 0.0 ], [ -118.197280901731105, 33.864731372715418, 0.0 ], [ -118.197280856916507, 33.864745169411478, 0.0 ], [ -118.197285637148596, 33.864745169411478, 0.0 ] ], [ [ -118.197083256836606, 33.864739115423973, 0.0 ], [ -118.197083256784097, 33.864742004276572, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 258", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.241674435464205, 33.781114019559318, 0.0 ], [ -118.241654624933204, 33.780904526274277, 0.0 ], [ -118.241641672098496, 33.780905634082522, 0.0 ], [ -118.241606903963202, 33.780537841749222, 0.0 ], [ -118.241600171897801, 33.780538012181239, 0.0 ], [ -118.241378610251203, 33.777857712769588, 0.0 ], [ -118.241578527029205, 33.777845186015028, 0.0 ], [ -118.241515126311995, 33.777574369510049, 0.0 ], [ -118.241405538512893, 33.777234357598537, 0.0 ], [ -118.241105237265799, 33.776700394030257, 0.0 ], [ -118.241442607480593, 33.776048406277241, 0.0 ], [ -118.2406694425501, 33.768245431164509, 0.0 ], [ -118.239734878481698, 33.768310024906057, 0.0 ] ], [ [ -118.239734878481698, 33.768310024906057, 0.0 ], [ -118.239739821010602, 33.768359279764383, 0.0 ], [ -118.239602026709704, 33.768368823958369, 0.0 ], [ -118.238831759123698, 33.763618286607468, 0.0 ], [ -118.238368269202198, 33.761944303151473, 0.0 ], [ -118.238083771817003, 33.761076593729193, 0.0 ] ], [ [ -118.238048704987406, 33.761079872271949, 0.0 ], [ -118.238128726975802, 33.761418094240859, 0.0 ] ], [ [ -118.238083771817003, 33.761076593729193, 0.0 ], [ -118.238049390863196, 33.76097173273898, 0.0 ], [ -118.238023059113601, 33.760971477090948, 0.0 ], [ -118.238048704987406, 33.761079872271949, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 172", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.191508343213201, 34.041563254838159, 0.0 ], [ -118.191510743942104, 34.041662709045468, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.053732514754003, 33.955864182983319, 0.0 ], [ -118.053484892106198, 33.95610156046007, 0.0 ] ], [ [ -118.053894007804601, 33.955709371566627, 0.0 ], [ -118.053732514754003, 33.955864182983319, 0.0 ] ], [ [ -118.054964957513107, 33.954660265138862, 0.0 ], [ -118.054452436706697, 33.9551729968898, 0.0 ], [ -118.054441712644106, 33.95516342183393, 0.0 ], [ -118.054420647521297, 33.955183720952313, 0.0 ], [ -118.054432317907995, 33.955193333574137, 0.0 ], [ -118.053894007804601, 33.955709371566627, 0.0 ] ], [ [ -118.055067461661906, 33.954557718801198, 0.0 ], [ -118.054964957513107, 33.954660265138862, 0.0 ] ], [ [ -118.055098212906501, 33.95452695489989, 0.0 ], [ -118.055067461661906, 33.954557718801198, 0.0 ] ], [ [ -118.055139214566097, 33.954485936364847, 0.0 ], [ -118.055098212906501, 33.95452695489989, 0.0 ] ], [ [ -118.055594332986601, 33.95403063062561, 0.0 ], [ -118.055139214566097, 33.954485936364847, 0.0 ] ], [ [ -118.055768590039605, 33.953856301851637, 0.0 ], [ -118.055594332986601, 33.95403063062561, 0.0 ] ], [ [ -118.056266760202703, 33.953357926650732, 0.0 ], [ -118.055768590039605, 33.953856301851637, 0.0 ] ], [ [ -118.056389765181194, 33.953234871045552, 0.0 ], [ -118.056266760202703, 33.953357926650732, 0.0 ] ], [ [ -118.056594773478807, 33.953029778370258, 0.0 ], [ -118.056389765181194, 33.953234871045552, 0.0 ] ], [ [ -118.056631674972394, 33.952992861688713, 0.0 ], [ -118.056594773478807, 33.953029778370258, 0.0 ] ], [ [ -118.057269048471099, 33.952358934603843, 0.0 ], [ -118.057006767770901, 33.952617614508782, 0.0 ], [ -118.056631674972394, 33.952992861688713, 0.0 ] ], [ [ -118.057399120056999, 33.952230648742507, 0.0 ], [ -118.057269048471099, 33.952358934603843, 0.0 ] ], [ [ -118.057564290324905, 33.952067746061573, 0.0 ], [ -118.057399120056999, 33.952230648742507, 0.0 ] ], [ [ -118.057719137451201, 33.951915024798133, 0.0 ], [ -118.057564290324905, 33.952067746061573, 0.0 ] ], [ [ -118.057733589849704, 33.951900770813538, 0.0 ], [ -118.057719137451201, 33.951915024798133, 0.0 ] ], [ [ -118.057812045726905, 33.951823392040033, 0.0 ], [ -118.057733589849704, 33.951900770813538, 0.0 ] ], [ [ -118.058111416837605, 33.951528130930669, 0.0 ], [ -118.057812045726905, 33.951823392040033, 0.0 ] ], [ [ -118.058214648255003, 33.951426316755018, 0.0 ], [ -118.058111416837605, 33.951528130930669, 0.0 ] ], [ [ -118.058400464806496, 33.951243051238933, 0.0 ], [ -118.058214648255003, 33.951426316755018, 0.0 ] ], [ [ -118.058741128484201, 33.950907064459372, 0.0 ], [ -118.058400464806496, 33.951243051238933, 0.0 ] ], [ [ -118.059123084728895, 33.950530352009501, 0.0 ], [ -118.058741128484201, 33.950907064459372, 0.0 ] ], [ [ -118.059267608713299, 33.950387812163612, 0.0 ], [ -118.059123084728895, 33.950530352009501, 0.0 ] ], [ [ -118.059948936005696, 33.949715838666613, 0.0 ], [ -118.059267608713299, 33.950387812163612, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 151", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.158134291424304, 33.985477317323287, 0.0 ], [ -118.1592742300423, 33.985585759547533, 0.0 ], [ -118.161701675491997, 33.985842247166509, 0.0 ], [ -118.161699707654805, 33.98585932874942, 0.0 ], [ -118.161929902404495, 33.985883865224949, 0.0 ] ], [ [ -118.153966189810404, 33.985054044494497, 0.0 ], [ -118.154623202845897, 33.985119105143887, 0.0 ], [ -118.158107184180395, 33.985474738614478, 0.0 ], [ -118.158134291424304, 33.985477317323287, 0.0 ] ], [ [ -118.150971121832001, 33.984810213773883, 0.0 ], [ -118.151159362850805, 33.984831361801298, 0.0 ], [ -118.151185149982098, 33.984812638067652, 0.0 ], [ -118.153191148999696, 33.985023966866628, 0.0 ], [ -118.153196470556693, 33.984974973853987, 0.0 ], [ -118.153726142554902, 33.985029876428349, 0.0 ], [ -118.153966189810404, 33.985054044494497, 0.0 ] ], [ [ -118.150890194573805, 33.984801121962342, 0.0 ], [ -118.150971121832001, 33.984810213773883, 0.0 ] ], [ [ -118.145802540170294, 33.983754269215851, 0.0 ], [ -118.145919635650301, 33.983779675301847, 0.0 ], [ -118.146401326522195, 33.98388945402224, 0.0 ], [ -118.146892535566707, 33.984009011161042, 0.0 ], [ -118.147531995463495, 33.984161361115078, 0.0 ], [ -118.148038234548395, 33.984278868702901, 0.0 ], [ -118.148871718601896, 33.984478358328843, 0.0 ], [ -118.149147041613006, 33.984543260775617, 0.0 ], [ -118.149292559730497, 33.984573320856278, 0.0 ], [ -118.149485900703596, 33.984609529589697, 0.0 ], [ -118.149612289678799, 33.984632757833907, 0.0 ], [ -118.149774887387593, 33.984658035628961, 0.0 ], [ -118.149905375464897, 33.984673748852842, 0.0 ], [ -118.150221689494998, 33.984709957586382, 0.0 ], [ -118.150868386364095, 33.984779682523921, 0.0 ], [ -118.150890194573805, 33.984801121962342, 0.0 ] ], [ [ -118.145785241318606, 33.983750519711187, 0.0 ], [ -118.145787344295002, 33.983750975528693, 0.0 ], [ -118.145802540170294, 33.983754269215851, 0.0 ] ], [ [ -118.144112256989004, 33.983364107393761, 0.0 ], [ -118.144116950142504, 33.983364700835303, 0.0 ], [ -118.144138680506998, 33.983367805173117, 0.0 ], [ -118.1441441727968, 33.983370670715729, 0.0 ], [ -118.144166977871194, 33.983366163031697, 0.0 ], [ -118.145145422245903, 33.983596324159819, 0.0 ], [ -118.145513219747599, 33.983684930653638, 0.0 ], [ -118.145785241318606, 33.983750519711187, 0.0 ] ], [ [ -118.1417084253263, 33.982488071541262, 0.0 ], [ -118.142551105011094, 33.982858520945818, 0.0 ], [ -118.142733839353397, 33.982939054419937, 0.0 ], [ -118.143010616739403, 33.983040039638652, 0.0 ], [ -118.143256716818797, 33.98312427991381, 0.0 ], [ -118.143461211137407, 33.983192583561546, 0.0 ], [ -118.143741942646102, 33.983267311729001, 0.0 ], [ -118.144061368467504, 33.983341320352793, 0.0 ], [ -118.144107796542897, 33.983352298789789, 0.0 ], [ -118.144112256989004, 33.983364107393761, 0.0 ] ], [ [ -118.141451108011694, 33.98233851575511, 0.0 ], [ -118.141722129609093, 33.982457793196467, 0.0 ], [ -118.1417084253263, 33.982488071541262, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.051957428316001, 33.957481893767998, 0.0 ], [ -118.051011861761793, 33.958430681318568, 0.0 ], [ -118.051030357671195, 33.958449192063753, 0.0 ] ], [ [ -118.052566331509297, 33.956870916395147, 0.0 ], [ -118.051957428316001, 33.957481893767998, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.863762480025997, 34.099884304446867, 0.0 ], [ -117.863767090818101, 34.10180069541375, 0.0 ], [ -117.863761807424893, 34.103125974924453, 0.0 ] ], [ [ -117.863761813381799, 34.099607226109093, 0.0 ], [ -117.863762480025997, 34.099884304446867, 0.0 ] ], [ [ -117.881290146806904, 34.091597836186153, 0.0 ], [ -117.881290401446705, 34.091779206490529, 0.0 ], [ -117.881251031646499, 34.091841499399678, 0.0 ], [ -117.881275659075598, 34.09379303142606, 0.0 ], [ -117.881249497758205, 34.093815358022709, 0.0 ], [ -117.881272420867006, 34.095807538089538, 0.0 ], [ -117.8806505995842, 34.095809583273919, 0.0 ], [ -117.876957507799602, 34.095804640744973, 0.0 ], [ -117.872447790915302, 34.095783762820624, 0.0 ], [ -117.872413874940307, 34.095736808794683, 0.0 ], [ -117.869049035256694, 34.095793562662607, 0.0 ], [ -117.867535257914398, 34.095816315339469, 0.0 ], [ -117.863758398784299, 34.095828842094058, 0.0 ], [ -117.863760614400704, 34.099108891839762, 0.0 ], [ -117.863761813381799, 34.099607226109093, 0.0 ] ], [ [ -117.881290138784294, 34.091592122044283, 0.0 ], [ -117.881290146806904, 34.091597836186153, 0.0 ] ], [ [ -117.881290119927598, 34.091578691130408, 0.0 ], [ -117.881290138784294, 34.091592122044283, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.829217619809299, 34.103101262279267, 0.0 ], [ -117.829171262295503, 34.103140035567378, 0.0 ], [ -117.829080336786305, 34.103139865055411, 0.0 ] ], [ [ -117.829080336786305, 34.103139865055411, 0.0 ], [ -117.829002473807904, 34.103139719039532, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 252", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.437841479206597, 33.963521691912547, 0.0 ], [ -118.4378668487022, 33.963531110939343, 0.0 ] ], [ [ -118.437838089395299, 33.963520433364721, 0.0 ], [ -118.437841479206597, 33.963521691912547, 0.0 ] ], [ [ -118.437845510877594, 33.963503610684469, 0.0 ], [ -118.437838089395299, 33.963520433364721, 0.0 ] ], [ [ -118.437847104285197, 33.963499998820261, 0.0 ], [ -118.437845510877594, 33.963503610684469, 0.0 ] ], [ [ -118.437851794972005, 33.963489366183687, 0.0 ], [ -118.437847104285197, 33.963499998820261, 0.0 ] ], [ [ -118.437856012015899, 33.963479807179382, 0.0 ], [ -118.437851794972005, 33.963489366183687, 0.0 ] ], [ [ -118.437849851596397, 33.963477306306878, 0.0 ], [ -118.437856012015899, 33.963479807179382, 0.0 ] ], [ [ -118.437841173849904, 33.963473783505023, 0.0 ], [ -118.437849851596397, 33.963477306306878, 0.0 ] ], [ [ -118.437845436717197, 33.963462792290933, 0.0 ], [ -118.437841173849904, 33.963473783505023, 0.0 ] ], [ [ -118.4378666242349, 33.963408163205749, 0.0 ], [ -118.437845436717197, 33.963462792290933, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 260", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.361685116091394, 33.941869560391062, 0.0 ], [ -118.361612259447796, 33.941869968242607, 0.0 ] ], [ [ -118.361816665385604, 33.941868874286733, 0.0 ], [ -118.361806824149895, 33.941868466008522, 0.0 ], [ -118.361685116091394, 33.941869560391062, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 188", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.358613353878397, 34.194212694749368, 0.0 ], [ -118.359991637752202, 34.194490669399862, 0.0 ], [ -118.360008425307697, 34.194482062582132, 0.0 ], [ -118.361127908135103, 34.19469817040352, 0.0 ] ], [ [ -118.353440380152506, 34.193199910737349, 0.0 ], [ -118.358613353878397, 34.194212694749368, 0.0 ] ], [ [ -118.349117465757203, 34.192445876472519, 0.0 ], [ -118.349117818217707, 34.192444888457729, 0.0 ], [ -118.349652548730205, 34.192377056507432, 0.0 ], [ -118.350442501216307, 34.192529252315467, 0.0 ], [ -118.3504572435874, 34.192505306614407, 0.0 ], [ -118.352653004721105, 34.192934284048697, 0.0 ], [ -118.352624116491, 34.193019585282578, 0.0 ], [ -118.352974439540702, 34.193084690320219, 0.0 ], [ -118.353386203339198, 34.193170758498283, 0.0 ], [ -118.353390719788194, 34.193190187750368, 0.0 ], [ -118.353440380152506, 34.193199910737349, 0.0 ] ], [ [ -118.349069245087605, 34.19253470614062, 0.0 ], [ -118.349085776995096, 34.19253470614062, 0.0 ], [ -118.349117465757203, 34.192445876472519, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 168", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.233835902193604, 33.847996511427489, 0.0 ], [ -118.233829156744306, 33.847996963476128, 0.0 ], [ -118.233836965535303, 33.848059811400027, 0.0 ] ], [ [ -118.233825650014893, 33.847889688542907, 0.0 ], [ -118.233835498218596, 33.84788903052695, 0.0 ], [ -118.233843569687807, 33.847979458023318, 0.0 ], [ -118.233845037229599, 33.847995899386227, 0.0 ], [ -118.233835902193604, 33.847996511427489, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 253", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378194028262996, 33.941904400614732, 0.0 ], [ -118.378050495786496, 33.941903949200473, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 198", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.494537008630004, 34.31657101865359, 0.0 ], [ -118.494556809383894, 34.316538843858247, 0.0 ], [ -118.494567003036593, 34.316531208612567, 0.0 ], [ -118.494906324095894, 34.316035477291408, 0.0 ], [ -118.494181060474105, 34.314511905608001, 0.0 ], [ -118.494192391601004, 34.314443322471632, 0.0 ] ], [ [ -118.494192391601004, 34.314443322471632, 0.0 ], [ -118.494194813025302, 34.314428666482407, 0.0 ], [ -118.494656582799493, 34.312506725457681, 0.0 ], [ -118.494748659600404, 34.312218218148438, 0.0 ], [ -118.495265568529504, 34.31002602298188, 0.0 ], [ -118.495801857609194, 34.308714965277758, 0.0 ], [ -118.496183162956001, 34.307882816194883, 0.0 ], [ -118.496197862440695, 34.307850375952754, 0.0 ], [ -118.497535934818501, 34.305120955733948, 0.0 ], [ -118.498106013429194, 34.303923968650103, 0.0 ], [ -118.498257810622405, 34.303858078659552, 0.0 ], [ -118.499542401039093, 34.304128884763607, 0.0 ], [ -118.500496457584404, 34.304488647012008, 0.0 ], [ -118.500584799166901, 34.304524256542813, 0.0 ], [ -118.500593452024603, 34.304506593655738, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 193", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1123905832209, 34.704201618250707, 0.0 ], [ -118.1124999130258, 34.704200525737669, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 195", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.957937936502901, 34.557746540195993, 0.0 ], [ -117.957972120386799, 34.557746613238443, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 163", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.253928884506195, 33.945948694162418, 0.0 ], [ -118.2539289533307, 33.945965174906163, 0.0 ], [ -118.2539292253703, 33.94603391018039, 0.0 ], [ -118.254012481419693, 33.94603356931637, 0.0 ] ], [ [ -118.253935275707605, 33.9459047226972, 0.0 ], [ -118.253928714074107, 33.9459047226972, 0.0 ], [ -118.253928884506195, 33.945948694162418, 0.0 ] ], [ [ -118.253928729776206, 33.945863461565729, 0.0 ], [ -118.253928714074107, 33.945899183656103, 0.0 ], [ -118.253935275707605, 33.945899183656103, 0.0 ], [ -118.253935275707605, 33.9459047226972, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 249", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.352353922203704, 33.901870437843471, 0.0 ], [ -118.3523496085338, 33.900854782819032, 0.0 ] ], [ [ -118.3523496085338, 33.900854782819032, 0.0 ], [ -118.352349550481307, 33.900841043749629, 0.0 ], [ -118.352331910765599, 33.900841043749629, 0.0 ], [ -118.3523186170668, 33.896246110847457, 0.0 ], [ -118.352321343979398, 33.892792816937309, 0.0 ], [ -118.352302937319493, 33.891786500981667, 0.0 ], [ -118.352303874695593, 33.890685595246133, 0.0 ], [ -118.352306431176302, 33.887507975154037, 0.0 ], [ -118.3523176796906, 33.887131831650933, 0.0 ], [ -118.352321405163195, 33.882756010757113, 0.0 ] ], [ [ -118.352321405163195, 33.882756010757113, 0.0 ], [ -118.3523214291953, 33.882727782628947, 0.0 ], [ -118.352302558921707, 33.879437163302853, 0.0 ], [ -118.352143509646197, 33.879437311360853, 0.0 ], [ -118.352143555812802, 33.879448302594533, 0.0 ], [ -118.351816815963303, 33.879450548412457, 0.0 ], [ -118.351820812937405, 33.876648494526023, 0.0 ], [ -118.352242282572007, 33.876646008450876, 0.0 ], [ -118.352242305660894, 33.876651504066039, 0.0 ], [ -118.352232422602995, 33.876651532953417, 0.0 ], [ -118.352232561132894, 33.876684506645269, 0.0 ] ], [ [ -118.352097515700294, 33.876690396937363, 0.0 ], [ -118.352005273782893, 33.876690666443821, 0.0 ] ], [ [ -118.352232561132894, 33.876684506645269, 0.0 ], [ -118.352232584221298, 33.876690002260432, 0.0 ], [ -118.352097515700294, 33.876690396937363, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 167", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.206976446685502, 33.846890740923733, 0.0 ], [ -118.206962434100404, 33.846902661201447, 0.0 ] ], [ [ -118.207074019863001, 33.846797082680609, 0.0 ], [ -118.2070792952819, 33.846800880851148, 0.0 ], [ -118.206982321162897, 33.846894708549158, 0.0 ], [ -118.206976446685502, 33.846890740923733, 0.0 ] ], [ [ -118.207111951213605, 33.846574202724597, 0.0 ], [ -118.207112993798106, 33.846760998810041, 0.0 ], [ -118.207074019863001, 33.846797082680609, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 177", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.110039933930295, 34.025446120766567, 0.0 ], [ -118.109961620409905, 34.025030096167079, 0.0 ], [ -118.1097919553183, 34.024279257833172, 0.0 ], [ -118.109848453538206, 34.023638177730369, 0.0 ], [ -118.1098699279746, 34.022576727011248, 0.0 ], [ -118.109714153093904, 34.0222213762165, 0.0 ], [ -118.109183939030402, 34.021713233101643, 0.0 ], [ -118.109216406333204, 34.021606883511261, 0.0 ], [ -118.109151045323699, 34.021593019343008, 0.0 ] ], [ [ -118.109151045323699, 34.021593019343008, 0.0 ], [ -118.109139386544797, 34.021590546320184, 0.0 ] ], [ [ -118.109139386544797, 34.021590546320184, 0.0 ], [ -118.105119049759693, 34.020737765344457, 0.0 ], [ -118.105127741793495, 34.020709388410502, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 198", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.501986455252506, 34.288181964158909, 0.0 ], [ -118.501997273583896, 34.288127849943521, 0.0 ], [ -118.502030337430796, 34.287850744411401, 0.0 ], [ -118.502060790424395, 34.287802245199472, 0.0 ], [ -118.502111066298795, 34.284125355914433, 0.0 ] ], [ [ -118.502111066298795, 34.284125355914433, 0.0 ], [ -118.502111629637099, 34.284084156582317, 0.0 ], [ -118.501370674163795, 34.284080104553887, 0.0 ] ], [ [ -118.501370674163795, 34.284080104553887, 0.0 ], [ -118.500954259794995, 34.284077825338159, 0.0 ], [ -118.500954259794995, 34.283836810186479, 0.0 ], [ -118.500987797430099, 34.283537092303163, 0.0 ], [ -118.501039457100106, 34.281128840038718, 0.0 ], [ -118.501048486243306, 34.280166600743883, 0.0 ], [ -118.499723944392997, 34.280153524106858, 0.0 ], [ -118.498017207457394, 34.280153524106858, 0.0 ], [ -118.497993426556903, 34.28011693810619, 0.0 ], [ -118.497856229053994, 34.279804127799608, 0.0 ], [ -118.497819643053305, 34.279690711197183, 0.0 ], [ -118.497805008652904, 34.279586441095027, 0.0 ], [ -118.497806513640697, 34.27933009209125, 0.0 ], [ -118.495983025814894, 34.279313875389313, 0.0 ], [ -118.495822047411494, 34.279187653686698, 0.0 ], [ -118.491472259154094, 34.279164220222647, 0.0 ], [ -118.491416454623007, 34.279204891321697, 0.0 ], [ -118.487064703538607, 34.279172655463313, 0.0 ] ], [ [ -118.487064703538607, 34.279172655463313, 0.0 ], [ -118.487024937912807, 34.279172360897107, 0.0 ] ], [ [ -118.487024937912807, 34.279172360897107, 0.0 ], [ -118.484625467049398, 34.27915458667205, 0.0 ], [ -118.484718851226106, 34.272004989698878, 0.0 ], [ -118.484743141800706, 34.271821595860523, 0.0 ], [ -118.4847540498982, 34.271086574700497, 0.0 ], [ -118.484792529155996, 34.271041099214173, 0.0 ], [ -118.484796175714095, 34.270447838721559, 0.0 ], [ -118.484815995844897, 34.268299912898392, 0.0 ], [ -118.484853664901195, 34.264412352019903, 0.0 ] ], [ [ -118.484853664901195, 34.264412352019903, 0.0 ], [ -118.484853794385899, 34.264398988794213, 0.0 ] ], [ [ -118.484853794385899, 34.264398988794213, 0.0 ], [ -118.484853798186705, 34.264398596544062, 0.0 ], [ -118.484911631684994, 34.258153811239843, 0.0 ], [ -118.484827291873302, 34.258083888490013, 0.0 ], [ -118.484835581683797, 34.257133203404713, 0.0 ], [ -118.484916317230102, 34.25700537212311, 0.0 ], [ -118.484941090561705, 34.253836924980646, 0.0 ] ], [ [ -118.484941090561705, 34.253836924980646, 0.0 ], [ -118.484941362063594, 34.253802200572977, 0.0 ], [ -118.484988308331296, 34.250170845324128, 0.0 ], [ -118.484990203230595, 34.249947171165289, 0.0 ] ], [ [ -118.484990203230595, 34.249947171165289, 0.0 ], [ -118.484990345608097, 34.249930364911258, 0.0 ] ], [ [ -118.484990345608097, 34.249930364911258, 0.0 ], [ -118.485023489945704, 34.246018003150503, 0.0 ], [ -118.485049489542604, 34.243223127012861, 0.0 ], [ -118.485093882428004, 34.243178734127532, 0.0 ], [ -118.485116659504399, 34.240869094736588, 0.0 ], [ -118.485144553195994, 34.2381185653188, 0.0 ], [ -118.4851867803402, 34.235162809368518, 0.0 ], [ -118.485129064090799, 34.234800518212367, 0.0 ], [ -118.485177501013595, 34.228584079116317, 0.0 ], [ -118.485260052846101, 34.228450423768457, 0.0 ], [ -118.485260708019396, 34.228414389238417, 0.0 ], [ -118.485244983860795, 34.228303664955078, 0.0 ], [ -118.485246949380596, 34.228136595770309, 0.0 ], [ -118.485246988965798, 34.228132987160301, 0.0 ] ], [ [ -118.485246988965798, 34.228132987160301, 0.0 ], [ -118.485247106173006, 34.228122302462609, 0.0 ] ], [ [ -118.485247106173006, 34.228122302462609, 0.0 ], [ -118.485247172506106, 34.228116255481652, 0.0 ] ], [ [ -118.485247172506106, 34.228116255481652, 0.0 ], [ -118.485257213761898, 34.227200887006759, 0.0 ], [ -118.485276213786804, 34.227032507475357, 0.0 ], [ -118.485273593093694, 34.226600748287957, 0.0 ], [ -118.485258706101007, 34.226414278694513, 0.0 ], [ -118.485282286004704, 34.224743336505767, 0.0 ] ], [ [ -118.485282286004704, 34.224743336505767, 0.0 ], [ -118.485295541398401, 34.22380401984001, 0.0 ], [ -118.485107529542503, 34.223806572037098, 0.0 ] ], [ [ -118.485107529542503, 34.223806572037098, 0.0 ], [ -118.4851024836737, 34.223806640533112, 0.0 ], [ -118.485040460603798, 34.223705307066773, 0.0 ], [ -118.484944291504505, 34.223568850912393, 0.0 ] ], [ [ -118.484944291504505, 34.223568850912393, 0.0 ], [ -118.484799935836904, 34.223364021924667, 0.0 ] ], [ [ -118.484799935836904, 34.223364021924667, 0.0 ], [ -118.484791339239095, 34.223351824049232, 0.0 ] ], [ [ -118.484791339239095, 34.223351824049232, 0.0 ], [ -118.484781885551797, 34.223338410033378, 0.0 ], [ -118.484774028802505, 34.223328581661058, 0.0 ] ], [ [ -118.484774028802505, 34.223328581661058, 0.0 ], [ -118.484764780457198, 34.223317012476613, 0.0 ] ], [ [ -118.484764780457198, 34.223317012476613, 0.0 ], [ -118.484746992631102, 34.223294696080842, 0.0 ] ], [ [ -118.484746992631102, 34.223294696080842, 0.0 ], [ -118.484118984315998, 34.222506804289388, 0.0 ], [ -118.484075873372205, 34.22244276898477, 0.0 ], [ -118.483965957815698, 34.222257073542274, 0.0 ], [ -118.4839096355621, 34.222123175354533, 0.0 ], [ -118.483862877464801, 34.221989277166792, 0.0 ], [ -118.483833122312006, 34.221862817767239, 0.0 ], [ -118.483806555211203, 34.221668346589759, 0.0 ], [ -118.483798053738894, 34.221535511086003, 0.0 ], [ -118.483787426898601, 34.221028610803657, 0.0 ], [ -118.483799483853801, 34.221013844889121, 0.0 ], [ -118.483800192006399, 34.218989977655923, 0.0 ], [ -118.483800993462097, 34.216699454388063, 0.0 ] ], [ [ -118.483800993462097, 34.216699454388063, 0.0 ], [ -118.483793832493504, 34.214399835119288, 0.0 ], [ -118.483778435758794, 34.214311303894348, 0.0 ], [ -118.483776511166894, 34.213272024298121, 0.0 ], [ -118.483613883156096, 34.213271062002079, 0.0 ], [ -118.483613042379005, 34.21317296091047, 0.0 ], [ -118.483594204664797, 34.213149051503933, 0.0 ], [ -118.483581325477303, 34.210475859651702, 0.0 ], [ -118.483584354255001, 34.207779483613088, 0.0 ], [ -118.483579620108699, 34.207491884227977, 0.0 ], [ -118.483592639010993, 34.207321454962681, 0.0 ], [ -118.483587378848398, 34.204383873375313, 0.0 ], [ -118.483576578584902, 34.203458608875522, 0.0 ], [ -118.483572801952405, 34.202695729112158, 0.0 ], [ -118.483575860422505, 34.202006184332852, 0.0 ] ], [ [ -118.483575860422505, 34.202006184332852, 0.0 ], [ -118.483576126992901, 34.201946084921403, 0.0 ] ], [ [ -118.483576126992901, 34.201946084921403, 0.0 ], [ -118.483577786842901, 34.201571864840801, 0.0 ], [ -118.483731243487398, 34.20156987956026, 0.0 ], [ -118.483742927444197, 34.201009049635118, 0.0 ], [ -118.4837450517999, 34.200079643982761, 0.0 ], [ -118.483670699347698, 34.200080706160627, 0.0 ], [ -118.483656943389704, 34.19408283514985, 0.0 ], [ -118.483652672812198, 34.192879386420223, 0.0 ], [ -118.483612586325094, 34.192569627201422, 0.0 ], [ -118.483624225784197, 34.187030620989653, 0.0 ], [ -118.483630225598304, 34.186892796140633, 0.0 ] ], [ [ -118.483630225598304, 34.186892796140633, 0.0 ], [ -118.483637104632393, 34.186734774276317, 0.0 ], [ -118.483561469750995, 34.186662164790178, 0.0 ], [ -118.474248028109997, 34.186674245408597, 0.0 ], [ -118.474248028109997, 34.186553013729352, 0.0 ], [ -118.473528335283802, 34.186554938041702, 0.0 ], [ -118.4730671579768, 34.185040809524807, 0.0 ], [ -118.472926977627395, 34.184905230840329, 0.0 ], [ -118.472816196804004, 34.184787888383617, 0.0 ], [ -118.472636817086297, 34.184572803154431, 0.0 ], [ -118.472422584017295, 34.184286562550263, 0.0 ], [ -118.472326684824694, 34.184149798290861, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 191", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3905516862025, 34.435354063059279, 0.0 ], [ -118.390590847104804, 34.435352937743559, 0.0 ] ], [ [ -118.390590847104804, 34.435352937743559, 0.0 ], [ -118.390721714533697, 34.435349177177343, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 201", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.597302141827896, 34.172001906623073, 0.0 ], [ -118.597290808097597, 34.172001906623073, 0.0 ], [ -118.597291575041893, 34.17210970488582, 0.0 ] ], [ [ -118.597324127560498, 34.17200173619112, 0.0 ], [ -118.597302141827896, 34.172001906623073, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 169", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.187795033832103, 33.920457515426421, 0.0 ], [ -118.187796226856307, 33.920457856290433, 0.0 ], [ -118.187813781355999, 33.920462884035537, 0.0 ], [ -118.187826222894699, 33.920466548324328, 0.0 ], [ -118.187944928807596, 33.920199651756157, 0.0 ], [ -118.188095164647194, 33.920242430197149, 0.0 ] ], [ [ -118.188223050481895, 33.920278844480222, 0.0 ], [ -118.188351661262104, 33.920315465001757, 0.0 ] ], [ [ -118.188095164647194, 33.920242430197149, 0.0 ], [ -118.188223050481895, 33.920278844480222, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 160", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.065356604703098, 33.951472366909307, 0.0 ], [ -118.064883966035296, 33.951742531220752, 0.0 ], [ -118.064122969098307, 33.952504358130383, 0.0 ], [ -118.060207377523, 33.949800767118802, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 254", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.325616185113105, 33.916582792674689, 0.0 ], [ -118.3253306221618, 33.91658028165913, 0.0 ], [ -118.325322444162794, 33.916584923658199, 0.0 ], [ -118.325295942167301, 33.916585267656707, 0.0 ], [ -118.3252858791694, 33.916580244656728, 0.0 ], [ -118.323110604485706, 33.916576482180439, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 175", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.881173237280805, 34.071440502290152, 0.0 ], [ -117.881172888557998, 34.071451521928232, 0.0 ], [ -117.881126360612299, 34.071450925416073, 0.0 ], [ -117.881123037187507, 34.072300358682718, 0.0 ], [ -117.881169309485301, 34.072301040410828, 0.0 ], [ -117.881169101012503, 34.072312228452603, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 254", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.326591843226296, 33.916579628290293, 0.0 ], [ -118.325940957058194, 33.91658251569261, 0.0 ], [ -118.325938491057997, 33.916590189691647, 0.0 ], [ -118.325634149109504, 33.916590477674802, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 352", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.872414736032695, 34.800885353295882, 0.0 ], [ -118.872021303331906, 34.800734285956523, 0.0 ], [ -118.870177969092396, 34.800026471988687, 0.0 ], [ -118.868607991901499, 34.799545904291087, 0.0 ], [ -118.867177435855197, 34.799151065246988, 0.0 ], [ -118.864053757502305, 34.798423320453999, 0.0 ], [ -118.858536817818106, 34.797122181016327, 0.0 ], [ -118.858497502702093, 34.79710715905729, 0.0 ], [ -118.858376336621305, 34.797085498933797, 0.0 ], [ -118.858375631155596, 34.797088184328473, 0.0 ], [ -118.858343077376503, 34.79708236486487, 0.0 ], [ -118.858343787457201, 34.797079661907219, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 592", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.990651061025602, 34.132706468013637, 0.0 ], [ -117.990642663416494, 34.132706329496358, 0.0 ], [ -117.990642663416494, 34.132775013606832, 0.0 ], [ -117.990651014586206, 34.132775013606832, 0.0 ] ], [ [ -117.990651014586206, 34.132775013606832, 0.0 ], [ -117.990720380424904, 34.132775013606832, 0.0 ], [ -117.990720380424904, 34.132769474565613, 0.0 ] ], [ [ -117.990717142216099, 34.1322980595545, 0.0 ], [ -117.990725322953793, 34.132707692952621, 0.0 ], [ -117.990651061025602, 34.132706468013637, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 577", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.706837032307604, 34.093275807003373, 0.0 ], [ -117.7068284751482, 34.093271650757018, 0.0 ], [ -117.706920712646706, 34.093083344224411, 0.0 ] ], [ [ -117.706899188096301, 34.093170583918479, 0.0 ], [ -117.706890220655893, 34.093166247542861, 0.0 ], [ -117.706837032307604, 34.093275807003373, 0.0 ] ], [ [ -117.707018721380607, 34.093228386449397, 0.0 ], [ -117.706899188096301, 34.093170583918479, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 576", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.736936597531894, 34.091026360514917, 0.0 ], [ -117.736841074452599, 34.09102590429179, 0.0 ], [ -117.736840590678597, 34.091078112176163, 0.0 ] ], [ [ -117.736937336581505, 34.090919195554982, 0.0 ], [ -117.736943942099998, 34.090919227088719, 0.0 ], [ -117.7369432030588, 34.091026392061167, 0.0 ], [ -117.736936597531894, 34.091026360514917, 0.0 ] ], [ [ -117.736942880243703, 34.090732526990578, 0.0 ], [ -117.736843799000496, 34.090731891471727, 0.0 ], [ -117.736842067460699, 34.090918740739873, 0.0 ], [ -117.736937336581505, 34.090919195554982, 0.0 ] ], [ [ -117.719079358562396, 34.090376273522047, 0.0 ], [ -117.719077961834003, 34.090535308276927, 0.0 ], [ -117.719415332048996, 34.090537012597338, 0.0 ], [ -117.721440490714798, 34.090546642007453, 0.0 ], [ -117.724760080692803, 34.090547238519491, 0.0 ], [ -117.727195810132997, 34.090492018539898, 0.0 ], [ -117.727782607632307, 34.090481281321587, 0.0 ], [ -117.728225816141503, 34.090473271015917, 0.0 ], [ -117.728413547029106, 34.090194955501453, 0.0 ], [ -117.728800768614406, 34.090186604331699, 0.0 ], [ -117.729570780552393, 34.090170242856203, 0.0 ], [ -117.730746250303497, 34.090142206786297, 0.0 ], [ -117.731061038273694, 34.090130787839989, 0.0 ], [ -117.731426274126505, 34.090125589662783, 0.0 ], [ -117.732518743476206, 34.090118261085323, 0.0 ], [ -117.7324917299985, 34.090402371289038, 0.0 ], [ -117.733355564772197, 34.090372801330837, 0.0 ], [ -117.736001096048497, 34.090316984839127, 0.0 ], [ -117.736211153470606, 34.090303675648663, 0.0 ], [ -117.736466074907995, 34.090287523884371, 0.0 ], [ -117.736945444580599, 34.09025715113102, 0.0 ], [ -117.736943591277694, 34.090600715762243, 0.0 ], [ -117.736942880243703, 34.090732526990578, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 570", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.718012871304694, 34.091946076829068, 0.0 ], [ -117.718014636362497, 34.092213467317833, 0.0 ], [ -117.717452892372293, 34.092210825621279, 0.0 ], [ -117.717454085396596, 34.092149214440333, 0.0 ], [ -117.715444691694003, 34.092178869614642, 0.0 ], [ -117.715052016283494, 34.092215768150311, 0.0 ], [ -117.714622186689098, 34.092265619520823, 0.0 ], [ -117.714343359878498, 34.092287860901479, 0.0 ], [ -117.713705177120303, 34.092303285000717, 0.0 ], [ -117.711682745367, 34.09233617838369, 0.0 ], [ -117.710377832484696, 34.092337030543867, 0.0 ], [ -117.709897810655704, 34.092344103473323, 0.0 ], [ -117.709380208562905, 34.092368901334517, 0.0 ], [ -117.709115186747098, 34.092387648858498, 0.0 ], [ -117.708614286993793, 34.092472268364261, 0.0 ], [ -117.708159829970199, 34.092563534719453, 0.0 ], [ -117.707751900892504, 34.092618328619032, 0.0 ], [ -117.707331530275994, 34.092648154225252, 0.0 ], [ -117.707056623402195, 34.092649091601473, 0.0 ], [ -117.707056452970207, 34.092699624700103, 0.0 ], [ -117.707017764898097, 34.092699539483981, 0.0 ] ], [ [ -117.718012694369094, 34.091919272672897, 0.0 ], [ -117.718012871304694, 34.091946076829068, 0.0 ] ], [ [ -117.719079358562396, 34.090376273522047, 0.0 ], [ -117.718008245161002, 34.090382771604922, 0.0 ], [ -117.718005092168397, 34.090767607141878, 0.0 ], [ -117.718012694369094, 34.091919272672897, 0.0 ] ], [ [ -117.731142208001799, 34.066629036827017, 0.0 ], [ -117.731148214260003, 34.06662880661009, 0.0 ], [ -117.731413321291896, 34.066621563248553, 0.0 ], [ -117.731413236075795, 34.06704500164161, 0.0 ], [ -117.731442209521902, 34.070893527442891, 0.0 ], [ -117.731461894421997, 34.075661022781397, 0.0 ], [ -117.731462661366194, 34.075884288748362, 0.0 ], [ -117.7310395638373, 34.075883351372099, 0.0 ], [ -117.727972128056194, 34.075871932425713, 0.0 ], [ -117.727971787192104, 34.076511137776123, 0.0 ], [ -117.727979627065807, 34.082763948306912, 0.0 ], [ -117.727978689689607, 34.083110351419748, 0.0 ], [ -117.727968378551395, 34.083110351419748, 0.0 ], [ -117.727968634199499, 34.083141796130342, 0.0 ], [ -117.721422084054893, 34.083057602704592, 0.0 ], [ -117.721408193843999, 34.085089408219901, 0.0 ], [ -117.721399075730005, 34.086844346892853, 0.0 ], [ -117.720370433177806, 34.086853465006833, 0.0 ], [ -117.719197264259094, 34.086859344912043, 0.0 ], [ -117.719202206788196, 34.090375528243371, 0.0 ], [ -117.719079358562396, 34.090376273522047, 0.0 ] ], [ [ -117.730619769274497, 34.059239705578293, 0.0 ], [ -117.730630271303198, 34.059696653984489, 0.0 ], [ -117.730602150017305, 34.059860780034953, 0.0 ], [ -117.730696654581095, 34.062724293885083, 0.0 ], [ -117.730652853547895, 34.062791273675231, 0.0 ], [ -117.730659926477401, 34.063222892805904, 0.0 ], [ -117.730739177374105, 34.06536897300122, 0.0 ], [ -117.73077692807, 34.06664303768509, 0.0 ], [ -117.731142208001799, 34.066629036827017, 0.0 ] ], [ [ -117.728825072748293, 34.057450237188021, 0.0 ], [ -117.729265375451106, 34.057904839847097, 0.0 ], [ -117.729301697434096, 34.05925795576038, 0.0 ], [ -117.730619769274497, 34.059239705578293, 0.0 ] ], [ [ -117.730998516602099, 34.0591250231953, 0.0 ], [ -117.730937233345301, 34.05912530816471, 0.0 ], [ -117.730679445055699, 34.05912615209995, 0.0 ], [ -117.730680463537695, 34.059165502544772, 0.0 ], [ -117.730618085412601, 34.059166439920993, 0.0 ], [ -117.730619769274497, 34.059239705578293, 0.0 ] ], [ [ -117.730619769274497, 34.059239705578293, 0.0 ], [ -117.731230224608296, 34.059231253139977, 0.0 ], [ -117.731230568898596, 34.059124086926559, 0.0 ] ], [ [ -117.731133783275595, 34.059124394200317, 0.0 ], [ -117.730998516602099, 34.0591250231953, 0.0 ] ], [ [ -117.731209802170696, 34.059124040709648, 0.0 ], [ -117.731133783275595, 34.059124394200317, 0.0 ] ], [ [ -117.731230568898596, 34.059124086926559, 0.0 ], [ -117.731209802170696, 34.059124040709648, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 568", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.731852865512195, 34.033658388413357, 0.0 ], [ -117.731866244426996, 34.033658388413357, 0.0 ] ], [ [ -117.731866244426996, 34.033658388413357, 0.0 ], [ -117.731867522667301, 34.03345012046556, 0.0 ], [ -117.731897624378107, 34.033450120470192, 0.0 ] ], [ [ -117.731897624378107, 34.033450120470192, 0.0 ], [ -117.731904225469194, 34.033450120472068, 0.0 ], [ -117.731903997812395, 34.033487216069787, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 567", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.732001311815495, 34.037290721177172, 0.0 ], [ -117.735138709947194, 34.037215731081361, 0.0 ], [ -117.738018414840695, 34.037146620890788, 0.0 ], [ -117.740240592939998, 34.037090889615108, 0.0 ], [ -117.740790662335598, 34.037072909035331, 0.0 ], [ -117.740803870818397, 34.037061916168987, 0.0 ], [ -117.743102402469702, 34.037010616126182, 0.0 ], [ -117.744993175475201, 34.036962128212053, 0.0 ], [ -117.745006298741998, 34.036970053301722, 0.0 ], [ -117.748025417040907, 34.036895915366088, 0.0 ], [ -117.748976257368795, 34.036883985123623, 0.0 ], [ -117.748989465851594, 34.036894977989867, 0.0 ], [ -117.749534422286203, 34.036883047747402, 0.0 ], [ -117.749547289904896, 34.036865919327838, 0.0 ], [ -117.750114743368201, 34.036838479770012, 0.0 ], [ -117.751683044387704, 34.036801074175187, 0.0 ] ], [ [ -117.751683044387704, 34.036801074175187, 0.0 ], [ -117.752165445206302, 34.036789568418797, 0.0 ] ], [ [ -117.752165445206302, 34.036789568418797, 0.0 ], [ -117.753341021806506, 34.036761529705892, 0.0 ], [ -117.753351673808893, 34.036769454795547, 0.0 ], [ -117.753557555708099, 34.036764597482517, 0.0 ], [ -117.753567952062298, 34.036756075880703, 0.0 ], [ -117.757548562691198, 34.036659611348419, 0.0 ], [ -117.757550693091702, 34.036764000970358, 0.0 ], [ -117.758771412548398, 34.036728806754979, 0.0 ], [ -117.758771838628604, 34.036651941906811, 0.0 ], [ -117.761451882391995, 34.036594421094698, 0.0 ], [ -117.761455456893998, 34.036709792782261, 0.0 ] ], [ [ -117.761455456893998, 34.036709792782261, 0.0 ], [ -117.761455712219302, 34.036718033609283, 0.0 ], [ -117.761590994870204, 34.036715128555493, 0.0 ], [ -117.761590739534697, 34.03670688772155, 0.0 ] ], [ [ -117.761590739534697, 34.03670688772155, 0.0 ], [ -117.761587164843206, 34.036591516045341, 0.0 ], [ -117.761593763986895, 34.036591374331742, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 565", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.732660621525298, 34.056450888965813, 0.0 ], [ -117.732693862393006, 34.057235018874891, 0.0 ], [ -117.732718575038305, 34.057284103301178, 0.0 ], [ -117.732719341982502, 34.057358837748893, 0.0 ], [ -117.732999361817306, 34.057354576948008, 0.0 ], [ -117.733028079615295, 34.057370853207473, 0.0 ], [ -117.733296936151802, 34.057366592406517, 0.0 ], [ -117.735948773413497, 34.057298675240233, 0.0 ], [ -117.736008935922101, 34.059118633734982, 0.0 ], [ -117.740500927874606, 34.059002995598682, 0.0 ], [ -117.7405166928379, 34.058995837453118, 0.0 ], [ -117.741125816934101, 34.058980157705818, 0.0 ], [ -117.741122578725395, 34.058928687231017, 0.0 ], [ -117.741286793729202, 34.058055026444542, 0.0 ], [ -117.741789350849004, 34.058056101976653, 0.0 ], [ -117.742456589887695, 34.058059062329008, 0.0 ], [ -117.742456159485002, 34.058171290304678, 0.0 ], [ -117.742440475045001, 34.058253595087869, 0.0 ], [ -117.742457631672593, 34.058574292049222, 0.0 ], [ -117.742448393488502, 34.058652156743548, 0.0 ], [ -117.742445489921707, 34.058846933084652, 0.0 ], [ -117.742465299153494, 34.058846971184373, 0.0 ], [ -117.742465273776801, 34.058855214741527, 0.0 ], [ -117.745721261132402, 34.05874376847207, 0.0 ], [ -117.745708308297694, 34.05849732374832, 0.0 ], [ -117.745681720900095, 34.058497408964357, 0.0 ], [ -117.745681553037102, 34.058475089405597, 0.0 ] ], [ [ -117.745681553037102, 34.058475089405597, 0.0 ], [ -117.745731060974407, 34.058474826719653, 0.0 ], [ -117.745794206043698, 34.058493403811433, 0.0 ], [ -117.748041267220202, 34.058443808089017, 0.0 ], [ -117.748049771193806, 34.058680658734588, 0.0 ], [ -117.750416237639499, 34.058610831484131, 0.0 ], [ -117.750499408473004, 34.05865974547843, 0.0 ], [ -117.754723225617198, 34.058577852885158, 0.0 ], [ -117.754761317177199, 34.05858952747969, 0.0 ], [ -117.755038865747593, 34.058582369334182, 0.0 ], [ -117.758585300765304, 34.058483433537383, 0.0 ], [ -117.758571495770397, 34.058073800139262, 0.0 ], [ -117.759220415746796, 34.058058802120073, 0.0 ], [ -117.759232431205405, 34.058470991998703, 0.0 ], [ -117.759922595734594, 34.058458635676168, 0.0 ], [ -117.761030489183398, 34.058436735159617, 0.0 ], [ -117.761031682207701, 34.058477894496242, 0.0 ], [ -117.761035180818197, 34.058478166360203, 0.0 ] ], [ [ -117.731852865512195, 34.033658388413357, 0.0 ], [ -117.731852609864205, 34.033673812512603, 0.0 ], [ -117.731888656239803, 34.033704660711081, 0.0 ], [ -117.731894791792996, 34.033955366235858, 0.0 ], [ -117.731914732341195, 34.03459244118573, 0.0 ], [ -117.731962282879195, 34.035819466627792, 0.0 ], [ -117.731997391878593, 34.037146280026732, 0.0 ], [ -117.732001226599493, 34.037289357720873, 0.0 ], [ -117.732007617800704, 34.037525150442413, 0.0 ], [ -117.732066246421098, 34.039121757754224, 0.0 ], [ -117.732100758908402, 34.039972639693083, 0.0 ], [ -117.732128113250099, 34.040841416995782, 0.0 ], [ -117.732255170332806, 34.044110899955257, 0.0 ], [ -117.732405320956403, 34.048150906148727, 0.0 ], [ -117.732398759323004, 34.048156445189868, 0.0 ], [ -117.732458751399605, 34.05053669900245, 0.0 ], [ -117.732506301937605, 34.052110127557263, 0.0 ], [ -117.732567487038494, 34.053857311572678, 0.0 ], [ -117.732629950379604, 34.05572737708588, 0.0 ], [ -117.732660621525298, 34.056450888965813, 0.0 ] ], [ [ -117.728162473764101, 34.033420275819878, 0.0 ], [ -117.728513783166306, 34.033581849179008, 0.0 ], [ -117.729032300535195, 34.033650889403752, 0.0 ], [ -117.729377681055794, 34.033689747907928, 0.0 ], [ -117.729722720712303, 34.03369963296602, 0.0 ], [ -117.731531856772705, 34.033656684093003, 0.0 ], [ -117.731852865512195, 34.033658388413357, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 553", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.109139386544797, 34.021590546320184, 0.0 ], [ -118.109137751948694, 34.021595890645003, 0.0 ] ], [ [ -118.109725998120297, 34.018402164725323, 0.0 ], [ -118.109742785675905, 34.0183459221536, 0.0 ], [ -118.110110151929106, 34.018422701785767, 0.0 ], [ -118.109716283494393, 34.019713639241147, 0.0 ], [ -118.109682111871095, 34.019735028461618, 0.0 ], [ -118.109560593829698, 34.020139037602597, 0.0 ], [ -118.109575677064797, 34.020164091111909, 0.0 ], [ -118.109139386544797, 34.021590546320184, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 552", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.119170489386306, 34.020052117264392, 0.0 ], [ -118.114478495439698, 34.019069747009851, 0.0 ], [ -118.1142150075123, 34.019941932953117, 0.0 ], [ -118.113074561544494, 34.019699749030252, 0.0 ], [ -118.112828542900701, 34.02050563691175, 0.0 ], [ -118.109686202239999, 34.019840440675779, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 551", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.109151045323699, 34.021593019343008, 0.0 ], [ -118.109120538313107, 34.021693462985489, 0.0 ], [ -118.109661915674906, 34.022229301306133, 0.0 ], [ -118.109827405181704, 34.022601184008401, 0.0 ], [ -118.109807635065593, 34.023585173367273, 0.0 ], [ -118.109741507435601, 34.024263237221859, 0.0 ], [ -118.109916967216506, 34.025039896009062, 0.0 ] ], [ [ -118.110019908166095, 34.019469410133837, 0.0 ], [ -118.109808146361601, 34.01942952903746, 0.0 ], [ -118.109151045323699, 34.021593019343008, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 550", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.096618806835707, 33.77273582071075, 0.0 ], [ -118.096600515744399, 33.772707427078657, 0.0 ], [ -118.096576527496595, 33.772670396823038, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.492275611529905, 34.319979836107343, 0.0 ], [ -118.492280039180898, 34.319973204876938, 0.0 ], [ -118.492277910549305, 34.319909345927329, 0.0 ], [ -118.493455043853501, 34.318204311973027, 0.0 ], [ -118.493529545961394, 34.318180897024853, 0.0 ], [ -118.493534532647303, 34.318173154873932, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.491770785132104, 34.322257686802317, 0.0 ], [ -118.491764584958105, 34.322233668307128, 0.0 ], [ -118.491761983452307, 34.322148762048748, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.491042689992597, 34.328097389111363, 0.0 ], [ -118.491043540335099, 34.328091840809257, 0.0 ], [ -118.490981139629298, 34.327941882337313, 0.0 ], [ -118.491358154356405, 34.326211998093022, 0.0 ], [ -118.491536342002703, 34.326126330955347, 0.0 ], [ -118.492393949764903, 34.32363483429021, 0.0 ], [ -118.4920615033937, 34.323383883453019, 0.0 ], [ -118.492060125602904, 34.323378546109218, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.491022707246799, 34.32822777222087, 0.0 ], [ -118.491040139003701, 34.328114033763661, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.504516615717094, 34.348375559776358, 0.0 ], [ -118.504494947267403, 34.348337746066079, 0.0 ], [ -118.504505950581105, 34.348005067753022, 0.0 ], [ -118.503330905412497, 34.346915317370893, 0.0 ], [ -118.503212728912104, 34.346969513214781, 0.0 ], [ -118.503193324699097, 34.347123618157553, 0.0 ], [ -118.503143103915505, 34.347124241587927, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.508470905675097, 34.366945627385682, 0.0 ], [ -118.508408308451294, 34.366908681791209, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.516657177602397, 34.372000111976938, 0.0 ], [ -118.516614070610999, 34.371973681150422, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.517664906828301, 34.372623747868403, 0.0 ], [ -118.517622153991795, 34.372596747936427, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.518102134914898, 34.372877693079303, 0.0 ], [ -118.518055610497399, 34.372850825492819, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 537", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5194718901991, 34.373543895020269, 0.0 ], [ -118.519323146543599, 34.373476373354933, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 535", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.249498733615994, 34.065686248172668, 0.0 ], [ -118.249477213471707, 34.065690938698083, 0.0 ] ], [ [ -118.249542986495896, 34.065676602825832, 0.0 ], [ -118.249533348521197, 34.065678703516497, 0.0 ], [ -118.249498733615994, 34.065686248172668, 0.0 ] ], [ [ -118.249495796906501, 34.065530689889542, 0.0 ], [ -118.249505406232103, 34.065528497386723, 0.0 ], [ -118.249553212418107, 34.065674301993468, 0.0 ], [ -118.249542986495896, 34.065676602825832, 0.0 ] ], [ [ -118.249467832466394, 34.065595062190908, 0.0 ], [ -118.249465471699807, 34.065588180168113, 0.0 ], [ -118.249486184600201, 34.065583897190777, 0.0 ], [ -118.249472067020093, 34.065536104196781, 0.0 ], [ -118.249495796906501, 34.065530689889542, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 524", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.632774752080607, 34.171959489978391, 0.0 ], [ -118.632705576195093, 34.171959396092127, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 510", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.204549391182695, 33.99098383555188, 0.0 ], [ -118.204529784772802, 33.990984089003177, 0.0 ], [ -118.204482548346604, 33.990970809819309, 0.0 ], [ -118.204248475442995, 33.990905006849466, 0.0 ], [ -118.204222084716704, 33.990905096731858, 0.0 ], [ -118.204222038818202, 33.99089273146209, 0.0 ], [ -118.204225337658499, 33.990892720227073, 0.0 ], [ -118.204225115107505, 33.99084738106653, 0.0 ], [ -118.203918321192404, 33.99084789989039, 0.0 ] ], [ [ -118.203776490304406, 33.99085638305089, 0.0 ], [ -118.203776610683903, 33.99090584426289, 0.0 ] ], [ [ -118.203918321192404, 33.99084789989039, 0.0 ], [ -118.203776470241095, 33.990848139513027, 0.0 ], [ -118.203776490304406, 33.99085638305089, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 502", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.174112835211105, 33.80651134314671, 0.0 ], [ -118.174105591849596, 33.807991119297853, 0.0 ], [ -118.174067670721598, 33.807990693217747, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 501", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.175958869807204, 33.810012102378813, 0.0 ], [ -118.175886862272094, 33.810012187594808, 0.0 ], [ -118.175884561439702, 33.809876523694371, 0.0 ], [ -118.175882260607196, 33.809875160237993, 0.0 ], [ -118.174065369889107, 33.809881381007287, 0.0 ], [ -118.174067585505597, 33.807980978591686, 0.0 ], [ -118.172408259204701, 33.80796930399724, 0.0 ], [ -118.172384313503699, 33.807992227106062, 0.0 ], [ -118.169570310159898, 33.808002282596171, 0.0 ], [ -118.165544535041406, 33.808006287749023, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 500", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.764246029154293, 34.665149489426277, 0.0 ], [ -118.764236873045704, 34.665141844091067, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 500", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.765524959574293, 34.667874117121457, 0.0 ], [ -118.765520155732702, 34.667866517884057, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 471", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.885710794270594, 34.812922977226329, 0.0 ], [ -118.885719418761994, 34.812863856418559, 0.0 ], [ -118.885718992682001, 34.812665217880742, 0.0 ], [ -118.885716777065994, 34.812450899595582, 0.0 ], [ -118.885704079879005, 34.812301515916197, 0.0 ], [ -118.885687292322999, 34.812178890066363, 0.0 ], [ -118.885681753282, 34.812038027988798, 0.0 ], [ -118.885666925695006, 34.811910289177867, 0.0 ], [ -118.885652609404005, 34.811764825435418, 0.0 ], [ -118.885611109202998, 34.811632058879347, 0.0 ], [ -118.885575233259999, 34.811498184515322, 0.0 ], [ -118.884974460332998, 34.809784575611062, 0.0 ], [ -118.884932704484996, 34.80969475792805, 0.0 ], [ -118.884793461510995, 34.809386616807267, 0.0 ], [ -118.884736160495294, 34.809233837447188, 0.0 ] ], [ [ -118.884736160495294, 34.809233837447188, 0.0 ], [ -118.884723754809002, 34.809200760672148, 0.0 ], [ -118.884645270855998, 34.808988061491519, 0.0 ], [ -118.884606923647993, 34.808862282649059, 0.0 ], [ -118.884586127262594, 34.808784177419419, 0.0 ] ], [ [ -118.884586127262594, 34.808784177419419, 0.0 ], [ -118.884558435733993, 34.808680176018797, 0.0 ], [ -118.884548124595995, 34.80794399483991, 0.0 ], [ -118.884685407600998, 34.807436789101303, 0.0 ], [ -118.884730874052906, 34.807332330455573, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 466", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.275791894863204, 34.155642527710569, 0.0 ], [ -118.275799215061298, 34.15565560775002, 0.0 ], [ -118.275880045968506, 34.15562415911041, 0.0 ], [ -118.275872479147793, 34.155610739977398, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 433", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.214237566449896, 34.06188225541608, 0.0 ], [ -118.214142979538195, 34.061958967500928, 0.0 ], [ -118.214091803765101, 34.06195905822851, 0.0 ], [ -118.214082022543195, 34.061363087528839, 0.0 ], [ -118.213737148605901, 34.061175364241677, 0.0 ], [ -118.213738761140604, 34.061161254562819, 0.0 ], [ -118.214144679429793, 34.060892342001573, 0.0 ], [ -118.214383764393901, 34.060703388802317, 0.0 ] ], [ [ -118.214247016397493, 34.061874582921533, 0.0 ], [ -118.214237566449896, 34.06188225541608, 0.0 ] ], [ [ -118.214383764393901, 34.060703388802317, 0.0 ], [ -118.214386630395296, 34.060701123749212, 0.0 ], [ -118.214168781682204, 34.060464499407487, 0.0 ], [ -118.214174536582703, 34.060461152802858, 0.0 ], [ -118.214268668038699, 34.060406418197687, 0.0 ], [ -118.214334880884707, 34.060471523235407, 0.0 ], [ -118.214406803203801, 34.060415365879557, 0.0 ], [ -118.216453180658107, 34.058779814847718, 0.0 ], [ -118.216454629330499, 34.058778621823443, 0.0 ], [ -118.216464258740402, 34.05877086716584, 0.0 ], [ -118.216482835832295, 34.058786461697068, 0.0 ], [ -118.216494510426799, 34.058777087935141, 0.0 ], [ -118.216692637668501, 34.058621739134473, 0.0 ], [ -118.216941638872797, 34.058437076023637, 0.0 ], [ -118.217911482372699, 34.057717000672213, 0.0 ], [ -118.218789718653397, 34.057037317713302, 0.0 ], [ -118.218885586673593, 34.056970423139127, 0.0 ], [ -118.2189773643249, 34.056921935225049, 0.0 ], [ -118.219053036148793, 34.056886996657731, 0.0 ], [ -118.219153079753795, 34.056844814728819, 0.0 ], [ -118.219272041314795, 34.056802888447983, 0.0 ], [ -118.220432172182797, 34.05642231371197, 0.0 ], [ -118.221621787792898, 34.056015066362363, 0.0 ], [ -118.221780460018294, 34.055959590734723, 0.0 ], [ -118.221862011747405, 34.055942462315151, 0.0 ], [ -118.221935212306903, 34.055871392156149, 0.0 ], [ -118.222019235300493, 34.055836794452851, 0.0 ], [ -118.222168278115802, 34.055765042565781, 0.0 ], [ -118.222294909118403, 34.055700107960043, 0.0 ], [ -118.222353282090694, 34.055701641848458, 0.0 ], [ -118.222869776375305, 34.055446164226723, 0.0 ], [ -118.222898238525303, 34.055431762719728, 0.0 ], [ -118.223633567543999, 34.055068742483392, 0.0 ], [ -118.225469461434002, 34.054333157816693, 0.0 ], [ -118.225580497905298, 34.054298474897386, 0.0 ], [ -118.225611431319805, 34.054288760271291, 0.0 ], [ -118.225757832438603, 34.054243084485783, 0.0 ], [ -118.226003765866395, 34.054128383725683, 0.0 ], [ -118.226114802337705, 34.054177127287829, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 429", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394179006207395, 33.991187307401731, 0.0 ], [ -118.3941607930673, 33.991148562089613, 0.0 ], [ -118.394142094053095, 33.991152961333178, 0.0 ], [ -118.394133860551605, 33.991139104593941, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 427", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2262030009162, 33.790873862994509, 0.0 ], [ -118.226207858229301, 33.790874289074679, 0.0 ], [ -118.226219120367503, 33.790767538313808, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.363187367147205, 33.987527859406057, 0.0 ], [ -118.362875262582605, 33.987526441465093, 0.0 ], [ -118.362676709260796, 33.987546041149209, 0.0 ], [ -118.3624819054439, 33.98757331027501, 0.0 ], [ -118.361165062319003, 33.987963088340912, 0.0 ], [ -118.359724741183996, 33.988409705490852, 0.0 ], [ -118.359493720559499, 33.988445411002282, 0.0 ], [ -118.357555397015901, 33.988621722943449, 0.0 ], [ -118.356702214244606, 33.988694241774709, 0.0 ], [ -118.356580099690902, 33.988728072533817, 0.0 ], [ -118.356367485726196, 33.988747927865958, 0.0 ], [ -118.356325729877298, 33.988720658740213, 0.0 ], [ -118.355397897874298, 33.988804340869827, 0.0 ], [ -118.355031639429299, 33.988815418952157, 0.0 ], [ -118.3545368752293, 33.988857004368867, 0.0 ], [ -118.352538900473107, 33.98883766033282, 0.0 ], [ -118.352464421673503, 33.98877519699176, 0.0 ], [ -118.351490149259305, 33.988781208769907, 0.0 ] ], [ [ -118.351490149259305, 33.988781208769907, 0.0 ], [ -118.350185745354395, 33.988789257634693, 0.0 ], [ -118.350185660138294, 33.988789257634693, 0.0 ], [ -118.350053575310596, 33.98870932500985, 0.0 ], [ -118.350058006543506, 33.987091924989663, 0.0 ], [ -118.344163018071896, 33.987138964231598, 0.0 ], [ -118.343996761621, 33.98712942003764, 0.0 ], [ -118.343783721576102, 33.987130016549841, 0.0 ], [ -118.343723985147605, 33.987134362566657, 0.0 ], [ -118.343666890415605, 33.987130357413861, 0.0 ], [ -118.342906593103706, 33.987138708583572, 0.0 ], [ -118.342833733408398, 33.987152172714353, 0.0 ], [ -118.342717583975997, 33.987144929352922, 0.0 ], [ -118.342539993794603, 33.987139731175787, 0.0 ], [ -118.342261593064094, 33.987162995148687, 0.0 ], [ -118.341920984640495, 33.987166148141398, 0.0 ], [ -118.341579864920803, 33.987155581355111, 0.0 ], [ -118.341018973090797, 33.987158478699719, 0.0 ], [ -118.340910322667995, 33.987162057772473, 0.0 ], [ -118.340762813740895, 33.987159927372097, 0.0 ], [ -118.339918237787401, 33.987161035180307, 0.0 ], [ -118.3399181525714, 33.987161035180307, 0.0 ], [ -118.339818535046405, 33.98716700030154, 0.0 ], [ -118.339760076858099, 33.987158563915713, 0.0 ], [ -118.339200037188306, 33.987162995148687, 0.0 ], [ -118.338890788259206, 33.98717245412665, 0.0 ], [ -118.338801396656507, 33.98716700030154, 0.0 ], [ -118.336997458773197, 33.987180634864423, 0.0 ], [ -118.336884121469296, 33.98718949733022, 0.0 ], [ -118.336750076673198, 33.987178504463927, 0.0 ], [ -118.336141889953296, 33.987185918257538, 0.0 ], [ -118.336073205842894, 33.987194695507391, 0.0 ], [ -118.335980405599301, 33.987189156466172, 0.0 ], [ -118.332066689544305, 33.987217192536072, 0.0 ], [ -118.331998005433903, 33.987220260312661, 0.0 ], [ -118.331939547245696, 33.987214721271627, 0.0 ], [ -118.331939462029695, 33.987214721271627, 0.0 ], [ -118.331895635006802, 33.987214424416457, 0.0 ], [ -118.330989450684299, 33.987208298437302, 0.0 ], [ -118.3306475019819, 33.98719818936415, 0.0 ], [ -118.330577795279297, 33.98719913176415, 0.0 ] ], [ [ -118.370138955843203, 33.987765618132727, 0.0 ], [ -118.370082492514001, 33.987762489834743, 0.0 ], [ -118.369984749741505, 33.987583450981163, 0.0 ], [ -118.368838423868496, 33.987517664215247, 0.0 ], [ -118.364836424018904, 33.987429891716808, 0.0 ], [ -118.364640171529601, 33.987558908767902, 0.0 ], [ -118.363269642313497, 33.98752874229762, 0.0 ] ], [ [ -118.363269642313497, 33.98752874229762, 0.0 ], [ -118.363269557097496, 33.98752874229762, 0.0 ], [ -118.363255070374393, 33.98752840143348, 0.0 ] ], [ [ -118.363255070374393, 33.98752840143348, 0.0 ], [ -118.363226267360304, 33.987528060569417, 0.0 ] ], [ [ -118.363226267360304, 33.987528060569417, 0.0 ], [ -118.363212888445602, 33.98752797535343, 0.0 ] ], [ [ -118.363212888445602, 33.98752797535343, 0.0 ], [ -118.363187367147205, 33.987527859406057, 0.0 ] ], [ [ -118.330259195744105, 33.987203416637087, 0.0 ], [ -118.329302963651202, 33.98721071611871, 0.0 ], [ -118.3284821253351, 33.987193820660963, 0.0 ] ], [ [ -118.3302630073091, 33.987203387541157, 0.0 ], [ -118.330259195744105, 33.987203416637087, 0.0 ] ], [ [ -118.330577795279297, 33.98719913176415, 0.0 ], [ -118.3302630073091, 33.987203387541157, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.435974926209397, 34.038093711713998, 0.0 ], [ -118.435991551104294, 34.038084029082938, 0.0 ] ], [ [ -118.435991551104294, 34.038084029082938, 0.0 ], [ -118.4360369634704, 34.038057580122398, 0.0 ], [ -118.435198180794501, 34.037093414696741, 0.0 ] ], [ [ -118.435198180794501, 34.037093414696741, 0.0 ], [ -118.434910492929504, 34.036762722730089, 0.0 ], [ -118.434752502432303, 34.036522498775597, 0.0 ], [ -118.4345191809753, 34.036253897887192, 0.0 ], [ -118.434436521437803, 34.036122239139488, 0.0 ], [ -118.434384539666993, 34.036020405998087, 0.0 ], [ -118.434340994281797, 34.035931099611282, 0.0 ], [ -118.434293188095793, 34.035822108324332, 0.0 ], [ -118.434249983574603, 34.035720530830993, 0.0 ], [ -118.434051089388802, 34.03495273450951, 0.0 ], [ -118.433892672811496, 34.034922568039107, 0.0 ], [ -118.433314822994006, 34.03418817639681, 0.0 ], [ -118.4324237190947, 34.033067159680947, 0.0 ], [ -118.432331941443294, 34.032924422851003, 0.0 ], [ -118.429785005099802, 34.029714931968172, 0.0 ], [ -118.4298315330457, 34.02969217929143, 0.0 ], [ -118.429752878661006, 34.029596566919302, 0.0 ], [ -118.429711719324402, 34.029534103578193, 0.0 ], [ -118.429665958322801, 34.02943405997307, 0.0 ], [ -118.429633405803898, 34.029346457906669, 0.0 ], [ -118.429578100608296, 34.029192131698217, 0.0 ], [ -118.429486663821095, 34.028857658827938, 0.0 ], [ -118.429475841386804, 34.028783606108341, 0.0 ], [ -118.4294451636204, 34.028665667139549, 0.0 ], [ -118.429410139837003, 34.028554801100242, 0.0 ], [ -118.429383978519496, 34.028481089244792, 0.0 ], [ -118.429353300752993, 34.028398003627281, 0.0 ], [ -118.429316487433397, 34.028317474490322, 0.0 ], [ -118.429261523101701, 34.028226975079363, 0.0 ], [ -118.429203661425504, 34.028151558903332, 0.0 ], [ -118.428689212325395, 34.027483635755019, 0.0 ], [ -118.428323635608507, 34.027015885032668, 0.0 ], [ -118.4282936395702, 34.027030286539613, 0.0 ], [ -118.428246593027495, 34.026970756199752, 0.0 ] ], [ [ -118.428246593027495, 34.026970756199752, 0.0 ], [ -118.427301299041503, 34.025774628515663, 0.0 ], [ -118.427286812318499, 34.025742757724927, 0.0 ], [ -118.427269428250796, 34.025716085111291, 0.0 ], [ -118.427249998998803, 34.025692906354408, 0.0 ], [ -118.427224093329301, 34.025664358988458, 0.0 ], [ -118.427195972043407, 34.025635811622386, 0.0 ], [ -118.424353762197796, 34.022065771767778, 0.0 ], [ -118.424306931790397, 34.022058369113289, 0.0 ], [ -118.424280723986101, 34.022025609357847, 0.0 ], [ -118.424311611755499, 34.021918906154703, 0.0 ], [ -118.4241160947238, 34.021837137191618, 0.0 ], [ -118.424114117230204, 34.021795355077259, 0.0 ], [ -118.424041109775303, 34.021709243720167, 0.0 ], [ -118.424108501272102, 34.021554804873418, 0.0 ], [ -118.417076825563598, 34.012663803294807, 0.0 ], [ -118.416606262712605, 34.012041811580033, 0.0 ], [ -118.414094691016601, 34.008875780866241, 0.0 ], [ -118.413760303362196, 34.008408797088109, 0.0 ], [ -118.413169245061994, 34.00737521200675, 0.0 ], [ -118.413169159846007, 34.00737521200675, 0.0 ], [ -118.413099819474596, 34.007356673776563, 0.0 ], [ -118.412496766977597, 34.006278877824471, 0.0 ], [ -118.412507764895395, 34.006194560454148, 0.0 ], [ -118.412441777388196, 34.006079082316411, 0.0 ], [ -118.410550621653002, 34.004985342798982, 0.0 ], [ -118.410548381083402, 34.004963217174129, 0.0 ], [ -118.410431845770603, 34.004893984586417, 0.0 ] ], [ [ -118.410431845770603, 34.004893984586417, 0.0 ], [ -118.410387255021604, 34.004866471145583, 0.0 ] ], [ [ -118.410387255021604, 34.004866471145583, 0.0 ], [ -118.410164998326593, 34.004737025848179, 0.0 ], [ -118.410082150935693, 34.004688774410127, 0.0 ], [ -118.409221911794901, 34.004187759530069, 0.0 ], [ -118.409190251122098, 34.004191801318022, 0.0 ], [ -118.406757729346296, 34.002806090206683, 0.0 ], [ -118.406734837739194, 34.002778029527008, 0.0 ], [ -118.402446428311293, 34.000349747841533, 0.0 ], [ -118.402446428311293, 34.000349662625503, 0.0 ], [ -118.403429735942098, 33.999037421165561, 0.0 ], [ -118.404343832494803, 33.997795695816407, 0.0 ], [ -118.403207451840103, 33.997109366906109, 0.0 ], [ -118.403085562826007, 33.997159997727408, 0.0 ], [ -118.402944464408904, 33.997106192197691, 0.0 ] ], [ [ -118.402944464408904, 33.997106192197691, 0.0 ], [ -118.402382356975295, 33.996891841896392, 0.0 ], [ -118.402401109131304, 33.996679942533333, 0.0 ], [ -118.402232195242206, 33.996579791208767, 0.0 ], [ -118.4005883782566, 33.995536661933457, 0.0 ], [ -118.400400306505105, 33.995442327801591, 0.0 ], [ -118.400149004468204, 33.995337341667437, 0.0 ], [ -118.399904604928807, 33.995257920338851, 0.0 ], [ -118.399643162185797, 33.995198695206298, 0.0 ], [ -118.399436768990398, 33.995162137534642, 0.0 ], [ -118.3992751142044, 33.995136913593427, 0.0 ], [ -118.399031140745095, 33.995120637333969, 0.0 ], [ -118.398735526378999, 33.995115780020939, 0.0 ], [ -118.398457210864507, 33.995122426870317, 0.0 ], [ -118.398106717382703, 33.995132226712393, 0.0 ], [ -118.397776760961406, 33.995138958777808, 0.0 ], [ -118.397392010640502, 33.995146031707343, 0.0 ], [ -118.397113609909894, 33.995152678556721, 0.0 ], [ -118.396855916671797, 33.995159240190077, 0.0 ], [ -118.396522636825694, 33.995168869600072, 0.0 ], [ -118.395889140948398, 33.995185998019643, 0.0 ], [ -118.395889055732397, 33.995185998019643, 0.0 ], [ -118.395703284813393, 33.995050419335151, 0.0 ], [ -118.395201958979897, 33.995064139114113, 0.0 ], [ -118.395181081055597, 33.995058173992831, 0.0 ], [ -118.3943533778736, 33.99507802932505, 0.0 ], [ -118.394300330489699, 33.993635843100009, 0.0 ], [ -118.394288849526603, 33.993323712969023, 0.0 ], [ -118.394224701686497, 33.991579741357377, 0.0 ], [ -118.394222826934097, 33.991458905043977, 0.0 ], [ -118.394205102002303, 33.991343266907641, 0.0 ], [ -118.394164113097801, 33.991215698528862, 0.0 ], [ -118.394128492802196, 33.991151360435317, 0.0 ], [ -118.394100968028397, 33.991102361225039, 0.0 ], [ -118.394079664024005, 33.991096736967897, 0.0 ], [ -118.394062638800506, 33.991061666173707, 0.0 ] ], [ [ -118.394062638800506, 33.991061666173707, 0.0 ], [ -118.394029897869501, 33.990994222098223, 0.0 ], [ -118.3940384194714, 33.990977519758722, 0.0 ], [ -118.394016774602704, 33.990940536006931, 0.0 ], [ -118.393782941849594, 33.990701505076757, 0.0 ], [ -118.393234917638296, 33.99011053199245, 0.0 ], [ -118.393059372641403, 33.989906524845637, 0.0 ], [ -118.391750369390195, 33.988501312710063, 0.0 ], [ -118.389320657027298, 33.98869525553642, 0.0 ] ], [ [ -118.380274924769296, 33.988879160533543, 0.0 ], [ -118.379076191045201, 33.988887937783382, 0.0 ], [ -118.379075220887302, 33.988887959838102, 0.0 ], [ -118.378712489080698, 33.988896203737063, 0.0 ], [ -118.378209544142905, 33.988845159342432, 0.0 ], [ -118.378209458926904, 33.988845159342432, 0.0 ], [ -118.377637062934596, 33.98871759096361, 0.0 ], [ -118.377576474345801, 33.988608684892732, 0.0 ], [ -118.375802958580906, 33.988102160882157, 0.0 ], [ -118.375634943370997, 33.988060429383687, 0.0 ] ], [ [ -118.387177669771205, 33.988827117785817, 0.0 ], [ -118.384813785531605, 33.988850698383537, 0.0 ], [ -118.384656221114497, 33.988817293704507, 0.0 ], [ -118.384564358247204, 33.988817464136552, 0.0 ], [ -118.384539304737899, 33.98882198058552, 0.0 ], [ -118.383446494524094, 33.98884328459004, 0.0 ], [ -118.383168860737698, 33.988841835917647, 0.0 ], [ -118.383063363307599, 33.988847715822942, 0.0 ], [ -118.382669494872701, 33.988852061839808, 0.0 ], [ -118.382539540445407, 33.988848397551052, 0.0 ], [ -118.382388622877599, 33.988863992082401, 0.0 ], [ -118.380274924769296, 33.988879160533543, 0.0 ] ], [ [ -118.389265251630505, 33.988679183834577, 0.0 ], [ -118.389216582042096, 33.988642080226512, 0.0 ], [ -118.389101602267004, 33.988650818065842, 0.0 ], [ -118.389042759760102, 33.9887673288274, 0.0 ], [ -118.388692136939099, 33.988799824420887, 0.0 ], [ -118.388376070728697, 33.988815163304018, 0.0 ], [ -118.387177669771205, 33.988827117785817, 0.0 ] ], [ [ -118.389320657027298, 33.98869525553642, 0.0 ], [ -118.389289586440796, 33.988697735631391, 0.0 ], [ -118.389265251630505, 33.988679183834577, 0.0 ] ], [ [ -118.375634943370997, 33.988060429383687, 0.0 ], [ -118.375625343106194, 33.988058046085577, 0.0 ] ], [ [ -118.375625343106194, 33.988058046085577, 0.0 ], [ -118.375606280011596, 33.988053332103902, 0.0 ], [ -118.375599811413295, 33.988051720399334, 0.0 ] ], [ [ -118.375599811413295, 33.988051720399334, 0.0 ], [ -118.375590504027997, 33.988049401387499, 0.0 ] ], [ [ -118.375590504027997, 33.988049401387499, 0.0 ], [ -118.375580011731003, 33.988046794454149, 0.0 ] ], [ [ -118.375580011731003, 33.988046794454149, 0.0 ], [ -118.375377560219405, 33.987996493019928, 0.0 ], [ -118.374726083762496, 33.987877105378843, 0.0 ], [ -118.372934587417802, 33.987766494987603, 0.0 ], [ -118.372757593748503, 33.98774169712631, 0.0 ], [ -118.372692062630804, 33.987737436325467, 0.0 ], [ -118.372482601658703, 33.987738032837562, 0.0 ], [ -118.371579141436698, 33.987686818010857, 0.0 ], [ -118.3713966087263, 33.987826657496292, 0.0 ], [ -118.370789188950695, 33.987786435535853, 0.0 ], [ -118.370770015346594, 33.987800581394808, 0.0 ], [ -118.370680338556795, 33.987795612935997, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.464892647999307, 34.071323491422227, 0.0 ], [ -118.464884616412107, 34.071303412454377, 0.0 ], [ -118.464825635761699, 34.071221197002259, 0.0 ], [ -118.464817528599795, 34.071211504239592, 0.0 ], [ -118.462996328979202, 34.069034113931892, 0.0 ], [ -118.462882440490006, 34.068901883604561, 0.0 ], [ -118.461434731583793, 34.067375905965747, 0.0 ], [ -118.461401900739602, 34.067314183978553, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.468738880540201, 34.076612423107363, 0.0 ], [ -118.468695235393596, 34.076474835752457, 0.0 ], [ -118.468451432366294, 34.075706868998942, 0.0 ], [ -118.4682377105933, 34.075459742547039, 0.0 ], [ -118.468064916662797, 34.075260075141827, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.479850511607495, 34.106982546540941, 0.0 ], [ -118.479839995606795, 34.106982546540941, 0.0 ], [ -118.479734835599601, 34.106792090083623, 0.0 ], [ -118.479628006385994, 34.106599797499079, 0.0 ], [ -118.479534530823997, 34.106416852470787, 0.0 ], [ -118.479471768661099, 34.106314029352703, 0.0 ], [ -118.479356927256504, 34.106187169661503, 0.0 ], [ -118.479212707818107, 34.106050962414137, 0.0 ], [ -118.478989701834607, 34.105861340559997, 0.0 ], [ -118.4788628421434, 34.105734480868811, 0.0 ], [ -118.478778714137704, 34.105627651655247, 0.0 ], [ -118.478649659310705, 34.10541146852502, 0.0 ], [ -118.478358152960695, 34.104952607643568, 0.0 ], [ -118.4783413093256, 34.104951605557467, 0.0 ], [ -118.478326510018505, 34.104926791360143, 0.0 ], [ -118.478334003969806, 34.104914594398899, 0.0 ], [ -118.478093533508201, 34.104541212929362, 0.0 ], [ -118.478093772589204, 34.104530267271286, 0.0 ], [ -118.478082254541903, 34.104523699845132, 0.0 ], [ -118.477996137669194, 34.104389984118278, 0.0 ], [ -118.477915182452307, 34.104238470038318, 0.0 ], [ -118.477797499131498, 34.10399100272236, 0.0 ], [ -118.477728559373006, 34.103797818009689, 0.0 ], [ -118.477679134082607, 34.103624659061353, 0.0 ], [ -118.477626726231605, 34.103309018930958, 0.0 ], [ -118.477608063923597, 34.10306802803224, 0.0 ], [ -118.477621357622496, 34.102800364520007, 0.0 ], [ -118.477657659646098, 34.102439985980197, 0.0 ], [ -118.477688337412602, 34.102267082679923, 0.0 ], [ -118.477766480501003, 34.101952379925663, 0.0 ], [ -118.477833119426904, 34.101752633579679, 0.0 ], [ -118.478114758366203, 34.10088828750996, 0.0 ], [ -118.478260307324803, 34.100450873689923, 0.0 ], [ -118.478395459929203, 34.100065100776753, 0.0 ], [ -118.478715360860505, 34.099304462600983, 0.0 ], [ -118.478850939544998, 34.098954991711388, 0.0 ], [ -118.478888860672896, 34.098820009539033, 0.0 ], [ -118.478912976806001, 34.098705564426957, 0.0 ], [ -118.478933258218305, 34.09857646215989, 0.0 ], [ -118.478942717196304, 34.098465425688467, 0.0 ], [ -118.478945018028796, 34.098366063811618, 0.0 ], [ -118.478935899914802, 34.098234660712023, 0.0 ], [ -118.478926100072698, 34.098182764157052, 0.0 ], [ -118.478924736616605, 34.098173816475168, 0.0 ], [ -118.478891331937504, 34.097954385229002, 0.0 ], [ -118.478889627617093, 34.097943392362787, 0.0 ], [ -118.478571516222203, 34.097688511253118, 0.0 ], [ -118.478388131351593, 34.097301715747783, 0.0 ], [ -118.478252297019097, 34.097128812447423, 0.0 ], [ -118.477975941473005, 34.09689233799768, 0.0 ], [ -118.477728935514094, 34.096800138399892, 0.0 ], [ -118.4775088740748, 34.096752194146958, 0.0 ], [ -118.476933703440096, 34.096634408830177, 0.0 ], [ -118.476517585970498, 34.096567348576777, 0.0 ], [ -118.476387764197995, 34.096538976931072, 0.0 ], [ -118.476263960653299, 34.09650716629811, 0.0 ], [ -118.476128120652902, 34.096485672627153, 0.0 ], [ -118.476060200652597, 34.096474495918272, 0.0 ], [ -118.475868477107795, 34.096436667057418, 0.0 ], [ -118.475646662423699, 34.096370466550823, 0.0 ], [ -118.475471274068695, 34.096285351613957, 0.0 ], [ -118.475341452296107, 34.09619163920857, 0.0 ], [ -118.475221947485693, 34.096087609841213, 0.0 ], [ -118.475154887232307, 34.096015391106768, 0.0 ], [ -118.475101582928303, 34.095948330853417, 0.0 ], [ -118.475032803181307, 34.095836563764493, 0.0 ], [ -118.474980358624194, 34.095717918700871, 0.0 ], [ -118.474941670016406, 34.095613029586588, 0.0 ], [ -118.474915877611394, 34.095458275155814, 0.0 ], [ -118.474912438623903, 34.095348227560493, 0.0 ], [ -118.4749167373582, 34.095246777433587, 0.0 ], [ -118.474933814849393, 34.095121719577357, 0.0 ], [ -118.474959890950799, 34.095010342241928, 0.0 ], [ -118.474993806925994, 34.094915667245999, 0.0 ], [ -118.475167221522497, 34.094476037809592, 0.0 ], [ -118.475213664252195, 34.094363126585847, 0.0 ], [ -118.475312259185003, 34.094055837625262, 0.0 ], [ -118.475403440324101, 34.093655492773067, 0.0 ], [ -118.475440168427795, 34.093392942221847, 0.0 ], [ -118.475452780398498, 34.093248586287572, 0.0 ], [ -118.475470675762196, 34.093040062691657, 0.0 ], [ -118.475467693201693, 34.092853439612433, 0.0 ], [ -118.475466841041396, 34.092707123709673, 0.0 ], [ -118.475442469260301, 34.092446362694851, 0.0 ], [ -118.475423977384494, 34.092309931850188, 0.0 ], [ -118.475388186656801, 34.092092375356408, 0.0 ], [ -118.475288398699902, 34.091575710639759, 0.0 ], [ -118.475126829129906, 34.090739997152028, 0.0 ], [ -118.474935093089499, 34.089783106486841, 0.0 ], [ -118.474801531281997, 34.088932080199797, 0.0 ], [ -118.474668557104394, 34.087894079184103, 0.0 ], [ -118.474399169761796, 34.086000343482333, 0.0 ], [ -118.474315487736206, 34.085392789050118, 0.0 ], [ -118.474218426378997, 34.084673809700462, 0.0 ], [ -118.4741653186218, 34.084372556135733, 0.0 ], [ -118.474064441659493, 34.083999999172569, 0.0 ], [ -118.473667429675203, 34.082731012839758, 0.0 ], [ -118.473730479460301, 34.08262368274135, 0.0 ], [ -118.473725851206694, 34.082616336023797, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.482637265182504, 34.114282026151137, 0.0 ], [ -118.482657515259206, 34.113897274694317, 0.0 ], [ -118.4826492995156, 34.11385003416855, 0.0 ], [ -118.482656488291298, 34.113723717110659, 0.0 ], [ -118.482685660351393, 34.113610101609012, 0.0 ], [ -118.482778204946797, 34.112103993708303, 0.0 ], [ -118.482769829407104, 34.111871980709722, 0.0 ], [ -118.482736875178105, 34.111595168865243, 0.0 ], [ -118.482743469089399, 34.111557219405867, 0.0 ], [ -118.482685740421104, 34.110984632000012, 0.0 ], [ -118.482587685638407, 34.110661514678313, 0.0 ], [ -118.482533603348898, 34.110540330289112, 0.0 ], [ -118.482499551537103, 34.110459206855019, 0.0 ], [ -118.482452479914798, 34.110369069706039, 0.0 ], [ -118.482369353433, 34.110308978273324, 0.0 ], [ -118.482315832488595, 34.110227142717797, 0.0 ] ], [ [ -118.482315832488595, 34.110227142717797, 0.0 ], [ -118.482311088130402, 34.110219888414107, 0.0 ] ], [ [ -118.482311088130402, 34.110219888414107, 0.0 ], [ -118.482306446570107, 34.110212791292227, 0.0 ] ], [ [ -118.482306446570107, 34.110212791292227, 0.0 ], [ -118.482290825890999, 34.110188435586217, 0.0 ] ], [ [ -118.482290825890999, 34.110188435586217, 0.0 ], [ -118.482271483913806, 34.110158277645994, 0.0 ], [ -118.482256217996493, 34.110086527834383, 0.0 ], [ -118.482237808153897, 34.11006578122295, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 424", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.480617041516396, 34.130001913951688, 0.0 ], [ -118.480579028605504, 34.129758051227107, 0.0 ] ], [ [ -118.480579028605504, 34.129758051227107, 0.0 ], [ -118.480500892083896, 34.129256785091037, 0.0 ], [ -118.480405519418994, 34.128665910093822, 0.0 ], [ -118.480280693893604, 34.127892561860207, 0.0 ], [ -118.480234938750698, 34.12774890946659, 0.0 ], [ -118.480187862539793, 34.12762622600772, 0.0 ], [ -118.480113681843804, 34.127447907026983, 0.0 ], [ -118.480023809077494, 34.127231071146369, 0.0 ], [ -118.479896845963196, 34.126935774914102, 0.0 ], [ -118.479737072156396, 34.126573430745204, 0.0 ], [ -118.479678583530699, 34.12647927832333, 0.0 ], [ -118.479594416971693, 34.126362301071893, 0.0 ], [ -118.479495984894299, 34.126258162787131, 0.0 ], [ -118.479354881997295, 34.126121524225191, 0.0 ], [ -118.479252921640693, 34.126023949260357, 0.0 ], [ -118.479098336584002, 34.125875942291081, 0.0 ], [ -118.478962132010295, 34.12574686140794, 0.0 ], [ -118.478905959381606, 34.125689648545411, 0.0 ], [ -118.478805200558895, 34.125588048179488, 0.0 ], [ -118.478689261766405, 34.125436341036043, 0.0 ], [ -118.478626906105902, 34.125315823579513, 0.0 ], [ -118.478491539829704, 34.125199449283507, 0.0 ], [ -118.478477725335296, 34.125165975701243, 0.0 ] ], [ [ -118.478477725335296, 34.125165975701243, 0.0 ], [ -118.478474722816003, 34.125158616902752, 0.0 ] ], [ [ -118.478474722816003, 34.125158616902752, 0.0 ], [ -118.478472313606702, 34.125152712232762, 0.0 ] ], [ [ -118.478472313606702, 34.125152712232762, 0.0 ], [ -118.478468795748299, 34.125144090402507, 0.0 ] ], [ [ -118.478468795748299, 34.125144090402507, 0.0 ], [ -118.478447964097001, 34.125093034635768, 0.0 ] ], [ [ -118.478447964097001, 34.125093034635768, 0.0 ], [ -118.478445893266596, 34.125087565500067, 0.0 ] ], [ [ -118.478445893266596, 34.125087565500067, 0.0 ], [ -118.478430063001497, 34.125045757213279, 0.0 ], [ -118.478416450275304, 34.124997014870992, 0.0 ], [ -118.478400648176304, 34.124904440990512, 0.0 ], [ -118.478388314262304, 34.124795285850738, 0.0 ], [ -118.478386127557997, 34.124656145063703, 0.0 ], [ -118.478396113420899, 34.124536314708607, 0.0 ], [ -118.478408952387497, 34.124447868494187, 0.0 ], [ -118.4784417630799, 34.12429237434295, 0.0 ], [ -118.478481706531596, 34.124162558124887, 0.0 ], [ -118.478558740331295, 34.124002784318108, 0.0 ], [ -118.478638627234702, 34.123855849477891, 0.0 ], [ -118.4791265079661, 34.123101203551222, 0.0 ], [ -118.479563032831095, 34.122469241083309, 0.0 ], [ -118.480021892847205, 34.121769705756762, 0.0 ], [ -118.480567325330895, 34.120945683711398, 0.0 ], [ -118.4808654746668, 34.120514865053863, 0.0 ], [ -118.481032381232893, 34.120285190206587, 0.0 ], [ -118.481256502514896, 34.120025419086019, 0.0 ], [ -118.4813926642138, 34.119881232526971, 0.0 ], [ -118.481437426761701, 34.119804496730303, 0.0 ], [ -118.481504215325501, 34.119729892483591, 0.0 ], [ -118.481577398539002, 34.119674472185999, 0.0 ], [ -118.482290046724103, 34.118906166864427, 0.0 ], [ -118.482367729876202, 34.118803852468957, 0.0 ], [ -118.4824283606291, 34.118717643117222, 0.0 ], [ -118.482605516110198, 34.118387016042988, 0.0 ], [ -118.482605969929693, 34.118376147064993, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 800", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.705461079750506, 34.092645733614901, 0.0 ], [ -117.705481320095103, 34.092646023824798, 0.0 ], [ -117.705536199210499, 34.092680536312074, 0.0 ], [ -117.707017764898097, 34.092699539483981, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 703", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.099472324792302, 34.084365252268341, 0.0 ], [ -118.099466522741693, 34.08282944189019, 0.0 ], [ -118.099466307040103, 34.082536766157261, 0.0 ], [ -118.099461175941499, 34.080832161214737, 0.0 ] ], [ [ -118.099461175941499, 34.080832161214737, 0.0 ], [ -118.099451591693494, 34.080832164673737, 0.0 ], [ -118.099451402166196, 34.080765730991381, 0.0 ], [ -118.099451400961001, 34.080765308525073, 0.0 ] ], [ [ -118.099451400961001, 34.080765308525073, 0.0 ], [ -118.099451071980695, 34.080649993283082, 0.0 ] ], [ [ -118.099451071980695, 34.080649993283082, 0.0 ], [ -118.099450931904101, 34.080600893169589, 0.0 ], [ -118.099471708196305, 34.080600991723188, 0.0 ], [ -118.099472075537193, 34.080600817153432, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 700", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.026507418200794, 34.09205781715918, 0.0 ], [ -118.026507443661998, 34.092982115799487, 0.0 ], [ -118.026927473414005, 34.093883616053127, 0.0 ], [ -118.028152879752, 34.095595009340897, 0.0 ], [ -118.028318113610993, 34.095849720018528, 0.0 ], [ -118.028452414054996, 34.096384961827042, 0.0 ], [ -118.025490560920005, 34.098209010690553, 0.0 ], [ -118.025088852612001, 34.100871073874288, 0.0 ], [ -118.025037296920999, 34.10116302395172, 0.0 ], [ -118.024429110200998, 34.10414575501094, 0.0 ], [ -118.024415475637994, 34.104306046340589, 0.0 ], [ -118.024415475637994, 34.104446311906152, 0.0 ], [ -118.024522762605002, 34.106607304904543, 0.0 ], [ -118.024478024195005, 34.106641732175731, 0.0 ], [ -118.024568182742001, 34.108748357354713, 0.0 ], [ -118.024886208921004, 34.125175449128797, 0.0 ], [ -118.024966984418796, 34.130469503672067, 0.0 ] ], [ [ -118.026507402865306, 34.092052321411877, 0.0 ], [ -118.026507418178895, 34.092057605182269, 0.0 ], [ -118.026507418200794, 34.09205781715918, 0.0 ] ], [ [ -118.028561205922998, 34.086753768025837, 0.0 ], [ -118.027933448506005, 34.087660631128529, 0.0 ], [ -118.027861270537997, 34.087815212985006, 0.0 ], [ -118.026507102798007, 34.091948786366189, 0.0 ], [ -118.026507402865306, 34.092052321411877, 0.0 ] ], [ [ -118.035711029245107, 34.05811359602253, 0.0 ], [ -118.035686742679999, 34.058113596019609, 0.0 ], [ -118.035653849297006, 34.061574900235406, 0.0 ], [ -118.036025902431007, 34.065681289706873, 0.0 ], [ -118.036064846151007, 34.072231674572308, 0.0 ], [ -118.036071493001003, 34.072231674572308, 0.0 ], [ -118.036076946826, 34.072528055882572, 0.0 ], [ -118.036070214760997, 34.072874373779413, 0.0 ], [ -118.035248902779998, 34.074572047288378, 0.0 ], [ -118.035224786647007, 34.074583466234728, 0.0 ], [ -118.034967775137005, 34.075142568528364, 0.0 ], [ -118.034973910689999, 34.075170348950238, 0.0 ], [ -118.032172689749004, 34.080890133288797, 0.0 ], [ -118.031001054718999, 34.084548542154167, 0.0 ], [ -118.030292653961993, 34.085350169234722, 0.0 ], [ -118.029319231388996, 34.085911401928733, 0.0 ], [ -118.028920335209094, 34.086234967148741, 0.0 ], [ -118.028561205922998, 34.086753768025837, 0.0 ] ], [ [ -118.035725909266006, 34.058113596027241, 0.0 ], [ -118.035711029245107, 34.05811359602253, 0.0 ] ], [ [ -118.035726163254793, 34.058102039494472, 0.0 ], [ -118.035725909266006, 34.058113596027241, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 699", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.035685408722003, 34.058258387961608, 0.0 ], [ -118.035691851007499, 34.058258365719119, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 698", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.042524245602493, 34.107770138578687, 0.0 ], [ -118.042423392732402, 34.107770329778177, 0.0 ], [ -118.042423577429105, 34.10778132017078, 0.0 ], [ -118.042311917163701, 34.107781575806143, 0.0 ], [ -118.042311911163395, 34.107769719036611, 0.0 ] ], [ [ -118.042311911163395, 34.107769719036611, 0.0 ], [ -118.042311907116996, 34.107761723155051, 0.0 ], [ -118.042161910563905, 34.107762058449516, 0.0 ] ], [ [ -118.042161910563905, 34.107762058449516, 0.0 ], [ -118.042072696797504, 34.107762257873283, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 697", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.035263541192805, 34.092725706692981, 0.0 ], [ -118.033954880867498, 34.092911983016712, 0.0 ], [ -118.033449038585104, 34.092863495102542, 0.0 ], [ -118.033411202673193, 34.092717520063843, 0.0 ], [ -118.032846631709106, 34.092662218214983, 0.0 ] ], [ [ -118.035306115724396, 34.092719646581649, 0.0 ], [ -118.035263541192805, 34.092725706692981, 0.0 ] ], [ [ -118.040042798403704, 34.092045421330504, 0.0 ], [ -118.035812106913298, 34.092647623172127, 0.0 ], [ -118.035802571679795, 34.092642469703158, 0.0 ], [ -118.035327164965494, 34.0927166504067, 0.0 ], [ -118.035306115724396, 34.092719646581649, 0.0 ] ], [ [ -118.032846631709106, 34.092662218214983, 0.0 ], [ -118.032065888414095, 34.092585741473407, 0.0 ] ], [ [ -118.032065888414095, 34.092585741473407, 0.0 ], [ -118.031807863296095, 34.092560466942857, 0.0 ], [ -118.0318043694393, 34.092591996869437, 0.0 ], [ -118.030565754618905, 34.092460678985837, 0.0 ], [ -118.030572127606206, 34.092440490954758, 0.0 ], [ -118.029496586744898, 34.092321393800503, 0.0 ], [ -118.029457009009704, 34.092316237835441, 0.0 ] ], [ [ -118.029457009009704, 34.092316237835441, 0.0 ], [ -118.029454452529194, 34.092355011123658, 0.0 ], [ -118.028400135358197, 34.092248688405107, 0.0 ] ], [ [ -118.028400135358197, 34.092248688405107, 0.0 ], [ -118.026514373417001, 34.092058518558318, 0.0 ] ], [ [ -118.026514373417001, 34.092058518558318, 0.0 ], [ -118.026507418200794, 34.09205781715918, 0.0 ] ], [ [ -118.040044093324198, 34.092049767347447, 0.0 ], [ -118.040042798403704, 34.092045421330504, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 696", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.045682240710306, 34.079595616811432, 0.0 ], [ -118.046001033840795, 34.079642485570552, 0.0 ], [ -118.0460039639798, 34.079628953657149, 0.0 ] ], [ [ -118.0460039639798, 34.079628953657149, 0.0 ], [ -118.046005720721794, 34.079620840701963, 0.0 ], [ -118.045876481649998, 34.079600063459637, 0.0 ], [ -118.045874579225895, 34.079608227109233, 0.0 ] ], [ [ -118.045874579225895, 34.079608227109233, 0.0 ], [ -118.045872081157299, 34.079618946777593, 0.0 ], [ -118.045732245315094, 34.079598388229641, 0.0 ] ], [ [ -118.045682212869806, 34.079595612770142, 0.0 ], [ -118.045682240710306, 34.079595616811432, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 695", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.064354263267902, 34.069463687878269, 0.0 ], [ -118.0643476594677, 34.069463722723789, 0.0 ], [ -118.064347497405294, 34.0693592089183, 0.0 ] ], [ [ -118.064365471120993, 34.068930669157467, 0.0 ], [ -118.064365937862405, 34.069463687878269, 0.0 ], [ -118.064354263267902, 34.069463687878269, 0.0 ] ], [ [ -118.064347497405294, 34.0693592089183, 0.0 ], [ -118.064347399551906, 34.069296103239381, 0.0 ] ], [ [ -118.064234108682598, 34.068879872939483, 0.0 ], [ -118.064365426566297, 34.068879787723468, 0.0 ], [ -118.064365471120993, 34.068930669157467, 0.0 ] ], [ [ -118.064233767818607, 34.068742760366703, 0.0 ], [ -118.064234108682598, 34.068879872939483, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 694", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.035367235707696, 34.093155785405663, 0.0 ], [ -118.035360738603998, 34.093156778290961, 0.0 ], [ -118.035389389210295, 34.093297665160613, 0.0 ], [ -118.035399261991202, 34.093296611623067, 0.0 ] ], [ [ -118.035399261991202, 34.093296611623067, 0.0 ], [ -118.035408958275696, 34.093295576919672, 0.0 ], [ -118.035366409833699, 34.093081034212432, 0.0 ], [ -118.035359987617696, 34.093078555819098, 0.0 ], [ -118.035358625919201, 34.093069922959508, 0.0 ] ], [ [ -118.035306115724396, 34.092719646581649, 0.0 ], [ -118.035314604329699, 34.092762088041233, 0.0 ], [ -118.035311110473003, 34.092782113805399, 0.0 ], [ -118.035300799334806, 34.09280640037052, 0.0 ], [ -118.035299095014494, 34.092827874807071, 0.0 ], [ -118.035367235707696, 34.093155785405663, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 693", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.052880555148306, 34.156752713935482, 0.0 ], [ -118.0528759140158, 34.156821586887062, 0.0 ] ], [ [ -118.0503318184752, 34.146881625282333, 0.0 ], [ -118.0503711668877, 34.147166465144949, 0.0 ], [ -118.050750037303402, 34.147406774315471, 0.0 ], [ -118.050767762235097, 34.148262598783397, 0.0 ], [ -118.051590608104107, 34.14825083897292, 0.0 ], [ -118.051587199463398, 34.148370993558252, 0.0 ], [ -118.053470388243397, 34.148370226614063, 0.0 ], [ -118.053470388243397, 34.148353012978461, 0.0 ], [ -118.055202062943494, 34.148349433905658, 0.0 ], [ -118.055223366947999, 34.149351233412332, 0.0 ], [ -118.055189024892798, 34.149351233412332, 0.0 ], [ -118.055190372041295, 34.149697013072867, 0.0 ], [ -118.0552045974446, 34.150465562206008, 0.0 ], [ -118.053478492998394, 34.150475731178673, 0.0 ], [ -118.053461782148602, 34.150647672846183, 0.0 ], [ -118.053307254609805, 34.152784967392677, 0.0 ], [ -118.053322850061207, 34.152784886397988, 0.0 ], [ -118.053320086923094, 34.152829128505132, 0.0 ], [ -118.053074133760106, 34.15676732780372, 0.0 ], [ -118.052906238853694, 34.156763043657797, 0.0 ], [ -118.052914468645795, 34.156642331112678, 0.0 ], [ -118.0528978972049, 34.156641186804627, 0.0 ] ], [ [ -118.0528978972049, 34.156641186804627, 0.0 ], [ -118.052888116109997, 34.156640511389469, 0.0 ], [ -118.052880555148306, 34.156752713935482, 0.0 ] ], [ [ -118.052622245560698, 34.139846515044489, 0.0 ], [ -118.052439274426504, 34.140086974024342, 0.0 ], [ -118.052336077828897, 34.140238658536212, 0.0 ], [ -118.052243192369303, 34.140390513480106, 0.0 ], [ -118.052167605761397, 34.140539385863448, 0.0 ], [ -118.052119458711402, 34.140665335137939, 0.0 ], [ -118.052085116656102, 34.140791284412387, 0.0 ], [ -118.052049411144594, 34.140923284024147, 0.0 ], [ -118.052023335043103, 34.141066617366263, 0.0 ], [ -118.052000838014393, 34.141211910676887, 0.0 ], [ -118.051965132502801, 34.141458270184692, 0.0 ], [ -118.051944510226505, 34.141604415655372, 0.0 ], [ -118.051903606537905, 34.14175388455083, 0.0 ], [ -118.0518413988449, 34.141913408936368, 0.0 ], [ -118.051755415882795, 34.142079494955269, 0.0 ], [ -118.051666024279996, 34.142242683629561, 0.0 ], [ -118.051576632677197, 34.142388658668303, 0.0 ], [ -118.050596392823095, 34.14386613398699, 0.0 ], [ -118.050527623496606, 34.143989185916787, 0.0 ], [ -118.050462262810896, 34.144120929880529, 0.0 ], [ -118.050416160945105, 34.144256338132983, 0.0 ], [ -118.050362560069999, 34.144407170484712, 0.0 ], [ -118.050324212861796, 34.14455919586068, 0.0 ], [ -118.050297369816207, 34.14475067625294, 0.0 ], [ -118.050275724947696, 34.144986213326497, 0.0 ], [ -118.050249734062106, 34.145520688190871, 0.0 ], [ -118.050212068582198, 34.146070331506458, 0.0 ], [ -118.050253483566905, 34.146070331506458, 0.0 ], [ -118.050253483566905, 34.146204802382726, 0.0 ], [ -118.050263965137205, 34.146347880076817, 0.0 ], [ -118.050284672629502, 34.146519590352902, 0.0 ], [ -118.050301971481105, 34.146665565391643, 0.0 ], [ -118.0503318184752, 34.146881625282333, 0.0 ] ], [ [ -118.053875675624596, 34.138199268795411, 0.0 ], [ -118.052622245560698, 34.139846515044489, 0.0 ] ], [ [ -118.045763387009998, 34.127356848527839, 0.0 ], [ -118.045765241119298, 34.127451568967409, 0.0 ], [ -118.045798219718094, 34.12745139853542, 0.0 ], [ -118.045840316430997, 34.129547883008293, 0.0 ], [ -118.054607596002498, 34.128935691135531, 0.0 ], [ -118.054507172901296, 34.130422746701058, 0.0 ], [ -118.054376575377901, 34.13193870360702, 0.0 ], [ -118.054389746774604, 34.131976508679138, 0.0 ], [ -118.054379487216195, 34.132080352550723, 0.0 ], [ -118.054303630293305, 34.133148868821621, 0.0 ], [ -118.054248921783099, 34.133149197141471, 0.0 ], [ -118.054013981221701, 34.137113701943079, 0.0 ], [ -118.053976315741707, 34.137339865254638, 0.0 ], [ -118.053908909871595, 34.13755989301297, 0.0 ], [ -118.053835368448105, 34.137737824058391, 0.0 ], [ -118.053745976845306, 34.137906722205898, 0.0 ], [ -118.053635877750196, 34.138084227171177, 0.0 ], [ -118.053875675624596, 34.138199268795411, 0.0 ] ], [ [ -118.045741891930305, 34.12542368338903, 0.0 ], [ -118.045728247969194, 34.12564447814087, 0.0 ], [ -118.0457454734577, 34.126548680447023, 0.0 ], [ -118.045757975347797, 34.127080384209641, 0.0 ], [ -118.045763387009998, 34.127356848527839, 0.0 ] ], [ [ -118.045741781606395, 34.125417798324392, 0.0 ], [ -118.045741891930305, 34.12542368338903, 0.0 ] ], [ [ -118.042524245602493, 34.107770138578687, 0.0 ], [ -118.0425364914163, 34.108516228921907, 0.0 ], [ -118.042560607549404, 34.108679332380177, 0.0 ], [ -118.042588217539105, 34.108833914236662, 0.0 ], [ -118.042629632523798, 34.108972731129953, 0.0 ], [ -118.042674370933398, 34.109092885715157, 0.0 ], [ -118.042905221125807, 34.109527913486637, 0.0 ], [ -118.042990324863695, 34.109636823577183, 0.0 ], [ -118.043061868471995, 34.109723721608638, 0.0 ], [ -118.043190744444701, 34.109848474258158, 0.0 ], [ -118.043351939442402, 34.10997530345675, 0.0 ], [ -118.043476679742, 34.110042873882932, 0.0 ], [ -118.043672506151196, 34.110127578604718, 0.0 ], [ -118.043834587017301, 34.110171635285937, 0.0 ], [ -118.044017034511597, 34.110200097435943, 0.0 ], [ -118.044220104282303, 34.110205806909192, 0.0 ], [ -118.045407333843997, 34.110185269848863, 0.0 ], [ -118.045451987037296, 34.110219611904022, 0.0 ], [ -118.0455497877917, 34.1157789081646, 0.0 ], [ -118.045686333979106, 34.122434394733659, 0.0 ], [ -118.045741781606395, 34.125417798324392, 0.0 ] ], [ [ -118.040070153435906, 34.092188146481277, 0.0 ], [ -118.040416572538504, 34.094027631123318, 0.0 ], [ -118.040440688671595, 34.094130572072928, 0.0 ], [ -118.040479376743704, 34.094229507869727, 0.0 ], [ -118.040564677977599, 34.094451239948377, 0.0 ], [ -118.040599190465002, 34.094551368769459, 0.0 ], [ -118.040626800454703, 34.094663001752963, 0.0 ], [ -118.041226040101805, 34.09759294770501, 0.0 ], [ -118.041571675661501, 34.099216690102431, 0.0 ], [ -118.041664032960696, 34.099409415768179, 0.0 ], [ -118.041716372459902, 34.099517161781613, 0.0 ], [ -118.041743982449702, 34.099628794765103, 0.0 ], [ -118.041931702124302, 34.100606130973148, 0.0 ], [ -118.042256106883201, 34.102210750909187, 0.0 ], [ -118.042512326005095, 34.103478100723883, 0.0 ], [ -118.042636463102994, 34.104092126433358, 0.0 ], [ -118.0429237982177, 34.105513386882492, 0.0 ], [ -118.042492441905495, 34.105579599402439, 0.0 ], [ -118.042499970570901, 34.105996227340192, 0.0 ], [ -118.042521469937299, 34.107185978261853, 0.0 ], [ -118.042523794229595, 34.107742637911187, 0.0 ], [ -118.042524245602493, 34.107770138578687, 0.0 ] ], [ [ -118.040068068588496, 34.092177075945713, 0.0 ], [ -118.040070153435906, 34.092188146481277, 0.0 ] ], [ [ -118.040044093324198, 34.092049767347447, 0.0 ], [ -118.040068068588496, 34.092177075945713, 0.0 ] ], [ [ -118.045682240710306, 34.079595616811432, 0.0 ], [ -118.045638272797603, 34.079836794316392, 0.0 ], [ -118.045535849827601, 34.080323481954508, 0.0 ], [ -118.045454779783697, 34.080690290636532, 0.0 ], [ -118.045223096813203, 34.081454433759511, 0.0 ], [ -118.044749636617695, 34.083652921805808, 0.0 ], [ -118.044730869487907, 34.083726890160008, 0.0 ], [ -118.044040731111394, 34.085167600966017, 0.0 ], [ -118.042857061353601, 34.087788450944061, 0.0 ], [ -118.042709802358104, 34.088153207860891, 0.0 ], [ -118.042422551272793, 34.088816980485319, 0.0 ], [ -118.042094305499205, 34.089470789781181, 0.0 ], [ -118.041031320891804, 34.091777587386233, 0.0 ], [ -118.040998614422904, 34.091850643586767, 0.0 ], [ -118.040958540222206, 34.091929009506757, 0.0 ], [ -118.040044093324198, 34.092049767347447, 0.0 ] ], [ [ -118.046358429819904, 34.07654249727068, 0.0 ], [ -118.046287753648201, 34.076798189078453, 0.0 ], [ -118.045682240710306, 34.079595616811432, 0.0 ] ], [ [ -118.044274425620102, 34.071231494808153, 0.0 ], [ -118.046089232419305, 34.073811579544397, 0.0 ], [ -118.046622599475498, 34.074255128917763, 0.0 ], [ -118.045674741708197, 34.075052921277447, 0.0 ], [ -118.045636224068105, 34.075592168238863, 0.0 ], [ -118.045275419448203, 34.07638800063016, 0.0 ], [ -118.046125108362901, 34.076496480620989, 0.0 ], [ -118.046359111548099, 34.076539259062059, 0.0 ], [ -118.046358429819904, 34.07654249727068, 0.0 ] ], [ [ -118.044101954560006, 34.071214681570858, 0.0 ], [ -118.044261178402905, 34.071212661429932, 0.0 ], [ -118.044274425620102, 34.071231494808153, 0.0 ] ], [ [ -118.044039559543407, 34.071207228482841, 0.0 ], [ -118.044039531540406, 34.071215473558503, 0.0 ] ], [ [ -118.044039531540406, 34.071215473558503, 0.0 ], [ -118.044061726652203, 34.071215191959602, 0.0 ] ], [ [ -118.044061726652203, 34.071215191959602, 0.0 ], [ -118.044101954560006, 34.071214681570858, 0.0 ] ], [ [ -118.044039584696407, 34.071199822563003, 0.0 ], [ -118.044039559543407, 34.071207228482841, 0.0 ] ], [ [ -118.044042815865794, 34.07119720776786, 0.0 ], [ -118.044039593590298, 34.071197203893682, 0.0 ], [ -118.044039584696407, 34.071199822563003, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 691", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.031459176031106, 34.12941861030906, 0.0 ], [ -118.031452784829696, 34.129388784702797, 0.0 ], [ -118.031458542570505, 34.129387938998413, 0.0 ], [ -118.031459151864297, 34.129387849504603, 0.0 ] ], [ [ -118.031459151864297, 34.129387849504603, 0.0 ], [ -118.031463152108699, 34.129387261943478, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1715", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.438862982272695, 33.964044997295566, 0.0 ], [ -118.438872526466696, 33.964097064282583, 0.0 ], [ -118.438877203852201, 33.964096484237402, 0.0 ] ], [ [ -118.438877203852201, 33.964096484237402, 0.0 ], [ -118.438904823337495, 33.964093059129723, 0.0 ], [ -118.438913629364606, 33.96409173308389, 0.0 ] ], [ [ -118.438913629364606, 33.96409173308389, 0.0 ], [ -118.439043469798605, 33.964072181205367, 0.0 ], [ -118.439207285244805, 33.963957510393087, 0.0 ] ], [ [ -118.439207285244805, 33.963957510393087, 0.0 ], [ -118.439425237559007, 33.96380494377307, 0.0 ], [ -118.4400280556697, 33.963383124484452, 0.0 ], [ -118.440034191223006, 33.963378608035562, 0.0 ] ], [ [ -118.440034191223006, 33.963378608035562, 0.0 ], [ -118.4401041535736, 33.963007833141532, 0.0 ], [ -118.440251599098303, 33.962927995127053, 0.0 ] ], [ [ -118.440251599098303, 33.962927995127053, 0.0 ], [ -118.440289072332504, 33.9629077043205, 0.0 ], [ -118.440300832142995, 33.962901313119133, 0.0 ], [ -118.440554435012203, 33.962892280221261, 0.0 ], [ -118.440676208701902, 33.962888786364488, 0.0 ], [ -118.440718987142901, 33.962886655963999, 0.0 ], [ -118.441009147683999, 33.962687932210308, 0.0 ], [ -118.440894873003899, 33.962563602040149, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1714", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.438860255360098, 33.964042355599148, 0.0 ], [ -118.4388709073624, 33.964100558139343, 0.0 ], [ -118.438877790894495, 33.964099518794129, 0.0 ] ], [ [ -118.438877790894495, 33.964099518794129, 0.0 ], [ -118.438905334633503, 33.964095359962172, 0.0 ], [ -118.438914117074106, 33.964094033503393, 0.0 ] ], [ [ -118.438914117074106, 33.964094033503393, 0.0 ], [ -118.439045259334904, 33.964074226389762, 0.0 ], [ -118.4392091200545, 33.963959326287167, 0.0 ] ], [ [ -118.4392091200545, 33.963959326287167, 0.0 ], [ -118.439426856663204, 33.963806648093517, 0.0 ], [ -118.440029248693804, 33.963384147076667, 0.0 ], [ -118.440035341675397, 33.963379746589972, 0.0 ] ], [ [ -118.440035341675397, 33.963379746589972, 0.0 ], [ -118.440035384247096, 33.963379715843693, 0.0 ], [ -118.440106539622093, 33.96300894094982, 0.0 ], [ -118.440253025956906, 33.962930286565211, 0.0 ], [ -118.440251599098303, 33.962927995127053, 0.0 ] ], [ [ -118.440251599098303, 33.962927995127053, 0.0 ], [ -118.440232914976704, 33.962897989694433, 0.0 ], [ -118.439897078650105, 33.962400754229868, 0.0 ], [ -118.439769765919394, 33.962214812878763, 0.0 ], [ -118.438916071851807, 33.960952081925278, 0.0 ], [ -118.438040477267705, 33.959654753268531, 0.0 ], [ -118.439343771045799, 33.959042305747722, 0.0 ], [ -118.440372584030101, 33.958561687406707, 0.0 ], [ -118.440385962944902, 33.958582735763038, 0.0 ], [ -118.440602582062397, 33.958903403638537, 0.0 ], [ -118.440813832570896, 33.959218532472768, 0.0 ], [ -118.441061214670796, 33.959586580454101, 0.0 ], [ -118.441066157199899, 33.959593227303451, 0.0 ], [ -118.441122996283795, 33.959571667650991, 0.0 ], [ -118.441672213519396, 33.959306901483359, 0.0 ], [ -118.441749760095604, 33.959417597090599, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1713", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.438855142399007, 33.964037072205947, 0.0 ], [ -118.438863664000806, 33.964087264440479, 0.0 ], [ -118.438482066672606, 33.964124333408293, 0.0 ], [ -118.438246273950995, 33.963288279056499, 0.0 ], [ -118.438449343721601, 33.963090407462872, 0.0 ], [ -118.438775806286301, 33.962772210851973, 0.0 ], [ -118.438763449963702, 33.962765052706423, 0.0 ], [ -118.438578019908803, 33.962636717383518, 0.0 ] ], [ [ -118.438578019908803, 33.962636717383518, 0.0 ], [ -118.438449514153703, 33.96254775186074, 0.0 ] ], [ [ -118.438449514153703, 33.96254775186074, 0.0 ], [ -118.438445253352796, 33.96254476930018, 0.0 ], [ -118.438195399988302, 33.962368031278963, 0.0 ] ], [ [ -118.438195399988302, 33.962368031278963, 0.0 ], [ -118.437788408286593, 33.962080171570449, 0.0 ] ], [ [ -118.437788408286593, 33.962080171570449, 0.0 ], [ -118.437768467738493, 33.962066025711451, 0.0 ], [ -118.437723644113106, 33.962003732802422, 0.0 ], [ -118.437223511303998, 33.961236532993127, 0.0 ] ], [ [ -118.437223511303998, 33.961236532993127, 0.0 ], [ -118.4369981149365, 33.960919614622391, 0.0 ], [ -118.436694490264699, 33.961069594813942, 0.0 ], [ -118.436604416933804, 33.961029287637501, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1669", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.587139449963004, 34.447639337350033, 0.0 ], [ -118.587140302123203, 34.447637292165567, 0.0 ], [ -118.587140983851299, 34.447635502629211, 0.0 ], [ -118.587145755948399, 34.447623572386647, 0.0 ], [ -118.587146608108498, 34.447621441986243, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1634", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.586629602527793, 34.446279289703973, 0.0 ], [ -118.586523593801502, 34.44626983072601, 0.0 ], [ -118.586057036103398, 34.446207282168842, 0.0 ], [ -118.585920093962699, 34.446197993622903, 0.0 ], [ -118.5858468934032, 34.446197311894792, 0.0 ], [ -118.585520686486703, 34.446177882642623, 0.0 ], [ -118.585515829173701, 34.445955468835891, 0.0 ], [ -118.585513528341195, 34.445825003112503, 0.0 ], [ -118.585404877918407, 34.445722658674939, 0.0 ], [ -118.585327331342, 34.44564579382677, 0.0 ], [ -118.585223793880203, 34.445536206027739, 0.0 ], [ -118.585159711434699, 34.445466243677018, 0.0 ], [ -118.585111138304597, 34.445403695119808, 0.0 ], [ -118.585010753835405, 34.445280302325912, 0.0 ], [ -118.584914885815294, 34.445065898824872, 0.0 ], [ -118.584861796236098, 34.444938245229977, 0.0 ], [ -118.584378280550496, 34.444902028422383, 0.0 ], [ -118.583844572630198, 34.444862658622093, 0.0 ], [ -118.583472263847895, 34.444835219064338, 0.0 ], [ -118.5834716673358, 34.444995851258128, 0.0 ], [ -118.583475331624598, 34.445213066887767, 0.0 ], [ -118.5835116336482, 34.445332113664733, 0.0 ], [ -118.583500129485799, 34.445355121989692, 0.0 ], [ -118.583478228969199, 34.445385544108028, 0.0 ], [ -118.583341116396298, 34.445591596439392, 0.0 ], [ -118.583211673265197, 34.445759727642752, 0.0 ], [ -118.582652656187605, 34.446009495791237, 0.0 ], [ -118.582424618123596, 34.446108346372, 0.0 ], [ -118.582296879312807, 34.446163395919598, 0.0 ], [ -118.582145024368899, 34.446229438333447, 0.0 ], [ -118.582051286749206, 34.446186574676467, 0.0 ], [ -118.581956356105195, 34.446133059017278, 0.0 ], [ -118.581818817452302, 34.446053382040432, 0.0 ], [ -118.581677358862507, 34.445968762534633, 0.0 ], [ -118.581576122233201, 34.445922916317038, 0.0 ], [ -118.581433129755098, 34.445928540574229, 0.0 ], [ -118.581336835654895, 34.445923171965113, 0.0 ], [ -118.581280167003001, 34.445921467644787, 0.0 ], [ -118.581201597834493, 34.445921723292813, 0.0 ], [ -118.580999039359895, 34.44592223458897, 0.0 ], [ -118.580868829284498, 34.44592666582183, 0.0 ], [ -118.580721320357497, 34.445931693566934, 0.0 ], [ -118.580483652883501, 34.445934164831357, 0.0 ], [ -118.5804350797534, 34.445932204862977, 0.0 ], [ -118.5803988629457, 34.445935443071718, 0.0 ], [ -118.5804017602903, 34.44602585726669, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1997", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.240673757699895, 33.78099787642109, 0.0 ], [ -118.240772383499703, 33.780991020532511, 0.0 ], [ -118.240787466734901, 33.781171337626411, 0.0 ], [ -118.241674435464205, 33.781114019559318, 0.0 ] ], [ [ -118.241674435464205, 33.781114019559318, 0.0 ], [ -118.242077532983203, 33.781088487342018, 0.0 ], [ -118.242075007989001, 33.781021184349399, 0.0 ], [ -118.242111551144006, 33.781018392606519, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1996", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.328601304451098, 33.852595995237792, 0.0 ], [ -118.328774368692095, 33.852596591717173, 0.0 ], [ -118.328731334603006, 33.846939867231711, 0.0 ], [ -118.328743435277602, 33.846665130789958, 0.0 ], [ -118.3287426315446, 33.846576730570327, 0.0 ] ], [ [ -118.3287426315446, 33.846576730570327, 0.0 ], [ -118.328737712351895, 33.846035683075122, 0.0 ] ], [ [ -118.328737712351895, 33.846035683075122, 0.0 ], [ -118.328696839666094, 33.841540216933623, 0.0 ], [ -118.328661366409307, 33.841540216933623, 0.0 ], [ -118.328661469051795, 33.841270739247143, 0.0 ], [ -118.3286174969938, 33.841270739247143, 0.0 ], [ -118.328617571219198, 33.841262690901978, 0.0 ] ], [ [ -118.328617571219198, 33.841262690901978, 0.0 ], [ -118.328617486003097, 33.841222809805558, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1996", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.326653938518206, 33.883263876588813, 0.0 ], [ -118.326395819199902, 33.883266092214093, 0.0 ], [ -118.326400998274906, 33.881547840286437, 0.0 ], [ -118.326379609751598, 33.880245187498907, 0.0 ], [ -118.326370169178603, 33.879787830010677, 0.0 ], [ -118.326335315827194, 33.879773769367702, 0.0 ], [ -118.326334463667095, 33.879590895793299, 0.0 ], [ -118.3263652266495, 33.879570784813062, 0.0 ], [ -118.326364287680605, 33.873324912489238, 0.0 ] ], [ [ -118.326364287680605, 33.873324912489238, 0.0 ], [ -118.326363511769102, 33.862730541760939, 0.0 ] ], [ [ -118.326363511769102, 33.862730541760939, 0.0 ], [ -118.326363777977306, 33.862205038601509, 0.0 ], [ -118.326414737155901, 33.862170526114241, 0.0 ], [ -118.326416433776799, 33.858462439519073, 0.0 ], [ -118.326399100493603, 33.858462385616747, 0.0 ], [ -118.326399241279802, 33.858369355529028, 0.0 ], [ -118.326399402632006, 33.858262735793588, 0.0 ], [ -118.326399540561894, 33.858171593013743, 0.0 ], [ -118.3264299284468, 33.858161216662772, 0.0 ], [ -118.326430955474507, 33.854795916249508, 0.0 ], [ -118.326471655658807, 33.854730620270317, 0.0 ], [ -118.3264691500232, 33.852948905955401, 0.0 ], [ -118.326416910065902, 33.852875397998517, 0.0 ] ], [ [ -118.326416910065902, 33.852875397998517, 0.0 ], [ -118.326425127353204, 33.852868941558413, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1996", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.326680556043797, 33.902094010179603, 0.0 ], [ -118.326680611131806, 33.90207735773761, 0.0 ], [ -118.326670640857699, 33.90205647981314, 0.0 ], [ -118.326670410972994, 33.902003182057413, 0.0 ] ], [ [ -118.326670410972994, 33.902003182057413, 0.0 ], [ -118.326670360970297, 33.901991589153539, 0.0 ] ], [ [ -118.326670360970297, 33.901991589153539, 0.0 ], [ -118.326670309637294, 33.901979687814347, 0.0 ] ], [ [ -118.326670309637294, 33.901979687814347, 0.0 ], [ -118.326670236196094, 33.901962660722049, 0.0 ] ], [ [ -118.326670236196094, 33.901962660722049, 0.0 ], [ -118.326669533049596, 33.901799638735127, 0.0 ], [ -118.326657858455107, 33.901780379915188, 0.0 ], [ -118.326659221911399, 33.901075132150808, 0.0 ], [ -118.326670811289702, 33.901063372340317, 0.0 ], [ -118.326670733818702, 33.90098164673033, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1996", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.326604370329207, 33.92418407722716, 0.0 ], [ -118.326604939307899, 33.924128621478289, 0.0 ], [ -118.326596417706199, 33.924120611172633, 0.0 ], [ -118.3265926682013, 33.92388311413076, 0.0 ], [ -118.326600593291005, 33.923876382065252, 0.0 ], [ -118.326599735653801, 33.923807011905517, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1996", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.326240470399298, 33.94205866816047, 0.0 ], [ -118.326246935564697, 33.942058680509312, 0.0 ], [ -118.326278413937303, 33.94205873357626, 0.0 ] ], [ [ -118.325986867530005, 33.942058242080421, 0.0 ], [ -118.326176887408195, 33.942058562420449, 0.0 ], [ -118.3261801231167, 33.942058567875293, 0.0 ], [ -118.326214479513794, 33.94205866816047, 0.0 ] ], [ [ -118.326214479513794, 33.94205866816047, 0.0 ], [ -118.326240470399298, 33.94205866816047, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.676962908190802, 34.037242059950408, 0.0 ], [ -118.677168692982093, 34.037121365277187, 0.0 ], [ -118.677435340453499, 34.036946469210321, 0.0 ], [ -118.677680404772701, 34.036758070091693, 0.0 ], [ -118.677989061593706, 34.036506148451629, 0.0 ], [ -118.678340846278104, 34.036208117755422, 0.0 ], [ -118.678812077123197, 34.035807593232803, 0.0 ], [ -118.678993018356806, 34.035649142820887, 0.0 ], [ -118.679160531835606, 34.035530841516973, 0.0 ], [ -118.679317823572603, 34.035424047162607, 0.0 ], [ -118.679427284090906, 34.035354733207598, 0.0 ], [ -118.679584644890795, 34.035256525367338, 0.0 ], [ -118.679718124897207, 34.035181351109557, 0.0 ], [ -118.679841383505106, 34.035117683929869, 0.0 ], [ -118.679954420788505, 34.035065523859487, 0.0 ], [ -118.680074310777002, 34.03501046266512, 0.0 ], [ -118.680184002779697, 34.034969770892687, 0.0 ], [ -118.680303962287894, 34.034923296330611, 0.0 ], [ -118.680444503402995, 34.034870980819292, 0.0 ], [ -118.680471251282, 34.034862357311781, 0.0 ] ], [ [ -118.680471251282, 34.034862357311781, 0.0 ], [ -118.680588528946103, 34.034824370337333, 0.0 ], [ -118.680811489618904, 34.034760140091933, 0.0 ], [ -118.6810207723274, 34.034705146323923, 0.0 ], [ -118.681175204577002, 34.03466992610953, 0.0 ], [ -118.681343412152799, 34.034637490376667, 0.0 ], [ -118.681491084617605, 34.034616619994289, 0.0 ], [ -118.681797591550094, 34.034582357329057, 0.0 ], [ -118.681797501298703, 34.034571280194207, 0.0 ], [ -118.681804153950907, 34.034571242622903, 0.0 ], [ -118.681899388959906, 34.034523010715802, 0.0 ], [ -118.683916803616597, 34.034352629617288, 0.0 ], [ -118.683923728739202, 34.034407283523286, 0.0 ], [ -118.685157880189394, 34.034291312309939, 0.0 ], [ -118.685359579204103, 34.034270235207551, 0.0 ] ], [ [ -118.685359579204103, 34.034270235207551, 0.0 ], [ -118.6853628540822, 34.034269892990018, 0.0 ] ], [ [ -118.6853628540822, 34.034269892990018, 0.0 ], [ -118.686932905355405, 34.034105826092791, 0.0 ], [ -118.686963993208295, 34.034117117968023, 0.0 ], [ -118.688246222462197, 34.034041002753128, 0.0 ], [ -118.688514268212501, 34.033970661866057, 0.0 ], [ -118.688566465872597, 34.033935911158153, 0.0 ], [ -118.689828026722296, 34.033820207974188, 0.0 ], [ -118.689832020682204, 34.033847484626769, 0.0 ], [ -118.689913928346002, 34.033839171741228, 0.0 ] ], [ [ -118.689913928346002, 34.033839171741228, 0.0 ], [ -118.690045367900396, 34.033825831684332, 0.0 ] ], [ [ -118.690045367900396, 34.033825831684332, 0.0 ], [ -118.690053558663294, 34.033825000383793, 0.0 ], [ -118.690054745453907, 34.033833184530742, 0.0 ], [ -118.690205493028799, 34.033818147176113, 0.0 ], [ -118.690201339211796, 34.033789502667219, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.664398834429704, 34.039772555997828, 0.0 ], [ -118.664412634962105, 34.039772676556069, 0.0 ], [ -118.664412668609501, 34.039772676849957, 0.0 ], [ -118.664618035225601, 34.039774470885042, 0.0 ], [ -118.665405545342907, 34.039761449984319, 0.0 ], [ -118.666194759719104, 34.039720582206357, 0.0 ], [ -118.667659645179597, 34.039640809056323, 0.0 ], [ -118.668857970614496, 34.039574684264792, 0.0 ], [ -118.669677189213999, 34.039529874056647, 0.0 ], [ -118.670785003237896, 34.039463487923818, 0.0 ], [ -118.671457297428702, 34.039378942451911, 0.0 ], [ -118.672132415043393, 34.039258416557331, 0.0 ], [ -118.672813801401901, 34.039093387042271, 0.0 ], [ -118.673501853984803, 34.038882249915851, 0.0 ], [ -118.673547838914402, 34.038864073285289, 0.0 ] ], [ [ -118.661959557205506, 34.039622285370733, 0.0 ], [ -118.662702335488405, 34.039690340182077, 0.0 ], [ -118.664043729949498, 34.0397694538877, 0.0 ], [ -118.664398834429704, 34.039772555997828, 0.0 ] ], [ [ -118.660060165653604, 34.039448259369948, 0.0 ], [ -118.661959557205506, 34.039622285370733, 0.0 ] ], [ [ -118.659150407216302, 34.039365141059882, 0.0 ], [ -118.659150454803907, 34.039365145360357, 0.0 ], [ -118.659338708780695, 34.039382158068243, 0.0 ], [ -118.660060165653604, 34.039448259369948, 0.0 ] ], [ [ -118.657922489852098, 34.039254172889507, 0.0 ], [ -118.659150407216302, 34.039365141059882, 0.0 ] ], [ [ -118.655923695754595, 34.039082231454657, 0.0 ], [ -118.656934768439896, 34.039164911477371, 0.0 ], [ -118.657922489852098, 34.039254172889507, 0.0 ] ], [ [ -118.654592320511497, 34.038943927801732, 0.0 ], [ -118.654689241476703, 34.038958058184562, 0.0 ], [ -118.655679067548405, 34.039062227090938, 0.0 ], [ -118.655923695754595, 34.039082231454657, 0.0 ] ], [ [ -118.653660283220503, 34.038799975302851, 0.0 ], [ -118.654120189707797, 34.038875094510217, 0.0 ], [ -118.654416106248405, 34.038918237023509, 0.0 ], [ -118.654592291735298, 34.038943923606368, 0.0 ], [ -118.654592320511497, 34.038943927801732, 0.0 ] ], [ [ -118.673547838914402, 34.038864073285289, 0.0 ], [ -118.674052017164001, 34.038664784912569, 0.0 ] ], [ [ -118.6524127331448, 34.03859421139969, 0.0 ], [ -118.653201842666604, 34.038725095534858, 0.0 ], [ -118.653660283220503, 34.038799975302851, 0.0 ] ], [ [ -118.674052017164001, 34.038664784912569, 0.0 ], [ -118.674135430091397, 34.03863212263704, 0.0 ], [ -118.674139985218403, 34.038630507305783, 0.0 ], [ -118.674203756329504, 34.038607892902903, 0.0 ], [ -118.674209829766596, 34.038605739146213, 0.0 ], [ -118.675604171171599, 34.038071122745698, 0.0 ], [ -118.675991529415995, 34.037925833760703, 0.0 ], [ -118.6763102848834, 34.037800964742772, 0.0 ], [ -118.6765124426488, 34.03771395967398, 0.0 ], [ -118.676687164137604, 34.037635695288849, 0.0 ], [ -118.676848155815193, 34.037560370035983, 0.0 ], [ -118.677023164534404, 34.037469408157307, 0.0 ] ], [ [ -118.650350404191798, 34.038259007724683, 0.0 ], [ -118.651276307104695, 34.038405720277417, 0.0 ], [ -118.6524127331448, 34.03859421139969, 0.0 ] ], [ [ -118.647099906050798, 34.038470268067726, 0.0 ], [ -118.647131768933903, 34.038464690970393, 0.0 ], [ -118.647372239000205, 34.038407103916583, 0.0 ], [ -118.647609477661405, 34.038341616813803, 0.0 ], [ -118.647848754242602, 34.038266442096152, 0.0 ], [ -118.648284046887795, 34.038124240419442, 0.0 ], [ -118.648473832543999, 34.038071321570541, 0.0 ], [ -118.648718554223805, 34.038017227613423, 0.0 ], [ -118.648907730952601, 34.037986110896057, 0.0 ], [ -118.648915443171902, 34.037967979056347, 0.0 ], [ -118.649111721805298, 34.037946017967407, 0.0 ], [ -118.649144584223706, 34.037964425654458, 0.0 ], [ -118.649325540553207, 34.0379569148771, 0.0 ], [ -118.649568423992903, 34.037964062953748, 0.0 ], [ -118.649795116916394, 34.03797918898394, 0.0 ], [ -118.649980800912601, 34.038002624766932, 0.0 ], [ -118.650370872645993, 34.038063742098927, 0.0 ] ], [ [ -118.650370872645993, 34.038063742098927, 0.0 ], [ -118.650327547295205, 34.038255385969578, 0.0 ], [ -118.650350404191798, 34.038259007724683, 0.0 ] ], [ [ -118.677023164534404, 34.037469408157307, 0.0 ], [ -118.677030177419994, 34.037465851494623, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.622556489165504, 34.038142453967509, 0.0 ], [ -118.622576769778803, 34.038144964620798, 0.0 ], [ -118.622616651122499, 34.038148572634761, 0.0 ], [ -118.622723477944106, 34.038155542925509, 0.0 ], [ -118.622834648146195, 34.038161381297783, 0.0 ], [ -118.622944711322305, 34.038166309309013, 0.0 ], [ -118.623126566604299, 34.038171210216809, 0.0 ], [ -118.623487955023805, 34.038164519833003, 0.0 ], [ -118.623734779391796, 34.038156393928134, 0.0 ], [ -118.623958909613506, 34.038139820982039, 0.0 ], [ -118.624146008450495, 34.038123439056633, 0.0 ], [ -118.624259044637498, 34.038107439795148, 0.0 ], [ -118.624425480945604, 34.038079174919908, 0.0 ], [ -118.624600069606203, 34.038040591057573, 0.0 ], [ -118.624766377791104, 34.03799519873462, 0.0 ], [ -118.624869012126496, 34.037963837849851, 0.0 ], [ -118.624955213652797, 34.037935987465218, 0.0 ], [ -118.625055777762896, 34.037902924372951, 0.0 ], [ -118.625139909081, 34.037873371809518, 0.0 ], [ -118.625248625407295, 34.037829989762237, 0.0 ], [ -118.625381926649496, 34.037772778164737, 0.0 ], [ -118.625582887606498, 34.037684386116581, 0.0 ], [ -118.625708108771505, 34.037625451567223, 0.0 ], [ -118.625810932873804, 34.037581982532728, 0.0 ], [ -118.625908970767298, 34.037545674998348, 0.0 ], [ -118.625995158703901, 34.037516111174043, 0.0 ], [ -118.626093677435094, 34.037484770582161, 0.0 ], [ -118.626208628678299, 34.037449919154447, 0.0 ], [ -118.626785448401606, 34.037309498771343, 0.0 ] ], [ [ -118.622517650708204, 34.038137645932302, 0.0 ], [ -118.622556489165504, 34.038142453967509, 0.0 ] ], [ [ -118.606886184197293, 34.038140243935963, 0.0 ], [ -118.606951008175102, 34.038108600632967, 0.0 ], [ -118.607043507263398, 34.038062337130697, 0.0 ], [ -118.607111980430702, 34.038021919178718, 0.0 ], [ -118.607180432763002, 34.037978638887452, 0.0 ], [ -118.607259178822204, 34.037932444380189, 0.0 ], [ -118.607330986096798, 34.037877697509593, 0.0 ], [ -118.607416462909896, 34.037811432207988, 0.0 ], [ -118.607717235447595, 34.037563751873137, 0.0 ], [ -118.607855165831097, 34.037458671516127, 0.0 ], [ -118.607997768089803, 34.037355475407153, 0.0 ], [ -118.608135799352198, 34.03726657125403, 0.0 ], [ -118.608247836275197, 34.037201535989581, 0.0 ], [ -118.608255274405096, 34.037197218291901, 0.0 ], [ -118.608335447823293, 34.037153656170268, 0.0 ], [ -118.608343425213803, 34.037149321660358, 0.0 ] ], [ [ -118.608343425213803, 34.037149321660358, 0.0 ], [ -118.6083468447071, 34.037147463680547, 0.0 ], [ -118.608407291491105, 34.037116222721849, 0.0 ], [ -118.608450860923796, 34.037095051897268, 0.0 ], [ -118.608550240414303, 34.037047852157443, 0.0 ], [ -118.608646541313803, 34.037005856618833, 0.0 ], [ -118.608780180095494, 34.036955889596108, 0.0 ], [ -118.608909182151507, 34.036911134574382, 0.0 ], [ -118.609086340869595, 34.036854555126858, 0.0 ], [ -118.609209884868804, 34.036822445363768, 0.0 ], [ -118.609333407931004, 34.036787473174343, 0.0 ], [ -118.609494729589798, 34.036749447647779, 0.0 ], [ -118.609662969086997, 34.03671711178383, 0.0 ], [ -118.609793493227798, 34.036699278201063, 0.0 ], [ -118.609951585004694, 34.03668989242702, 0.0 ], [ -118.610099424938596, 34.03668914546553, 0.0 ], [ -118.610243847605403, 34.036691278000283, 0.0 ], [ -118.610402106347195, 34.03670479003425, 0.0 ], [ -118.610553551514002, 34.036726923532527, 0.0 ], [ -118.610711873041396, 34.03674902205961, 0.0 ], [ -118.6108702050999, 34.036772551528912, 0.0 ], [ -118.611028599948298, 34.036804667689474, 0.0 ], [ -118.611025214056198, 34.036811840838233, 0.0 ], [ -118.611131984617202, 34.036837062098073, 0.0 ], [ -118.611149143979702, 34.036832681634003, 0.0 ], [ -118.611479833234796, 34.036916879462993, 0.0 ], [ -118.611731299224601, 34.036981440970649, 0.0 ], [ -118.611858699118599, 34.037006557067691, 0.0 ], [ -118.611972304617296, 34.037026018138647, 0.0 ], [ -118.612048006753795, 34.037034221627572, 0.0 ], [ -118.612116853538595, 34.03704532223005, 0.0 ], [ -118.612185658461797, 34.037050698194442, 0.0 ], [ -118.612278551405097, 34.037058814373893, 0.0 ], [ -118.612433289223603, 34.037060891983288, 0.0 ], [ -118.612928588961793, 34.037067005072849, 0.0 ], [ -118.613382772899499, 34.03707304719709, 0.0 ], [ -118.613678110337105, 34.037083195367202, 0.0 ], [ -118.613884483531393, 34.037093595875213, 0.0 ], [ -118.614067381500902, 34.037109872938913, 0.0 ], [ -118.614239394271294, 34.037123309997497, 0.0 ], [ -118.615051450974605, 34.037207910618413, 0.0 ], [ -118.615950356625603, 34.03731020976943, 0.0 ], [ -118.615950093266505, 34.037312696689142, 0.0 ], [ -118.615960015781198, 34.037313771612652, 0.0 ], [ -118.615960223154303, 34.037311331876197, 0.0 ], [ -118.616258139224399, 34.037345641471369, 0.0 ], [ -118.616257707917597, 34.037348269942129, 0.0 ], [ -118.616267179793596, 34.037349347140527, 0.0 ], [ -118.6162676110999, 34.037346718669767, 0.0 ], [ -118.618086527572203, 34.037547349923337, 0.0 ], [ -118.618771295146999, 34.0376211274938, 0.0 ], [ -118.619669485273803, 34.03772815490801, 0.0 ], [ -118.620326877582798, 34.037819238609828, 0.0 ], [ -118.620963642207499, 34.037910424830727, 0.0 ], [ -118.622182143248494, 34.038090208391573, 0.0 ], [ -118.622387644360998, 34.038121551701707, 0.0 ], [ -118.622517650708204, 34.038137645932302, 0.0 ] ], [ [ -118.626785448401606, 34.037309498771343, 0.0 ], [ -118.626826420905601, 34.037301567001251, 0.0 ], [ -118.626926514898003, 34.037279544269133, 0.0 ], [ -118.627019237945206, 34.037264750732461, 0.0 ], [ -118.627136006610101, 34.037246969821027, 0.0 ], [ -118.6272734256208, 34.037231943921149, 0.0 ], [ -118.627407449347302, 34.037222660324737, 0.0 ], [ -118.627544954130599, 34.037219083303221, 0.0 ], [ -118.627672165904102, 34.037218422043303, 0.0 ], [ -118.627816589930006, 34.03722053355834, 0.0 ], [ -118.628335923418604, 34.037240731265683, 0.0 ], [ -118.628494143122595, 34.037248494992298, 0.0 ], [ -118.628638653232102, 34.037262054710453, 0.0 ], [ -118.628810668653401, 34.037275471009927, 0.0 ], [ -118.628993020120603, 34.037291695627303, 0.0 ], [ -118.630263015652503, 34.037459679763693, 0.0 ], [ -118.630436890272804, 34.037482230856327, 0.0 ], [ -118.630562416425903, 34.037495327814398, 0.0 ], [ -118.630682860125603, 34.037509010775729, 0.0 ], [ -118.630810180200399, 34.037522657691007, 0.0 ], [ -118.630944355071804, 34.037533406242183, 0.0 ], [ -118.631064712545594, 34.037535639637689, 0.0 ], [ -118.6312263496376, 34.037540519517577, 0.0 ], [ -118.631401696228494, 34.037539602669909, 0.0 ], [ -118.631527337990406, 34.037536742846612, 0.0 ], [ -118.631644365629597, 34.037527529124347, 0.0 ], [ -118.631797521703305, 34.037513825470008, 0.0 ], [ -118.631940324382498, 34.037497308631437, 0.0 ], [ -118.632114577583593, 34.037470189909847, 0.0 ], [ -118.632867817092205, 34.037355050916311, 0.0 ] ], [ [ -118.632867817092205, 34.037355050916311, 0.0 ], [ -118.633586301358207, 34.037254798408732, 0.0 ], [ -118.634099879358203, 34.037177331925307, 0.0 ], [ -118.634331548455293, 34.037140150463763, 0.0 ], [ -118.634464543677495, 34.037112979394642, 0.0 ], [ -118.634581808281993, 34.037085808327802, 0.0 ], [ -118.634713349145798, 34.037049839832257, 0.0 ], [ -118.635048441879505, 34.03695776159595, 0.0 ], [ -118.6352323518053, 34.03691235282632, 0.0 ], [ -118.635340902491194, 34.036894096948231, 0.0 ], [ -118.635459125695704, 34.03687812083944, 0.0 ], [ -118.635591927099597, 34.036865140251123, 0.0 ], [ -118.635715342539498, 34.036855554585891, 0.0 ], [ -118.635773598428997, 34.036853313974802, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.583422864248206, 34.038904056835399, 0.0 ], [ -118.583996102971597, 34.038733300778297, 0.0 ], [ -118.584133641135594, 34.03870109655746, 0.0 ], [ -118.584263112025894, 34.038676936271877, 0.0 ], [ -118.584400257437494, 34.038658232381728, 0.0 ], [ -118.584517340724901, 34.038647081778052, 0.0 ], [ -118.584615364401003, 34.038637120823353, 0.0 ], [ -118.584742740610196, 34.038629336071907, 0.0 ], [ -118.584863248928301, 34.038624451625942, 0.0 ], [ -118.585118141574796, 34.038628950988219, 0.0 ], [ -118.585273189671, 34.038638234602978, 0.0 ], [ -118.585436877775805, 34.038651776883803, 0.0 ], [ -118.585597202236599, 34.038676803944057, 0.0 ], [ -118.585714223121599, 34.038695667228033, 0.0 ], [ -118.585820988454103, 34.038720910872357, 0.0 ], [ -118.5859863239817, 34.038763044588173, 0.0 ], [ -118.586182510152398, 34.038814351463273, 0.0 ], [ -118.5871486011889, 34.039061440050737, 0.0 ], [ -118.587784376187599, 34.039223738651103, 0.0 ], [ -118.587922107157794, 34.039251692097302, 0.0 ], [ -118.588032292000193, 34.039274054741199, 0.0 ], [ -118.588132121917397, 34.039290742920592, 0.0 ], [ -118.588242226381496, 34.03930165615747, 0.0 ], [ -118.588355641066798, 34.039304109520579, 0.0 ], [ -118.588881901960804, 34.03932143722637, 0.0 ], [ -118.589053854780104, 34.039326323255629, 0.0 ], [ -118.589225827774598, 34.039334071343653, 0.0 ], [ -118.589342788781806, 34.039342087715212, 0.0 ], [ -118.589452873308403, 34.039350137544368, 0.0 ], [ -118.589549245181303, 34.039363979033851, 0.0 ], [ -118.589635302328205, 34.039377870818448, 0.0 ], [ -118.589669543661998, 34.039357666782323, 0.0 ], [ -118.589745265892503, 34.039368746559141, 0.0 ], [ -118.589759240808604, 34.039400164723489, 0.0 ], [ -118.590323942266494, 34.039514763619827, 0.0 ], [ -118.5916669271665, 34.039800155145358, 0.0 ], [ -118.591773634976605, 34.039816806617281, 0.0 ], [ -118.591884839539205, 34.039829789612519, 0.0 ], [ -118.591977908716302, 34.039840802032813, 0.0 ], [ -118.592093343646994, 34.0398488375304, 0.0 ], [ -118.592189796003694, 34.039851231676963, 0.0 ], [ -118.592293097406795, 34.039854333176223, 0.0 ], [ -118.592403061307394, 34.039845206496167, 0.0 ], [ -118.592513025184104, 34.039836079716032, 0.0 ], [ -118.592939700674194, 34.039782100096701, 0.0 ], [ -118.593090208346396, 34.039770273082652, 0.0 ], [ -118.593213925120196, 34.039761078107666, 0.0 ], [ -118.593341141021995, 34.039760453019049, 0.0 ], [ -118.593464959254902, 34.039765569302169, 0.0 ], [ -118.593575024431104, 34.039770753070258, 0.0 ], [ -118.593685089620905, 34.039775936737882, 0.0 ], [ -118.593819283639803, 34.03978958884872, 0.0 ], [ -118.593977586222707, 34.039808847019138, 0.0 ], [ -118.594586607343302, 34.039868822331847, 0.0 ], [ -118.594714103977097, 34.03987802502958, 0.0 ], [ -118.594829518840498, 34.039883190838957, 0.0 ], [ -118.594920795118, 34.039884174716221, 0.0 ], [ -118.595019931345405, 34.039880999691768, 0.0 ], [ -118.595141109364505, 34.039868753097039, 0.0 ], [ -118.595261516880399, 34.039849522905158, 0.0 ], [ -118.595375005739399, 34.039826025951172, 0.0 ], [ -118.595490196130399, 34.039799653323342, 0.0 ], [ -118.595589951085998, 34.039775142757193, 0.0 ], [ -118.595710025554695, 34.039737339157668, 0.0 ], [ -118.596077084053306, 34.039618169089849, 0.0 ], [ -118.596200616730002, 34.039583210331237, 0.0 ], [ -118.596310457462806, 34.03955690627739, 0.0 ], [ -118.5964477633825, 34.039524741645153, 0.0 ], [ -118.596591986522697, 34.039498267484809, 0.0 ], [ -118.596750003416801, 34.039477449785117, 0.0 ], [ -118.596918355413806, 34.039459443187752, 0.0 ], [ -118.597084014362395, 34.039444854029348, 0.0 ], [ -118.5974404344486, 34.039428069054622, 0.0 ] ], [ [ -118.5974404344486, 34.039428069054622, 0.0 ], [ -118.5974397932861, 34.039418530882287, 0.0 ] ], [ [ -118.5974397932861, 34.039418530882287, 0.0 ], [ -118.597506825588098, 34.039416290912307, 0.0 ], [ -118.597507466758302, 34.039425829084287, 0.0 ] ], [ [ -118.597507466758302, 34.039425829084287, 0.0 ], [ -118.598457754053996, 34.039380709286227, 0.0 ], [ -118.599485677266898, 34.039332488395232, 0.0 ], [ -118.599735070504494, 34.03931846148128, 0.0 ], [ -118.600425382537196, 34.039286358854767, 0.0 ], [ -118.600758355219497, 34.039273083931732, 0.0 ], [ -118.601112453432705, 34.039265596756238, 0.0 ], [ -118.601638525584804, 34.039265838950868, 0.0 ], [ -118.602037465029596, 34.039278162444731, 0.0 ], [ -118.602412378079094, 34.039296329306509, 0.0 ], [ -118.602697876243994, 34.03931207896197, 0.0 ], [ -118.602852700475594, 34.039325618055663, 0.0 ], [ -118.6030143806273, 34.039336260306527, 0.0 ], [ -118.603120986950998, 34.039338590242778, 0.0 ] ], [ [ -118.583304238821796, 34.03893925909027, 0.0 ], [ -118.583422864248206, 34.038904056835399, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.5677458370821, 34.041768053305432, 0.0 ], [ -118.569387240228096, 34.041976790296843, 0.0 ], [ -118.569524891654197, 34.041993315502843, 0.0 ], [ -118.569631558881198, 34.042004261929797, 0.0 ], [ -118.569745083376603, 34.042012313507172, 0.0 ], [ -118.569865484624003, 34.042020332522661, 0.0 ], [ -118.570064948798105, 34.042025115771139, 0.0 ], [ -118.570315929949203, 34.042021068172957, 0.0 ], [ -118.570467218009597, 34.042020353498962, 0.0 ], [ -118.570628782122995, 34.042013865273518, 0.0 ], [ -118.570790307161005, 34.042001652217643, 0.0 ], [ -118.5709243252428, 34.041989569010838, 0.0 ], [ -118.571051447025695, 34.041974655871243, 0.0 ], [ -118.571181968048606, 34.041954001718651, 0.0 ], [ -118.5712918783818, 34.041936307343157, 0.0 ], [ -118.571394911947294, 34.041918645410092, 0.0 ], [ -118.571504783090006, 34.041895226226742, 0.0 ], [ -118.571614634617802, 34.041868944636512, 0.0 ], [ -118.571721047719095, 34.041842679226868, 0.0 ], [ -118.571823983276403, 34.041810705393047, 0.0 ], [ -118.571954366898396, 34.041770014257182, 0.0 ], [ -118.572074435335395, 34.04172937185254, 0.0 ], [ -118.572338522836603, 34.041630798760544, 0.0 ], [ -118.572688333248294, 34.041497469740989, 0.0 ], [ -118.572852942610794, 34.041433716096748, 0.0 ], [ -118.573031265870199, 34.041364172344672, 0.0 ], [ -118.573188998039399, 34.041300450877962, 0.0 ], [ -118.573291814705499, 34.041251301953963, 0.0 ], [ -118.573521496358097, 34.041150027217228, 0.0 ], [ -118.573524875831197, 34.041141423965797, 0.0 ], [ -118.573637987460899, 34.041089363444947, 0.0 ], [ -118.573747640999798, 34.041034456849921, 0.0 ], [ -118.573843541108602, 34.040979615519767, 0.0 ], [ -118.573939441091696, 34.040924774113712, 0.0 ], [ -118.574045636263904, 34.040867021285671, 0.0 ], [ -118.574134659356204, 34.040812212417897, 0.0 ], [ -118.574216844991398, 34.040763160800658, 0.0 ], [ -118.574312705191005, 34.04070259448585, 0.0 ], [ -118.574408565252, 34.04064202809527, 0.0 ], [ -118.574524937088995, 34.040564189630707, 0.0 ], [ -118.574661859887598, 34.040474803645857, 0.0 ], [ -118.575089778632105, 34.040200838269278, 0.0 ], [ -118.575165106206697, 34.040154681066937, 0.0 ], [ -118.575237034766204, 34.040114264810477, 0.0 ], [ -118.575322657353396, 34.040065196061768, 0.0 ], [ -118.575408299522806, 34.040018989558433, 0.0 ], [ -118.575500877214694, 34.039981337136929, 0.0 ], [ -118.575596932480195, 34.039949392865658, 0.0 ], [ -118.5757135582584, 34.039908763236959, 0.0 ], [ -118.575816509607705, 34.039879648308691, 0.0 ], [ -118.575909185460503, 34.039856307104237, 0.0 ], [ -118.576001900667407, 34.039838690440668, 0.0 ], [ -118.5760911972678, 34.039823952416789, 0.0 ], [ -118.5761908283651, 34.039812027410008, 0.0 ], [ -118.576290479146806, 34.039802964626958, 0.0 ], [ -118.576407360702106, 34.039799544305339, 0.0 ], [ -118.576520843416802, 34.039801864899367, 0.0 ], [ -118.576644660680799, 34.039806998431132, 0.0 ], [ -118.576775374235396, 34.039814961293217, 0.0 ], [ -118.576892374187807, 34.039828714337048, 0.0 ], [ -118.577016270464796, 34.039845296711043, 0.0 ], [ -118.577391516369403, 34.039912200462979, 0.0 ], [ -118.577529185734704, 34.039931578848041, 0.0 ], [ -118.577666835403903, 34.039948094770423, 0.0 ], [ -118.577801027083794, 34.039961764683831, 0.0 ], [ -118.577969386954607, 34.039971618671657, 0.0 ], [ -118.578120905673799, 34.039977407911422, 0.0 ], [ -118.579379015998995, 34.039965542338983, 0.0 ], [ -118.579379276257797, 34.039965651398937, 0.0 ], [ -118.579412568954098, 34.039965491639251, 0.0 ], [ -118.579412926481794, 34.039965489923588, 0.0 ] ], [ [ -118.564581453632101, 34.041310211664701, 0.0 ], [ -118.564664480511794, 34.041307848269142, 0.0 ], [ -118.564774449331907, 34.041298746750847, 0.0 ], [ -118.564850092732996, 34.041298392909127, 0.0 ], [ -118.564850341952294, 34.041336928479701, 0.0 ], [ -118.564942014872301, 34.041334114253893, 0.0 ], [ -118.565019377483594, 34.041333752257302, 0.0 ], [ -118.565102502876002, 34.041338133903743, 0.0 ], [ -118.565205717475806, 34.041347192119517, 0.0 ], [ -118.565314732239401, 34.041364915960159, 0.0 ], [ -118.565438628495798, 34.041381510215288, 0.0 ], [ -118.565559144499204, 34.041406707371969, 0.0 ], [ -118.565672764541702, 34.041429074317257, 0.0 ], [ -118.565758858551902, 34.041448707736237, 0.0 ], [ -118.565786287875696, 34.041437129616369, 0.0 ], [ -118.566333817245095, 34.041557645892489, 0.0 ], [ -118.566475002613302, 34.041588469986969, 0.0 ], [ -118.566602376543003, 34.041610771532582, 0.0 ], [ -118.566736627240303, 34.041633040667122, 0.0 ], [ -118.566905300299894, 34.041660872839479, 0.0 ], [ -118.567211623967196, 34.041705232619329, 0.0 ], [ -118.567274183171904, 34.041706221079082, 0.0 ], [ -118.5677458370821, 34.041768053305432, 0.0 ] ], [ [ -118.579412926481794, 34.039965489923588, 0.0 ], [ -118.579417097324594, 34.039965469909284, 0.0 ], [ -118.579633728713205, 34.039967292545597, 0.0 ], [ -118.579740295525298, 34.039963918514459, 0.0 ], [ -118.579857117659898, 34.039951907937208, 0.0 ], [ -118.579963605089603, 34.03993708448742, 0.0 ], [ -118.580070052797396, 34.039916536333237, 0.0 ], [ -118.5801661856256, 34.039896037648383, 0.0 ], [ -118.580265736832899, 34.039872660058073, 0.0 ], [ -118.580368666701403, 34.039840678943271, 0.0 ], [ -118.580669083983807, 34.039749588120912, 0.0 ], [ -118.581070330685804, 34.039621875364901, 0.0 ] ], [ [ -118.581070330685804, 34.039621875364901, 0.0 ], [ -118.582922195197298, 34.039066067087973, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552690692735993, 34.042331567476552, 0.0 ], [ -118.553610102391303, 34.041959197795698, 0.0 ], [ -118.554063040950297, 34.041903813034317, 0.0 ], [ -118.554060635736207, 34.041894129573492, 0.0 ], [ -118.554031405261298, 34.041821186635318, 0.0 ] ], [ [ -118.554031405261298, 34.041821186635318, 0.0 ], [ -118.553990939789401, 34.041735128044657, 0.0 ], [ -118.553901280878904, 34.041583140736677, 0.0 ], [ -118.553912450273899, 34.04155394940689, 0.0 ], [ -118.553774901289003, 34.041303897166017, 0.0 ], [ -118.553740025416005, 34.041229634802043, 0.0 ], [ -118.553718959758299, 34.041163896286889, 0.0 ], [ -118.553701389285294, 34.041106728930252, 0.0 ], [ -118.553690676552904, 34.041046667727592, 0.0 ], [ -118.553686783667601, 34.040977988061513, 0.0 ], [ -118.5536862912316, 34.040903568009277, 0.0 ], [ -118.553689256055705, 34.040831994500039, 0.0 ], [ -118.553695640250993, 34.040757542914342, 0.0 ], [ -118.553712396196602, 34.040691630954967, 0.0 ], [ -118.553729133174699, 34.040622856683889, 0.0 ], [ -118.553756147164606, 34.040548310485242, 0.0 ], [ -118.553783180049706, 34.040476626590539, 0.0 ], [ -118.553820546737896, 34.040407757687959, 0.0 ], [ -118.553867193448596, 34.040339293446003, 0.0 ], [ -118.554109162500197, 34.040092597910558, 0.0 ], [ -118.554381418067095, 34.039833993247598, 0.0 ], [ -118.554386492343795, 34.039829487635473, 0.0 ] ], [ [ -118.554386492343795, 34.039829487635473, 0.0 ], [ -118.554641374443193, 34.039603168794557, 0.0 ], [ -118.554644555793004, 34.039605327567529, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.535771020836904, 34.048948399955641, 0.0 ], [ -118.535771981661995, 34.048965352633061, 0.0 ], [ -118.535912408781499, 34.048967114818581, 0.0 ], [ -118.536115877960199, 34.048968596965949, 0.0 ], [ -118.536207560204602, 34.048965804554477, 0.0 ], [ -118.536293450191096, 34.048953496482532, 0.0 ], [ -118.536401966839904, 34.048936855674029, 0.0 ], [ -118.538343478000897, 34.048531252827082, 0.0 ], [ -118.538388605854195, 34.048521710476891, 0.0 ], [ -118.538453903139001, 34.048515694538537, 0.0 ], [ -118.538541996870904, 34.048513246801051, 0.0 ], [ -118.538541826438404, 34.048501657419642, 0.0 ], [ -118.538620915914706, 34.048506908729948, 0.0 ], [ -118.538697430901394, 34.048519978862039, 0.0 ], [ -118.538817174494994, 34.048554965406623, 0.0 ], [ -118.538926838974007, 34.04859525289509, 0.0 ], [ -118.539221647969498, 34.048732578172803, 0.0 ], [ -118.539425628895998, 34.048826221131982, 0.0 ], [ -118.539509821282607, 34.048853621630663, 0.0 ], [ -118.539584120625094, 34.048874173752417, 0.0 ], [ -118.539671720783105, 34.048890956598207, 0.0 ], [ -118.540010919945303, 34.048935238584647, 0.0 ], [ -118.540117573678998, 34.048943348774571, 0.0 ], [ -118.540227629126406, 34.048945718860807, 0.0 ], [ -118.540310138368994, 34.048942487312232, 0.0 ], [ -118.540396049286201, 34.048933515692859, 0.0 ], [ -118.540475045896898, 34.048918850168228, 0.0 ], [ -118.540557425655805, 34.048895582260307, 0.0 ], [ -118.540639749883098, 34.048863727357592, 0.0 ], [ -118.540715178248703, 34.048829040881223, 0.0 ], [ -118.540814026620893, 34.048777107640909, 0.0 ], [ -118.540949124006602, 34.048709900267333, 0.0 ], [ -118.540957358639901, 34.048720737212577, 0.0 ], [ -118.5409899368683, 34.048708358197302, 0.0 ], [ -118.541022515086894, 34.048695979173438, 0.0 ], [ -118.541060109376204, 34.048686260763773, 0.0 ], [ -118.543829661605599, 34.048142391647467, 0.0 ], [ -118.544821077649004, 34.048095916977907, 0.0 ], [ -118.544920833116706, 34.048075396683132, 0.0 ], [ -118.545017013452807, 34.048034822273699, 0.0 ], [ -118.5450872273709, 34.047987876905147, 0.0 ], [ -118.545162447954993, 34.047921702219853, 0.0 ], [ -118.545222553360603, 34.047861864375292, 0.0 ], [ -118.545936969596696, 34.047137894783823, 0.0 ] ], [ [ -118.545936969596696, 34.047137894783823, 0.0 ], [ -118.545989156765401, 34.047085009755101, 0.0 ], [ -118.546052363465904, 34.04702119659207, 0.0 ] ], [ [ -118.546052363465904, 34.04702119659207, 0.0 ], [ -118.547341939465497, 34.045719247229627, 0.0 ], [ -118.547379763200496, 34.045719075775139, 0.0 ], [ -118.548533971883302, 34.044548983316851, 0.0 ], [ -118.548530813830297, 34.044534545112057, 0.0 ], [ -118.548705849548597, 34.044332372858293, 0.0 ], [ -118.548746813230196, 34.044276276946412, 0.0 ], [ -118.548772974252103, 34.044232893187221, 0.0 ], [ -118.548794411373294, 34.04418144411278, 0.0 ], [ -118.548814709800695, 34.044125442100153, 0.0 ], [ -118.548828101026004, 34.044066604311993, 0.0 ], [ -118.548832891180496, 34.04400923920069, 0.0 ], [ -118.548836976860997, 34.043950411506422, 0.0 ], [ -118.548827715805004, 34.043849077067698, 0.0 ], [ -118.548814101962805, 34.043739413757713, 0.0 ], [ -118.548810469992404, 34.043622549087956, 0.0 ], [ -118.548808262888898, 34.043504485277431, 0.0 ], [ -118.548815982840594, 34.04337087170191, 0.0 ], [ -118.548830889609604, 34.043240803452939, 0.0 ], [ -118.548854494067896, 34.043126200315562, 0.0 ], [ -118.548875413056905, 34.043039040677023, 0.0 ], [ -118.548903377995302, 34.042933959027948, 0.0 ], [ -118.548935695995695, 34.042829579413237, 0.0 ], [ -118.548980758528202, 34.042717734860503, 0.0 ], [ -118.549024506008607, 34.042616159421158, 0.0 ], [ -118.5490638814709, 34.042539688459037, 0.0 ], [ -118.549109417088104, 34.042455956186402, 0.0 ], [ -118.549150518117997, 34.042387787357498, 0.0 ], [ -118.5491959014023, 34.042317213706497, 0.0 ], [ -118.549252683243594, 34.042237046867527, 0.0 ], [ -118.549309698034605, 34.042161815623167, 0.0 ], [ -118.549621513089207, 34.041781273348597, 0.0 ], [ -118.549703705114396, 34.041755530991402, 0.0 ], [ -118.549798420718702, 34.041641628505722, 0.0 ], [ -118.549886535892597, 34.04159902959811, 0.0 ], [ -118.549880500442896, 34.041587433025533, 0.0 ], [ -118.550611116593501, 34.041359810007847, 0.0 ], [ -118.550673034426694, 34.041348058967358, 0.0 ], [ -118.550734517854096, 34.04133580457777, 0.0 ], [ -118.550817019186795, 34.041332565851249, 0.0 ], [ -118.550889224336302, 34.041332236440788, 0.0 ], [ -118.550975258235695, 34.041343293469843, 0.0 ], [ -118.551054434325096, 34.041357244131902, 0.0 ], [ -118.551133648146106, 34.041376919362349, 0.0 ], [ -118.5512129185704, 34.041405181471319, 0.0 ], [ -118.551292245622307, 34.041442030458747, 0.0 ], [ -118.551357819358699, 34.041478942197287, 0.0 ], [ -118.551413096971402, 34.041518763317292, 0.0 ], [ -118.551468431229097, 34.041567171342521, 0.0 ], [ -118.5515156756625, 34.04161529055709, 0.0 ], [ -118.551572317567107, 34.04167833028157, 0.0 ], [ -118.551612787938197, 34.041735510065038, 0.0 ], [ -118.551649020886202, 34.04179855578257, 0.0 ], [ -118.551671146829705, 34.041845564965797, 0.0 ], [ -118.551690236080404, 34.041896220227848, 0.0 ], [ -118.551704097946896, 34.041944798005382, 0.0 ], [ -118.551715403831494, 34.04199826496076, 0.0 ], [ -118.5517217769669, 34.042076516425993, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.492932285467901, 34.048089696385787, 0.0 ], [ -118.493011077421002, 34.048059245809966, 0.0 ], [ -118.493138269568107, 34.048004137406693, 0.0 ], [ -118.493298161388395, 34.047933731668408, 0.0 ], [ -118.493439854598293, 34.047866432809492, 0.0 ], [ -118.493557990955694, 34.047806210491991, 0.0 ], [ -118.493773995124997, 34.047689168923313, 0.0 ], [ -118.493955530369306, 34.047582281116867, 0.0 ], [ -118.494126117554799, 34.047472405112863, 0.0 ], [ -118.494307544379296, 34.047347320874088, 0.0 ], [ -118.494594068224103, 34.047127791484819, 0.0 ], [ -118.498307468968605, 34.044216272542883, 0.0 ], [ -118.499928408463404, 34.042950991640708, 0.0 ], [ -118.501665310489201, 34.041591192657343, 0.0 ], [ -118.503606304862103, 34.040090731306613, 0.0 ] ], [ [ -118.503606304862103, 34.040090731306613, 0.0 ], [ -118.503826651979494, 34.039922187050898, 0.0 ] ], [ [ -118.503826651979494, 34.039922187050898, 0.0 ], [ -118.503835582274604, 34.039930282891092, 0.0 ], [ -118.503930400337893, 34.039857798288928, 0.0 ], [ -118.503930917442005, 34.039849565959919, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.486330895952804, 34.048874645035873, 0.0 ], [ -118.486347315309004, 34.048872265844977, 0.0 ], [ -118.4865055230118, 34.049438937987198, 0.0 ] ], [ [ -118.486325197584506, 34.048884648229112, 0.0 ], [ -118.486322940586305, 34.048875881143729, 0.0 ] ], [ [ -118.486322940586305, 34.048875881143729, 0.0 ], [ -118.486330895952804, 34.048874645035873, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1990", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.484336891130496, 34.253847375384957, 0.0 ], [ -118.484336891130496, 34.253853425722191, 0.0 ], [ -118.484196029052995, 34.253851721401823, 0.0 ] ], [ [ -118.484904394474896, 34.253802252098247, 0.0 ], [ -118.484336976346498, 34.253801017871211, 0.0 ], [ -118.484336891130496, 34.253847375384957, 0.0 ] ], [ [ -118.484917352197101, 34.253802280252373, 0.0 ], [ -118.484904394474896, 34.253802252098247, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1989", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.517921781623201, 34.25029894674276, 0.0 ], [ -118.517921593149495, 34.250394022336202, 0.0 ] ], [ [ -118.517911684489803, 34.250272801626963, 0.0 ], [ -118.517921611868104, 34.250272768484876, 0.0 ], [ -118.517921781623201, 34.25029894674276, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1987", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.442037381333506, 34.301365861170808, 0.0 ], [ -118.442122416533607, 34.301291515604227, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1986", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.373542098162602, 34.236818039714827, 0.0 ], [ -118.373420730116806, 34.236701209237381, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1985", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.354679340994494, 34.218776095862133, 0.0 ], [ -118.354605730415201, 34.218691313409863, 0.0 ] ], [ [ -118.354605730415201, 34.218691313409863, 0.0 ], [ -118.354553404450002, 34.218631042808838, 0.0 ], [ -118.354585266884399, 34.218606217476562, 0.0 ] ], [ [ -118.354585266884399, 34.218606217476562, 0.0 ], [ -118.354574599045606, 34.218594472400262, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1984", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.330957752890995, 34.201095639748203, 0.0 ], [ -118.331013493178801, 34.201130088841943, 0.0 ] ], [ [ -118.330862026374405, 34.201036478020441, 0.0 ], [ -118.330957752890995, 34.201095639748203, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1983", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.212984558108701, 34.069673939675283, 0.0 ], [ -118.212971352233495, 34.0696741329145, 0.0 ], [ -118.212969649777705, 34.069586212721767, 0.0 ], [ -118.212801259833896, 34.069587784703963, 0.0 ] ], [ [ -118.212801259833896, 34.069587784703963, 0.0 ], [ -118.212801148720203, 34.069579541728856, 0.0 ], [ -118.2126657764219, 34.069580805384717, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1982", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.219229566945302, 34.086592174308187, 0.0 ], [ -118.219326889764005, 34.086662665342359, 0.0 ], [ -118.219365922638701, 34.086625359196788, 0.0 ], [ -118.219368091130704, 34.086623286632708, 0.0 ], [ -118.219372251603005, 34.086619018096428, 0.0 ], [ -118.219374420094596, 34.086616945532342, 0.0 ], [ -118.2194112844373, 34.086581711936503, 0.0 ] ], [ [ -118.219229566945302, 34.086592174308187, 0.0 ], [ -118.219214384710895, 34.086606684904282, 0.0 ], [ -118.219160828236497, 34.08656789392505, 0.0 ], [ -118.219156491244902, 34.086572039045578, 0.0 ] ], [ [ -118.218536788816294, 34.08590759438588, 0.0 ], [ -118.218512935374903, 34.085930392422583, 0.0 ], [ -118.218478058195899, 34.085905136502433, 0.0 ], [ -118.218393422041899, 34.08598605314949, 0.0 ], [ -118.2189887494077, 34.086417749842077, 0.0 ], [ -118.218991240397301, 34.0864195540778, 0.0 ], [ -118.218996222376603, 34.086423162548847, 0.0 ], [ -118.218998713366503, 34.086424966784328, 0.0 ], [ -118.219229566945302, 34.086592174308187, 0.0 ] ], [ [ -118.219314135383598, 34.086511347045352, 0.0 ], [ -118.219229566945302, 34.086592174308187, 0.0 ] ], [ [ -118.2194112844373, 34.086581711936503, 0.0 ], [ -118.219417789906302, 34.086575494241977, 0.0 ], [ -118.219320640854406, 34.086505129356027, 0.0 ], [ -118.219314135383598, 34.086511347045352, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1980", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.251504985166306, 34.121131014471032, 0.0 ], [ -118.251517839808599, 34.121143579342927, 0.0 ], [ -118.251784576523306, 34.120954825661236, 0.0 ] ], [ [ -118.251603336022001, 34.121052845902327, 0.0 ], [ -118.251607882106001, 34.121056834394267, 0.0 ], [ -118.251504985166306, 34.121131014471032, 0.0 ] ], [ [ -118.251813444638799, 34.120897864332711, 0.0 ], [ -118.251603336022001, 34.121052845902327, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1979", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.243017408366399, 34.110739460906707, 0.0 ], [ -118.243009105768195, 34.110743962569472, 0.0 ], [ -118.243093745300101, 34.110850594143642, 0.0 ], [ -118.243102141243796, 34.110846210083928, 0.0 ] ], [ [ -118.243102141243796, 34.110846210083928, 0.0 ], [ -118.243226648361997, 34.110781196745933, 0.0 ] ], [ [ -118.243226648361997, 34.110781196745933, 0.0 ], [ -118.2431432699357, 34.110678822247451, 0.0 ] ], [ [ -118.243126305562797, 34.11067713670419, 0.0 ], [ -118.243021139404306, 34.110734157818619, 0.0 ], [ -118.243022943431498, 34.110736459797828, 0.0 ], [ -118.243017408366399, 34.110739460906707, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1978", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.213014195164504, 34.066325350454093, 0.0 ], [ -118.213013913786895, 34.066214851392829, 0.0 ] ], [ [ -118.213013913786895, 34.066214851392829, 0.0 ], [ -118.213013924743294, 34.066124275420428, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1977", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.213517190071499, 34.083381698610701, 0.0 ], [ -118.213674674225402, 34.083410127383559, 0.0 ] ], [ [ -118.213539508563002, 34.083270305169187, 0.0 ], [ -118.213532316428001, 34.083269108861103, 0.0 ], [ -118.213510823483006, 34.083380549323707, 0.0 ], [ -118.213517190071499, 34.083381698610701, 0.0 ] ], [ [ -118.213695369677197, 34.083161795935432, 0.0 ], [ -118.213693836895501, 34.083167539667173, 0.0 ], [ -118.213660907399003, 34.08329049808161, 0.0 ], [ -118.213539508563002, 34.083270305169187, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1976", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.274231327518507, 34.155411202328317, 0.0 ], [ -118.2742345061951, 34.155418778102089, 0.0 ], [ -118.274108874598497, 34.155453028645567, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1975", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.422962926448307, 34.255507121148177, 0.0 ], [ -118.422883894262299, 34.255428908288067, 0.0 ] ], [ [ -118.422883894262299, 34.255428908288067, 0.0 ], [ -118.422836611063602, 34.255383277196167, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1974", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.410562974130599, 34.243782914965173, 0.0 ], [ -118.410472818454494, 34.243698769476516, 0.0 ] ], [ [ -118.410472818454494, 34.243698769476516, 0.0 ], [ -118.410424429306602, 34.243653606071419, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1973", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.415742646495801, 34.277341315037972, 0.0 ], [ -118.415793083393694, 34.277386472753967, 0.0 ] ], [ [ -118.415678075703397, 34.277283502808842, 0.0 ], [ -118.415742646495801, 34.277341315037972, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1972", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.900114364156906, 33.997248736949459, 0.0 ], [ -117.900114449372893, 33.997246010036683, 0.0 ], [ -117.900113821730102, 33.997224042538903, 0.0 ] ], [ [ -117.900113821730102, 33.997224042538903, 0.0 ], [ -117.900153782433193, 33.997224052482629, 0.0 ] ], [ [ -117.900073604686995, 33.997224032531349, 0.0 ], [ -117.900113821730102, 33.997224042538903, 0.0 ] ], [ [ -117.900113821730102, 33.997224042538903, 0.0 ], [ -117.900113426780706, 33.997210219309338, 0.0 ], [ -117.9001253570232, 33.997210389741369, 0.0 ], [ -117.9001253570232, 33.997206214156407, 0.0 ] ], [ [ -117.900066910858797, 33.997197937275828, 0.0 ], [ -117.900066898727999, 33.99720810007851, 0.0 ], [ -117.900073552431607, 33.997213269639488, 0.0 ], [ -117.900073604686995, 33.997224032531349, 0.0 ] ], [ [ -117.9001253570232, 33.997206214156407, 0.0 ], [ -117.9001253570232, 33.99719794820281, 0.0 ], [ -117.900080107317706, 33.997197948202889, 0.0 ] ], [ [ -117.900080107317706, 33.997197948202889, 0.0 ], [ -117.900073509088301, 33.99719794273954, 0.0 ] ], [ [ -117.900073509088301, 33.99719794273954, 0.0 ], [ -117.900066910858797, 33.997197937275828, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1971", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.930168035814901, 34.002028209964728, 0.0 ], [ -117.930171502349097, 34.002020237440703, 0.0 ] ], [ [ -117.930171502349097, 34.002020237440703, 0.0 ], [ -117.930176615310103, 34.002008733278352, 0.0 ], [ -117.930131791684801, 34.001991008346593, 0.0 ] ], [ [ -117.930131791684801, 34.001991008346593, 0.0 ], [ -117.9300451269945, 34.001956581075348, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1970", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.229355630500805, 33.953530414758248, 0.0 ], [ -118.229482106726294, 33.953483701156259, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1970", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2291973032941, 33.953570294468058, 0.0 ], [ -118.229212528968503, 33.953583268865899, 0.0 ], [ -118.2292247151845, 33.953578767924753, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1968", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.183386224610103, 33.953737047679859, 0.0 ], [ -118.183360456500296, 33.953615909622471, 0.0 ] ], [ [ -118.183360456500296, 33.953615909622471, 0.0 ], [ -118.183354567977801, 33.953587614572172, 0.0 ], [ -118.1834293884869, 33.953572530882873, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1967", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.183573268705501, 33.929881193083993, 0.0 ], [ -118.183457643215505, 33.929882041950727, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1965", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.280428162889606, 33.842013390615378, 0.0 ], [ -118.280423554438201, 33.842013401346719, 0.0 ], [ -118.280423921914306, 33.842123313495783, 0.0 ] ], [ [ -118.280579223599403, 33.842013038852564, 0.0 ], [ -118.280428162889606, 33.842013390615378, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1963", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.159532623465694, 33.995911218732353, 0.0 ], [ -118.159537559341899, 33.995901025054742, 0.0 ], [ -118.159614564502405, 33.995927745155548, 0.0 ], [ -118.159849816075507, 33.996009375343633, 0.0 ], [ -118.160110906090907, 33.995471130815687, 0.0 ], [ -118.160173113783998, 33.99533504083508, 0.0 ], [ -118.160312101109199, 33.995014713823643, 0.0 ], [ -118.160431062670298, 33.99505348711179, 0.0 ], [ -118.160496423355895, 33.994819739574623, 0.0 ], [ -118.160547382534702, 33.994591275430693, 0.0 ], [ -118.160522301082196, 33.994589097001139, 0.0 ], [ -118.160542011876203, 33.994477733303746, 0.0 ], [ -118.160565107229502, 33.994347246800871, 0.0 ] ], [ [ -118.160565107229502, 33.994347246800871, 0.0 ], [ -118.160584834421599, 33.9942357896592, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1962", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.133467919100198, 33.986680105616088, 0.0 ], [ -118.133443098753403, 33.986720086128031, 0.0 ] ], [ [ -118.133473009462705, 33.986671910194829, 0.0 ], [ -118.133467919100198, 33.986680105616088, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1962", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.134126468762702, 33.985690524415553, 0.0 ], [ -118.13397454423, 33.985962346250432, 0.0 ], [ -118.133916018552597, 33.986061936819297, 0.0 ], [ -118.133848953308501, 33.986176058792942, 0.0 ], [ -118.133784202879895, 33.98628624174669, 0.0 ], [ -118.133695513802707, 33.986437160045192, 0.0 ], [ -118.133557639349107, 33.986671553328023, 0.0 ] ], [ [ -118.134139699611296, 33.985666851870782, 0.0 ], [ -118.134126468762702, 33.985690524415553, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5040", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.424944735281997, 33.917889530726413, 0.0 ], [ -118.424978188556594, 33.917877856279773, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5009", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.166912802373801, 33.84686120140578, 0.0 ], [ -118.166919229623502, 33.846861063699208, 0.0 ], [ -118.166924299605796, 33.846864707059503, 0.0 ], [ -118.166932712176703, 33.846864514989662, 0.0 ] ], [ [ -118.166932712176703, 33.846864514989662, 0.0 ], [ -118.166941800925699, 33.846864307481702, 0.0 ], [ -118.166943467042302, 33.846862562267518, 0.0 ] ], [ [ -118.166943467042302, 33.846862562267518, 0.0 ], [ -118.166945978629798, 33.846859931444293, 0.0 ], [ -118.166952590074004, 33.846859637160321, 0.0 ] ], [ [ -118.166912394239304, 33.846851403595863, 0.0 ], [ -118.166912802373801, 33.84686120140578, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1788", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552207699897906, 34.30800215477214, 0.0 ], [ -118.552146089875095, 34.307948978635117, 0.0 ] ], [ [ -118.552146089875095, 34.307948978635117, 0.0 ], [ -118.552128619433205, 34.307933896741787, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1755", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.574447373844905, 34.315201212360918, 0.0 ], [ -118.574469500761197, 34.315217595401919, 0.0 ], [ -118.574510566731803, 34.315249688610891, 0.0 ], [ -118.574553001561398, 34.315280172380163, 0.0 ], [ -118.5749426478652, 34.315715241622748, 0.0 ], [ -118.574948896025305, 34.315740859126507, 0.0 ], [ -118.575146605777803, 34.316116613493691, 0.0 ], [ -118.575151049754197, 34.316120714261857, 0.0 ], [ -118.575209924047996, 34.31617378997656, 0.0 ], [ -118.575308431188802, 34.316211105982568, 0.0 ], [ -118.575943444262293, 34.316367696496563, 0.0 ], [ -118.576107657494802, 34.316408134341273, 0.0 ], [ -118.576114845492199, 34.316409932069277, 0.0 ], [ -118.576115119866898, 34.316409701786448, 0.0 ], [ -118.5761235601382, 34.316193263616299, 0.0 ], [ -118.576127919302394, 34.315985317565612, 0.0 ], [ -118.576338789337697, 34.315988207409887, 0.0 ], [ -118.576716100998297, 34.315994655471087, 0.0 ], [ -118.577048229223095, 34.3160123092403, 0.0 ], [ -118.577343393067096, 34.31603242818413, 0.0 ], [ -118.577442495859202, 34.316036077701263, 0.0 ], [ -118.577426022077404, 34.315849069249452, 0.0 ], [ -118.577414377511104, 34.315801494300231, 0.0 ] ], [ [ -118.574438155247194, 34.315194386797721, 0.0 ], [ -118.574447373844905, 34.315201212360918, 0.0 ] ], [ [ -118.571982007397196, 34.314261056213432, 0.0 ], [ -118.571986873722295, 34.3142636813389, 0.0 ], [ -118.572034652159303, 34.314268722532127, 0.0 ], [ -118.572077453718293, 34.314272413298418, 0.0 ], [ -118.572200262729396, 34.314312593938112, 0.0 ], [ -118.572321863331197, 34.314377740384472, 0.0 ], [ -118.572495359208204, 34.314484776089373, 0.0 ], [ -118.572730423985902, 34.314635716029763, 0.0 ], [ -118.5727548161058, 34.314651172215846, 0.0 ], [ -118.572918786368405, 34.314777487733849, 0.0 ], [ -118.572967318467903, 34.314811836063271, 0.0 ], [ -118.573011677982805, 34.31484139531004, 0.0 ], [ -118.573109480538093, 34.314897035804663, 0.0 ], [ -118.573254571502503, 34.314966650053137, 0.0 ], [ -118.573426468003007, 34.315041404046013, 0.0 ], [ -118.573465474183195, 34.315054958956807, 0.0 ], [ -118.573574836895702, 34.315065890795687, 0.0 ], [ -118.573671150344396, 34.315065434732183, 0.0 ], [ -118.573955771574703, 34.314997907697183, 0.0 ], [ -118.573998745586096, 34.314986483457659, 0.0 ], [ -118.574106991808904, 34.314995588194783, 0.0 ], [ -118.574257860220001, 34.315062425910227, 0.0 ], [ -118.574438155247194, 34.315194386797721, 0.0 ] ], [ [ -118.571981502685702, 34.314260783948207, 0.0 ], [ -118.571982007397196, 34.314261056213432, 0.0 ] ], [ [ -118.571843095758794, 34.3141861112342, 0.0 ], [ -118.571844218447296, 34.314186726350123, 0.0 ], [ -118.571981502685702, 34.314260783948207, 0.0 ] ], [ [ -118.569850916459501, 34.314108626486338, 0.0 ], [ -118.570044635261596, 34.314235052742767, 0.0 ], [ -118.570410195754505, 34.314057923634778, 0.0 ], [ -118.571031714414701, 34.313980572899972, 0.0 ], [ -118.571085151700103, 34.313974232297006, 0.0 ] ], [ [ -118.571085151700103, 34.313974232297006, 0.0 ], [ -118.571359306462, 34.313941702454109, 0.0 ], [ -118.571392129122103, 34.313939028705917, 0.0 ], [ -118.571843095758794, 34.3141861112342, 0.0 ] ], [ [ -118.567771773960501, 34.313132473138793, 0.0 ], [ -118.567875838738601, 34.313033410546979, 0.0 ], [ -118.567901353621394, 34.313011307649667, 0.0 ], [ -118.568056524275704, 34.312981727036508, 0.0 ], [ -118.568218347692806, 34.312996997542449, 0.0 ], [ -118.5686212225297, 34.313192956670143, 0.0 ], [ -118.568648635032403, 34.313206338567333, 0.0 ], [ -118.568829867963004, 34.31331586206116, 0.0 ], [ -118.568957064954105, 34.313392893186723, 0.0 ], [ -118.569042160897595, 34.313447451692873, 0.0 ], [ -118.569241220746704, 34.313580935094798, 0.0 ], [ -118.569551263035194, 34.313801142585213, 0.0 ], [ -118.569557641534601, 34.313805692417233, 0.0 ], [ -118.569518488847805, 34.313891748704528, 0.0 ], [ -118.569523478123898, 34.313894931158352, 0.0 ], [ -118.569850916459501, 34.314108626486338, 0.0 ] ], [ [ -118.566343529420294, 34.31399207313477, 0.0 ], [ -118.566368185114499, 34.314005901297392, 0.0 ], [ -118.566395030781706, 34.313976464724291, 0.0 ], [ -118.566731616494494, 34.313595678902487, 0.0 ], [ -118.566740107647107, 34.313586250513069, 0.0 ], [ -118.5667880399495, 34.313573431635703, 0.0 ], [ -118.566980598463203, 34.313522381164567, 0.0 ], [ -118.567082546564706, 34.313498546720282, 0.0 ], [ -118.567087852151602, 34.313507681613643, 0.0 ], [ -118.567393204796105, 34.314013012208449, 0.0 ], [ -118.567412300993595, 34.31402093751678, 0.0 ], [ -118.567480921385396, 34.314047179227977, 0.0 ], [ -118.567606219577101, 34.314007434473943, 0.0 ], [ -118.567656333482006, 34.313909648831668, 0.0 ], [ -118.567670667262206, 34.313623340980932, 0.0 ], [ -118.567753273548902, 34.3131500842725, 0.0 ], [ -118.567771773960501, 34.313132473138793, 0.0 ] ], [ [ -118.566087840353603, 34.313841925855641, 0.0 ], [ -118.566088385206996, 34.313848975331773, 0.0 ], [ -118.566343529420294, 34.31399207313477, 0.0 ] ], [ [ -118.566085344459097, 34.313809633229752, 0.0 ], [ -118.566087840353603, 34.313841925855641, 0.0 ] ], [ [ -118.566073428364206, 34.313681212093428, 0.0 ], [ -118.566082334398402, 34.313770688168063, 0.0 ], [ -118.566085344459097, 34.313809633229752, 0.0 ] ], [ [ -118.565756944004804, 34.313032773826187, 0.0 ], [ -118.565757627009503, 34.313055229530761, 0.0 ], [ -118.565782754207405, 34.313219986784361, 0.0 ], [ -118.566063083388897, 34.31357727943842, 0.0 ], [ -118.566073428364206, 34.313681212093428, 0.0 ] ], [ [ -118.562557985517103, 34.311871081973671, 0.0 ], [ -118.563106993015595, 34.312821184088413, 0.0 ], [ -118.563396891317893, 34.313330489412408, 0.0 ], [ -118.563816072993504, 34.313327394145603, 0.0 ], [ -118.564048154107397, 34.313325626760893, 0.0 ], [ -118.5641924678539, 34.313322664802527, 0.0 ], [ -118.564342449886496, 34.313260138202388, 0.0 ], [ -118.564747842200504, 34.313095435258553, 0.0 ], [ -118.564870309365205, 34.313045172846557, 0.0 ], [ -118.564906318053801, 34.313105458951263, 0.0 ], [ -118.564974569234806, 34.313077432574246, 0.0 ], [ -118.564936605520202, 34.313013720719489, 0.0 ], [ -118.565118819837096, 34.312943028076752, 0.0 ], [ -118.565445491868005, 34.312809375008257, 0.0 ], [ -118.565756916685103, 34.313031875611799, 0.0 ], [ -118.565756944004804, 34.313032773826187, 0.0 ] ], [ [ -118.562262846350507, 34.311369550564031, 0.0 ], [ -118.562279091487298, 34.311390162946147, 0.0 ], [ -118.562332665107704, 34.31147738937171, 0.0 ], [ -118.562362567800903, 34.311532895726778, 0.0 ], [ -118.562557985517103, 34.311871081973671, 0.0 ] ], [ [ -118.5542316921305, 34.308606243538073, 0.0 ], [ -118.554237977419504, 34.30860626375442, 0.0 ], [ -118.554791560759796, 34.308608309369497, 0.0 ], [ -118.554791342400094, 34.308658459706422, 0.0 ], [ -118.554863092141105, 34.308658589063818, 0.0 ], [ -118.554863310404698, 34.308608438726978, 0.0 ], [ -118.554971212432605, 34.308608860367663, 0.0 ], [ -118.555621931218695, 34.308610686136561, 0.0 ], [ -118.556271001977706, 34.308613660954947, 0.0 ], [ -118.557016929206895, 34.30861595792053, 0.0 ], [ -118.557017148433701, 34.308524817952957, 0.0 ], [ -118.557112355178802, 34.308525067086471, 0.0 ], [ -118.557112136055906, 34.308616207054321, 0.0 ], [ -118.557251221789599, 34.308616712259763, 0.0 ], [ -118.557937314864802, 34.308502492657382, 0.0 ], [ -118.558486135895095, 34.308411572443262, 0.0 ], [ -118.558693136532298, 34.308375352998581, 0.0 ], [ -118.5588192124995, 34.308699482748303, 0.0 ], [ -118.559046668935096, 34.309244809186787, 0.0 ], [ -118.560227665473803, 34.309803819347472, 0.0 ], [ -118.560279050801896, 34.309730075101797, 0.0 ], [ -118.560354923216195, 34.309768652876372, 0.0 ], [ -118.560303537984396, 34.309842397153702, 0.0 ], [ -118.560828704425504, 34.310090484573387, 0.0 ], [ -118.561587601146201, 34.310459539404476, 0.0 ], [ -118.561919872004196, 34.310788892613353, 0.0 ], [ -118.562057240827201, 34.31102549154523, 0.0 ], [ -118.562141886568497, 34.311178065712063, 0.0 ], [ -118.562258772163403, 34.311364381096773, 0.0 ], [ -118.562262846350507, 34.311369550564031, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1750", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551285041330502, 34.30745651769066, 0.0 ], [ -118.551283424603497, 34.307455091234829, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5036", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.424994331004498, 33.917824596120717, 0.0 ], [ -118.424999443965504, 33.917834736826883, 0.0 ], [ -118.425048102311806, 33.917817778839343, 0.0 ] ], [ [ -118.424976520856703, 33.917789061041319, 0.0 ], [ -118.424994331004498, 33.917824596120717, 0.0 ] ], [ [ -118.425048102311806, 33.917817778839343, 0.0 ], [ -118.425203991641098, 33.917763347972567, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1733", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.438877790894495, 33.964099518794129, 0.0 ], [ -118.438884882789196, 33.964136178434771, 0.0 ], [ -118.438804012788196, 33.964141802691991, 0.0 ], [ -118.4386729505527, 33.96415296599028, 0.0 ], [ -118.438705673503605, 33.964372482452447, 0.0 ], [ -118.438723654083304, 33.964496556974538, 0.0 ], [ -118.438678489593897, 33.964543681432517, 0.0 ], [ -118.438630257327702, 33.964592680642809, 0.0 ], [ -118.438598471753096, 33.964598219683907, 0.0 ], [ -118.438447809833306, 33.964611513382778, 0.0 ], [ -118.438243461822395, 33.964630686986723, 0.0 ], [ -118.438202898997901, 33.964631965227071, 0.0 ], [ -118.438202302485706, 33.964670482867113, 0.0 ], [ -118.438111121346594, 33.965206150755719, 0.0 ], [ -118.440658568986294, 33.966462916588121, 0.0 ], [ -118.441501696267494, 33.966965179797619, 0.0 ], [ -118.442339795803704, 33.967459688349571, 0.0 ], [ -118.443428600864706, 33.968103324932919, 0.0 ], [ -118.444176882717997, 33.969018204101353, 0.0 ], [ -118.443958303632002, 33.969378071345069, 0.0 ], [ -118.444537857770001, 33.970278634222417, 0.0 ] ], [ [ -118.444537857770001, 33.970278634222417, 0.0 ], [ -118.444584523956806, 33.970258031394771, 0.0 ] ], [ [ -118.444584523956806, 33.970258031394771, 0.0 ], [ -118.445478046095602, 33.969863546999058, 0.0 ], [ -118.445747073064197, 33.96996844791714, 0.0 ], [ -118.445679922842004, 33.970079654820537, 0.0 ], [ -118.445710685824494, 33.970102322281328, 0.0 ], [ -118.4458310108419, 33.970004153428683, 0.0 ], [ -118.445898331495997, 33.970059202976238, 0.0 ], [ -118.445875323171094, 33.970100958824993, 0.0 ] ], [ [ -118.438877203852201, 33.964096484237402, 0.0 ], [ -118.438877790894495, 33.964099518794129, 0.0 ] ], [ [ -118.438868265665704, 33.964050280688703, 0.0 ], [ -118.438877203852201, 33.964096484237402, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5021", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.385612515267596, 33.916225687976628, 0.0 ], [ -118.3856125372603, 33.91623120815855, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5049", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.416428331667305, 33.916465059770943, 0.0 ], [ -118.416428246451204, 33.916447164407153, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5015", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.425103141129298, 33.917849145483622, 0.0 ], [ -118.425146637008794, 33.917833957032933, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5030", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.423896560417901, 33.908187300742711, 0.0 ], [ -118.423896407829602, 33.908187346222249, 0.0 ], [ -118.423876467281403, 33.908193652207594, 0.0 ] ], [ [ -118.423917413218106, 33.908180797983782, 0.0 ], [ -118.423896560417901, 33.908187300742711, 0.0 ] ], [ [ -118.423942680127297, 33.908172944715261, 0.0 ], [ -118.423917456186004, 33.908180784588893, 0.0 ], [ -118.423917413218106, 33.908180797983782, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2092", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.125302482374394, 33.928166521250958, 0.0 ], [ -118.125292593187098, 33.928166531527182, 0.0 ], [ -118.125292613731602, 33.928180270705333, 0.0 ], [ -118.125302502920505, 33.928180260429549, 0.0 ] ], [ [ -118.125324907357594, 33.927908170206479, 0.0 ], [ -118.125325557144507, 33.928166497271377, 0.0 ], [ -118.125302482374394, 33.928166521250958, 0.0 ] ], [ [ -118.125324896732195, 33.927903943705367, 0.0 ], [ -118.125324907357594, 33.927908170206479, 0.0 ] ], [ [ -118.117023201642198, 33.916968057219307, 0.0 ], [ -118.118126081870699, 33.916968004708643, 0.0 ], [ -118.120883416562506, 33.916970475973109, 0.0 ], [ -118.122681900620705, 33.916963232611678, 0.0 ], [ -118.1226815597566, 33.917130341222787, 0.0 ], [ -118.125342515132104, 33.917123097861243, 0.0 ], [ -118.125337061306993, 33.918950129285427, 0.0 ], [ -118.125273149293506, 33.918995208558897, 0.0 ], [ -118.125314393846097, 33.924166713038318, 0.0 ], [ -118.125320870263494, 33.926303163823562, 0.0 ], [ -118.125324555110296, 33.927752537342997, 0.0 ], [ -118.125317962351403, 33.927752544194838, 0.0 ], [ -118.125318019887501, 33.92779101389231, 0.0 ], [ -118.125324612649393, 33.927791007040469, 0.0 ], [ -118.125324896732195, 33.927903943705367, 0.0 ] ], [ [ -118.116611431234205, 33.916968076824631, 0.0 ], [ -118.117023201642198, 33.916968057219307, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5008", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.166912802373801, 33.84686120140578, 0.0 ], [ -118.1669131234421, 33.846872409390443, 0.0 ], [ -118.166953231226501, 33.846871531555763, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5019", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.379611944149801, 33.916283890516823, 0.0 ], [ -118.379611858933799, 33.916278351475597, 0.0 ], [ -118.379607853780996, 33.916278351475597, 0.0 ] ], [ [ -118.379607853780996, 33.916278351475597, 0.0 ], [ -118.379607768564895, 33.916250741485833, 0.0 ] ], [ [ -118.379607768564895, 33.916250741485833, 0.0 ], [ -118.379607768564895, 33.916248014573213, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5048", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.416429013395501, 33.916593906389998, 0.0 ], [ -118.416429013395501, 33.916611801753753, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5053", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.204295070517603, 33.846312592123773, 0.0 ], [ -118.204295070517603, 33.846296315864393, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5013", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.407030453563195, 33.916337235743981, 0.0 ], [ -118.407030368347094, 33.916323515965189, 0.0 ], [ -118.407020483289102, 33.916323515965189, 0.0 ], [ -118.407020483289102, 33.916308432729963, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5035", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.425417675097506, 33.917150959151677, 0.0 ], [ -118.425422868926205, 33.917161905918277, 0.0 ], [ -118.425447479795807, 33.917153124759963, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5029", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.423917413218106, 33.908180797983782, 0.0 ], [ -118.423917428650398, 33.908180832146343, 0.0 ] ], [ [ -118.423860674782503, 33.908033152787269, 0.0 ], [ -118.423855220957407, 33.908043123061397, 0.0 ], [ -118.423917413218106, 33.908180797983782, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2091", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.117345300283404, 33.875733784237468, 0.0 ], [ -118.120725458579599, 33.875725493665399, 0.0 ], [ -118.1207342697884, 33.875729227299082, 0.0 ], [ -118.121823249919004, 33.87572813135823, 0.0 ], [ -118.121839021333699, 33.875718193314881, 0.0 ], [ -118.125080753762703, 33.875714872186947, 0.0 ], [ -118.125086463815194, 33.875717614086447, 0.0 ], [ -118.126170388746203, 33.875682718779572, 0.0 ], [ -118.128438668711098, 33.875674964121806, 0.0 ], [ -118.133680500806804, 33.875685215781893, 0.0 ], [ -118.133680509569302, 33.875690711425563, 0.0 ], [ -118.133791185916607, 33.87569058860096, 0.0 ], [ -118.133791111373895, 33.875643875629883, 0.0 ] ], [ [ -118.133791111373895, 33.875643875629883, 0.0 ], [ -118.133791098219305, 33.875635632164403, 0.0 ], [ -118.133789451054298, 33.875635633993177, 0.0 ], [ -118.133789380897397, 33.875591668844137, 0.0 ] ], [ [ -118.133789380897397, 33.875591668844137, 0.0 ], [ -118.133779497912499, 33.875591679815997, 0.0 ], [ -118.133779475990096, 33.875577940706947, 0.0 ], [ -118.133789358973402, 33.875577929735172, 0.0 ] ], [ [ -118.133789358973402, 33.875577929735172, 0.0 ], [ -118.133789223044602, 33.875492747259692, 0.0 ], [ -118.133779340071499, 33.875492758231481, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5052", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.256750840247804, 33.796641346907798, 0.0 ], [ -118.256752539899793, 33.796664510994013, 0.0 ], [ -118.256721224054502, 33.796666985652088, 0.0 ], [ -118.256722002210196, 33.796677130522554, 0.0 ] ], [ [ -118.256766288032594, 33.796600817561441, 0.0 ], [ -118.256747933907505, 33.796601737166107, 0.0 ], [ -118.256750840247804, 33.796641346907798, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5058", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.253928884506195, 33.945948694162418, 0.0 ], [ -118.253937065243903, 33.945948694162418, 0.0 ], [ -118.253937491323995, 33.946033824964402, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5018", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.379572318701506, 33.916283975732817, 0.0 ], [ -118.379572318701506, 33.916278521907628, 0.0 ], [ -118.379607853780996, 33.916278351475597, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5042", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.425206518889098, 33.917813091958408, 0.0 ], [ -118.425230379374099, 33.91775412247388, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5047", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.416455259928895, 33.91658470306006, 0.0 ], [ -118.416468468411693, 33.91658470306006, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5012", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248469522634906, 33.867932247857347, 0.0 ], [ -118.248469564186195, 33.867946269897928, 0.0 ] ], [ [ -118.248469487611104, 33.867920428677479, 0.0 ], [ -118.248469522634906, 33.867932247857347, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5032", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.423896560417901, 33.908187300742711, 0.0 ], [ -118.423920219824296, 33.908239797476867, 0.0 ] ], [ [ -118.423851800378998, 33.908087993864633, 0.0 ], [ -118.423896560417901, 33.908187300742711, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5038", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.425027820899501, 33.91781292152627, 0.0 ], [ -118.425030292164095, 33.917817949271367, 0.0 ], [ -118.425045530138902, 33.917812634493593, 0.0 ] ], [ [ -118.425045530138902, 33.917812634493593, 0.0 ], [ -118.425258245011904, 33.917738442726623, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5027", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.423876467281403, 33.908193652207594, 0.0 ], [ -118.423900968401597, 33.908247953847606, 0.0 ] ], [ [ -118.423832936949495, 33.908097374970843, 0.0 ], [ -118.423876467281403, 33.908193652207594, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5017", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.379607768564895, 33.916250741485833, 0.0 ], [ -118.379623022232195, 33.916263438672523, 0.0 ], [ -118.379628305625303, 33.916263353456529, 0.0 ] ], [ [ -118.379559179636004, 33.916250965742442, 0.0 ], [ -118.379607768564895, 33.916250741485833, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2085", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.144685065112796, 33.985971522864219, 0.0 ], [ -118.144434671863294, 33.986481846948813, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2084", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.165300135481203, 33.889632230614893, 0.0 ], [ -118.165485332381607, 33.889633183309407, 0.0 ], [ -118.165485372601694, 33.889627687755642, 0.0 ] ], [ [ -118.165485372601694, 33.889627687755642, 0.0 ], [ -118.165486156895298, 33.88952052445741, 0.0 ] ], [ [ -118.165486156895298, 33.88952052445741, 0.0 ], [ -118.165487355626794, 33.889356733452971, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2083", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.114476961551404, 33.916950364992992, 0.0 ], [ -118.114518120887993, 33.916950109344917, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2082", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.042982682486198, 33.917124972613671, 0.0 ], [ -118.042982682486198, 33.917124951253797, 0.0 ] ], [ [ -118.042982682486198, 33.917124951253797, 0.0 ], [ -118.042982682486198, 33.917113979747327, 0.0 ], [ -118.042995805752895, 33.917113979747327, 0.0 ], [ -118.042995720536894, 33.916871881040493, 0.0 ], [ -118.042995124024699, 33.915797477486528, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2081", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.047183589796902, 33.911864477119543, 0.0 ], [ -118.047183930661006, 33.911869930944768, 0.0 ], [ -118.047272815960298, 33.911862575606428, 0.0 ] ], [ [ -118.046630319210195, 33.91185728630812, 0.0 ], [ -118.047127091561094, 33.911853654685324, 0.0 ], [ -118.047182567204402, 33.911850842556753, 0.0 ], [ -118.047183589796902, 33.911864477119543, 0.0 ] ], [ [ -118.047272815960298, 33.911862575606428, 0.0 ], [ -118.047351203427894, 33.911856088973209, 0.0 ] ], [ [ -118.046630295802998, 33.911857286479297, 0.0 ], [ -118.046630319210195, 33.91185728630812, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2080", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.046696296990902, 33.917064536296401, 0.0 ], [ -118.046696140899002, 33.917028593297417, 0.0 ], [ -118.046676455998806, 33.917028763729448, 0.0 ] ], [ [ -118.046676455998806, 33.917028763729448, 0.0 ], [ -118.0466733845265, 33.916708440537121, 0.0 ] ], [ [ -118.0466733845265, 33.916708440537121, 0.0 ], [ -118.046667451842396, 33.916089722178462, 0.0 ] ], [ [ -118.046667451842396, 33.916089722178462, 0.0 ], [ -118.046640874989905, 33.913318027918898, 0.0 ] ], [ [ -118.046640874989905, 33.913318027918898, 0.0 ], [ -118.046640580055296, 33.913287269246659, 0.0 ], [ -118.046630319210195, 33.91185728630812, 0.0 ] ], [ [ -118.046630319210195, 33.91185728630812, 0.0 ], [ -118.046613449021905, 33.909506204972857, 0.0 ] ], [ [ -118.046613449021905, 33.909506204972857, 0.0 ], [ -118.046612884849395, 33.909427580147167, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2079", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1174282683955, 33.88924075866128, 0.0 ], [ -118.117108687832697, 33.889241865470566, 0.0 ], [ -118.116791939894199, 33.88924288806281, 0.0 ], [ -118.116324018739704, 33.889243910655068, 0.0 ], [ -118.116121801129196, 33.889234110812957, 0.0 ], [ -118.115936875435494, 33.889232694458528, 0.0 ], [ -118.115853034560701, 33.889230987272541, 0.0 ], [ -118.115639578858094, 33.889206576858008, 0.0 ], [ -118.115528756689699, 33.889191568535189, 0.0 ], [ -118.115337669108797, 33.889161441907831, 0.0 ], [ -118.115200514983798, 33.889132985511957, 0.0 ], [ -118.115073073880794, 33.889101896081002, 0.0 ], [ -118.1149580761995, 33.889070848254462, 0.0 ], [ -118.114711093444299, 33.888989640588022, 0.0 ], [ -118.114504335653507, 33.88891078147882, 0.0 ], [ -118.114319053920894, 33.888832972141437, 0.0 ], [ -118.113867975023595, 33.888629457386443, 0.0 ], [ -118.113484615184007, 33.888454228564228, 0.0 ], [ -118.113180666785496, 33.888315135100363, 0.0 ], [ -118.112918440423996, 33.888214822070481, 0.0 ], [ -118.112677277560294, 33.888138648109781, 0.0 ], [ -118.112522071043799, 33.888094432274741, 0.0 ], [ -118.112215627489803, 33.888021274502748, 0.0 ], [ -118.112015454770201, 33.88797709710736, 0.0 ], [ -118.111844675206399, 33.887950073636461, 0.0 ], [ -118.111702422238096, 33.887931358163812, 0.0 ], [ -118.111698841113096, 33.88795590760941, 0.0 ], [ -118.111493537356694, 33.88793037754067, 0.0 ], [ -118.111496089047293, 33.887905738823278, 0.0 ], [ -118.111378069268895, 33.887896846827381, 0.0 ], [ -118.109015978259094, 33.88772655423999, 0.0 ], [ -118.108981550987906, 33.887798561775092, 0.0 ], [ -118.107935609583905, 33.88771718047802, 0.0 ], [ -118.107937654768307, 33.887644065134602, 0.0 ], [ -118.107605600819099, 33.887627491687468, 0.0 ], [ -118.107283131769506, 33.887611396641063, 0.0 ], [ -118.1066173801281, 33.887561182567516, 0.0 ], [ -118.106302133167006, 33.887535205341301, 0.0 ], [ -118.106000659706993, 33.887511693428692, 0.0 ] ], [ [ -118.106000659706993, 33.887511693428692, 0.0 ], [ -118.105801488304195, 33.887496160052663, 0.0 ] ], [ [ -118.105801488304195, 33.887496160052663, 0.0 ], [ -118.1057777946112, 33.887494312181772, 0.0 ], [ -118.105467900115499, 33.887471834104602, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2077", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.055787950543007, 33.920857273435317, 0.0 ], [ -118.058213174976999, 33.920847043636783, 0.0 ], [ -118.058213597016703, 33.92225403951619, 0.0 ] ], [ [ -118.0553420972456, 33.918504143553008, 0.0 ], [ -118.055343436317202, 33.918834832013182, 0.0 ], [ -118.055294096242903, 33.918875820917727, 0.0 ], [ -118.055297935303301, 33.920857487232936, 0.0 ], [ -118.055507075866998, 33.920857396085047, 0.0 ] ], [ [ -118.055507075866998, 33.920857396085047, 0.0 ], [ -118.055787950543007, 33.920857273435317, 0.0 ] ], [ [ -118.055336547634496, 33.917133647461633, 0.0 ], [ -118.0553420972456, 33.918504143553008, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2076", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.116308424208498, 33.847151799468307, 0.0 ], [ -118.116307486832298, 33.847135182344758, 0.0 ] ], [ [ -118.116307486832298, 33.847135182344758, 0.0 ], [ -118.116296759607593, 33.846948461775028, 0.0 ], [ -118.116281832135797, 33.84693765980095, 0.0 ], [ -118.116282688971097, 33.84691515458654, 0.0 ], [ -118.116281327001403, 33.846872292599343, 0.0 ] ], [ [ -118.116281327001403, 33.846872292599343, 0.0 ], [ -118.116279791626496, 33.846823973447393, 0.0 ], [ -118.116280473354607, 33.845870576638838, 0.0 ], [ -118.116198069465298, 33.845785019756903, 0.0 ], [ -118.116210084923793, 33.845334823534202, 0.0 ], [ -118.116215197884799, 33.844462296726718, 0.0 ], [ -118.116232326304498, 33.843628628423403, 0.0 ], [ -118.116220396062005, 33.841037038886512, 0.0 ], [ -118.116307145968193, 33.840955146293247, 0.0 ], [ -118.116307280903499, 33.84092520290352, 0.0 ] ], [ [ -118.116307280903499, 33.84092520290352, 0.0 ], [ -118.115944798636093, 33.840925552347471, 0.0 ], [ -118.115944772046106, 33.840906317661151, 0.0 ] ], [ [ -118.115944772046106, 33.840906317661151, 0.0 ], [ -118.115944764450603, 33.840900822037312, 0.0 ], [ -118.116086361974197, 33.840900685616397, 0.0 ] ], [ [ -118.116086361974197, 33.840900685616397, 0.0 ], [ -118.116165393206401, 33.840900609474467, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2075", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.125324907357594, 33.927908170206479, 0.0 ], [ -118.125211452896494, 33.92790863360112, 0.0 ], [ -118.123951789719598, 33.927910082273421, 0.0 ], [ -118.1239547722803, 33.929759781158438, 0.0 ], [ -118.123961674777703, 33.931503215669082, 0.0 ], [ -118.120566839055897, 33.931513356375078, 0.0 ], [ -118.1203310463343, 33.93151199291885, 0.0 ], [ -118.119688091479105, 33.932529046092689, 0.0 ] ], [ [ -118.125324896732195, 33.927903943705367, 0.0 ], [ -118.1253289657853, 33.927903946720107, 0.0 ], [ -118.1253365500109, 33.927903946720107, 0.0 ], [ -118.125336635226901, 33.927908122305077, 0.0 ], [ -118.125324907357594, 33.927908170206479, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2074", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.4855666886845, 34.250048094129959, 0.0 ], [ -118.485566172156297, 34.250091963535468, 0.0 ], [ -118.485655513911595, 34.250092688870367, 0.0 ] ], [ [ -118.485007310934904, 34.249947198224532, 0.0 ], [ -118.485007041150496, 34.250087958911109, 0.0 ], [ -118.485438010069302, 34.250090917430512, 0.0 ], [ -118.485437739820398, 34.250047047114997, 0.0 ] ], [ [ -118.485437739820398, 34.250047047114997, 0.0 ], [ -118.485437705380704, 34.250041456411033, 0.0 ], [ -118.485566754503495, 34.250042504232852, 0.0 ], [ -118.4855666886845, 34.250048094129959, 0.0 ] ], [ [ -118.484990203230595, 34.249947171165289, 0.0 ], [ -118.485007310934904, 34.249947198224532, 0.0 ] ], [ [ -118.484908197044902, 34.249947041456167, 0.0 ], [ -118.484990203230595, 34.249947171165289, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2072", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.502165711478497, 34.284129355895658, 0.0 ], [ -118.502642760354703, 34.284167050376787, 0.0 ], [ -118.502655212531295, 34.28406010978965, 0.0 ] ], [ [ -118.502526704029293, 34.284049795180678, 0.0 ], [ -118.502516208233303, 34.284139933183823, 0.0 ] ], [ [ -118.502142011818094, 34.284135761445498, 0.0 ], [ -118.502164644845905, 34.284137699154698, 0.0 ], [ -118.502165711478497, 34.284129355895658, 0.0 ] ], [ [ -118.502655212531295, 34.28406010978965, 0.0 ], [ -118.502655849486999, 34.284054639543193, 0.0 ], [ -118.502527340441205, 34.284044329668802, 0.0 ], [ -118.502526704029293, 34.284049795180678, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2071", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.485395469747601, 34.264560612429293, 0.0 ], [ -118.485395767588898, 34.264592697893377, 0.0 ], [ -118.485478507305601, 34.264592168444693, 0.0 ], [ -118.485478558324203, 34.264597664020961, 0.0 ] ], [ [ -118.484895073331103, 34.264412359264263, 0.0 ], [ -118.484893734258705, 34.264591930623453, 0.0 ], [ -118.485266683734693, 34.264592457696509, 0.0 ], [ -118.4852663958427, 34.26456143825358, 0.0 ] ], [ [ -118.4852663958427, 34.26456143825358, 0.0 ], [ -118.485266342860498, 34.264555729593027, 0.0 ], [ -118.485395416762401, 34.264554903766417, 0.0 ], [ -118.485395469747601, 34.264560612429293, 0.0 ] ], [ [ -118.484853794385899, 34.264398988794213, 0.0 ], [ -118.484895175021805, 34.264398722407464, 0.0 ], [ -118.484895073331103, 34.264412359264263, 0.0 ] ], [ [ -118.484818190839505, 34.264399217991027, 0.0 ], [ -118.484853794385899, 34.264398988794213, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2069", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.486071653843794, 34.228278939145397, 0.0 ], [ -118.486072152331801, 34.228476369964127, 0.0 ] ], [ [ -118.485250599000693, 34.228132984584363, 0.0 ], [ -118.485250116228102, 34.228309635851502, 0.0 ], [ -118.485942786988204, 34.228308305246777, 0.0 ], [ -118.485942646884396, 34.228279163798248, 0.0 ] ], [ [ -118.485942646884396, 34.228279163798248, 0.0 ], [ -118.485942616556201, 34.228272855383423, 0.0 ], [ -118.486071637914705, 34.228272630703017, 0.0 ], [ -118.486071653843794, 34.228278939145397, 0.0 ] ], [ [ -118.485147307534504, 34.228133058287639, 0.0 ], [ -118.485246988965798, 34.228132987160301, 0.0 ] ], [ [ -118.485246988965798, 34.228132987160301, 0.0 ], [ -118.485250599000693, 34.228132984584363, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5046", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.416402596429904, 33.916593906389998, 0.0 ], [ -118.416402681645906, 33.916611801753753, 0.0 ], [ -118.416429013395501, 33.916611801753753, 0.0 ] ], [ [ -118.416429013395501, 33.916611801753753, 0.0 ], [ -118.416455430360998, 33.916611631321707, 0.0 ], [ -118.416455259928895, 33.91658470306006, 0.0 ] ], [ [ -118.416455259928895, 33.91658470306006, 0.0 ], [ -118.416454578200799, 33.916447079191123, 0.0 ], [ -118.416428246451204, 33.916447164407153, 0.0 ] ], [ [ -118.416428246451204, 33.916447164407153, 0.0 ], [ -118.416401829485693, 33.916447334839177, 0.0 ], [ -118.416401914701794, 33.916465059770943, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2067", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.229813859243393, 34.053237365042293, 0.0 ], [ -118.229709469621497, 34.053565191063207, 0.0 ], [ -118.229716372118901, 34.053575161337342, 0.0 ], [ -118.229695920274594, 34.053631063045053, 0.0 ], [ -118.229662004299499, 34.053791439590768, 0.0 ], [ -118.228679378396905, 34.05479221650527, 0.0 ], [ -118.228630293970596, 34.054764521299418, 0.0 ], [ -118.228207280249904, 34.055234135582921, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2065", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.605744547298599, 34.46432152866641, 0.0 ], [ -118.605744580527301, 34.464366366649259, 0.0 ], [ -118.605717479245399, 34.464770739512211, 0.0 ], [ -118.605708701995596, 34.464976877059527, 0.0 ], [ -118.605688931879499, 34.465111518367827, 0.0 ], [ -118.605658765409203, 34.465243262331569, 0.0 ], [ -118.605618202584594, 34.465363672564912, 0.0 ], [ -118.605567072973798, 34.465472834283858, 0.0 ], [ -118.605515858147101, 34.465558902461957, 0.0 ], [ -118.605450923541397, 34.465653662673787, 0.0 ], [ -118.605385903719693, 34.465745610757182, 0.0 ], [ -118.605313981400599, 34.465829037238748, 0.0 ], [ -118.605231577511304, 34.465903771686413, 0.0 ], [ -118.605128466129699, 34.46599018072866, 0.0 ], [ -118.605049470880999, 34.466059290919112, 0.0 ], [ -118.6050504934732, 34.466190864450823, 0.0 ], [ -118.605237457416493, 34.46671945940998, 0.0 ], [ -118.6052798097775, 34.466833819306053, 0.0 ], [ -118.605318412633494, 34.466913837146848, 0.0 ], [ -118.605353436417005, 34.466970931878834, 0.0 ], [ -118.603766117651205, 34.467788835218798, 0.0 ], [ -118.603627385973994, 34.467726542309727, 0.0 ], [ -118.603460959090995, 34.467661522488051, 0.0 ], [ -118.603277403788397, 34.467599485227041, 0.0 ], [ -118.600540606156997, 34.466702842286509, 0.0 ], [ -118.600056238311097, 34.466613621115691, 0.0 ], [ -118.600052829670304, 34.466630834751371, 0.0 ] ], [ [ -118.605744484124301, 34.464236283083942, 0.0 ], [ -118.605744547298599, 34.46432152866641, 0.0 ] ], [ [ -118.605705463787004, 34.464133323698213, 0.0 ], [ -118.605744407507103, 34.464132897618072, 0.0 ], [ -118.605744484124301, 34.464236283083942, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5037", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.424994331004498, 33.917824596120717, 0.0 ], [ -118.425027820899501, 33.91781292152627, 0.0 ] ], [ [ -118.425045530138902, 33.917812634493593, 0.0 ], [ -118.425048102311806, 33.917817778839343, 0.0 ] ], [ [ -118.425027820899501, 33.91781292152627, 0.0 ], [ -118.425042989350601, 33.917807552917147, 0.0 ], [ -118.425045530138902, 33.917812634493593, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5041", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.425182147108004, 33.917821613560122, 0.0 ], [ -118.425206007592905, 33.917762644075708, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5010", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.166932712176703, 33.846864514989662, 0.0 ], [ -118.166932679348903, 33.846862817259471, 0.0 ], [ -118.166943467042302, 33.846862562267518, 0.0 ] ], [ [ -118.166943467042302, 33.846862562267518, 0.0 ], [ -118.166952735938395, 33.846862343175808, 0.0 ] ], [ [ -118.166952735938395, 33.846862343175808, 0.0 ], [ -118.166966012684597, 33.846862029349452, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2026", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.314653891642095, 34.189885206203819, 0.0 ], [ -118.314490797020895, 34.190039957870503, 0.0 ], [ -118.314479383653506, 34.190030549554052, 0.0 ] ], [ [ -118.314479383653506, 34.190030549554052, 0.0 ], [ -118.314490797020895, 34.190020061594872, 0.0 ] ], [ [ -118.314737783891303, 34.189804201570851, 0.0 ], [ -118.314653891642095, 34.189885206203819, 0.0 ] ], [ [ -118.314856014622904, 34.189373824226692, 0.0 ], [ -118.315044052104398, 34.189508638705391, 0.0 ], [ -118.314737783891303, 34.189804201570851, 0.0 ] ], [ [ -118.314807378574898, 34.1893677006803, 0.0 ], [ -118.314823779090702, 34.189350751154919, 0.0 ], [ -118.314856014622904, 34.189373824226692, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2024", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.211999250595795, 34.058641169006151, 0.0 ], [ -118.211918419427306, 34.058764349421743, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2022", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.261844710429301, 34.132509775611553, 0.0 ], [ -118.261852696467898, 34.13252486622163, 0.0 ], [ -118.261907138232402, 34.132504943495761, 0.0 ] ], [ [ -118.261793533695993, 34.132399426590709, 0.0 ], [ -118.261787477236695, 34.132401626223633, 0.0 ], [ -118.2618044227616, 34.132433646945607, 0.0 ], [ -118.261844710429301, 34.132509775611553, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2019", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.0669802309761, 33.951158954807077, 0.0 ], [ -118.066928724385306, 33.951161869274657, 0.0 ] ], [ [ -118.067757082486395, 33.951123258404522, 0.0 ], [ -118.067756938863496, 33.951123266418548, 0.0 ], [ -118.067603635247295, 33.951131873236413, 0.0 ], [ -118.067591364140597, 33.951124374226787, 0.0 ], [ -118.0669802309761, 33.951158954807077, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2018", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.089533631947603, 33.948841872833142, 0.0 ], [ -118.089871432889495, 33.94898783822552, 0.0 ], [ -118.089893077758106, 33.948951621417933, 0.0 ], [ -118.091705025947107, 33.949709021385189, 0.0 ], [ -118.091695737401096, 33.949723763756268, 0.0 ], [ -118.093271125924403, 33.950369871604103, 0.0 ], [ -118.093281266630498, 33.950373535892894, 0.0 ], [ -118.093305382763504, 33.950367315123593, 0.0 ], [ -118.093309132268402, 33.950361179570237, 0.0 ], [ -118.0946231632646, 33.950901960420033, 0.0 ], [ -118.095158660721196, 33.951135367093052, 0.0 ], [ -118.0956889600007, 33.951351986210618, 0.0 ], [ -118.096456500674194, 33.951721142000231, 0.0 ], [ -118.096656476526505, 33.951825132740929, 0.0 ], [ -118.096840057970894, 33.951617689754499, 0.0 ], [ -118.096996535476293, 33.951727050758038, 0.0 ], [ -118.096984206657893, 33.951744522318243, 0.0 ] ], [ [ -118.096984206657893, 33.951744522318243, 0.0 ], [ -118.097082447949305, 33.951813905230289, 0.0 ] ], [ [ -118.097082447949305, 33.951813905230289, 0.0 ], [ -118.097104160096407, 33.951784864978208, 0.0 ], [ -118.096924421828504, 33.951657741282922, 0.0 ] ], [ [ -118.0676531970403, 33.951452140771103, 0.0 ], [ -118.067728391497496, 33.95144793944673, 0.0 ], [ -118.067727088199206, 33.951433759562192, 0.0 ] ], [ [ -118.067727088199206, 33.951433759562192, 0.0 ], [ -118.067724220221194, 33.951402555960676, 0.0 ], [ -118.067767241931506, 33.951399766391297, 0.0 ] ], [ [ -118.067767241931506, 33.951399766391297, 0.0 ], [ -118.067778668947994, 33.951399025452559, 0.0 ], [ -118.067757082486395, 33.951123258404522, 0.0 ] ], [ [ -118.067757082486395, 33.951123258404522, 0.0 ], [ -118.067754808462993, 33.951094207756391, 0.0 ], [ -118.067754041518796, 33.951083214890133, 0.0 ], [ -118.068049485452903, 33.951066427334588, 0.0 ], [ -118.068073005073899, 33.951065063878247, 0.0 ], [ -118.068098825527301, 33.951018706364493, 0.0 ], [ -118.068095757750697, 33.950105361084567, 0.0 ], [ -118.070050357553697, 33.950105275868452, 0.0 ], [ -118.070341114606805, 33.950108087997137, 0.0 ], [ -118.071240399243905, 33.950128284193298, 0.0 ], [ -118.071241336620105, 33.950897614403083, 0.0 ], [ -118.072489325202497, 33.950818960018552, 0.0 ], [ -118.072632232464599, 33.950805836751798, 0.0 ], [ -118.072671005752795, 33.950505620720641, 0.0 ], [ -118.072661205910705, 33.950497439983003, 0.0 ], [ -118.072780763983801, 33.949752481554249, 0.0 ], [ -118.072780167471706, 33.948810333260226, 0.0 ], [ -118.073016386273395, 33.948809736748032, 0.0 ], [ -118.0730262713314, 33.948801385578307, 0.0 ], [ -118.073630112034493, 33.948792693544462, 0.0 ], [ -118.073686165301496, 33.948791880083881, 0.0 ] ], [ [ -118.073686165301496, 33.948791880083881, 0.0 ], [ -118.075021774823, 33.94877249734823, 0.0 ], [ -118.0750632158868, 33.948771855796977, 0.0 ], [ -118.075063189807693, 33.948774627748683, 0.0 ], [ -118.0765139072968, 33.948773775588457, 0.0 ], [ -118.0765139072968, 33.948770963459893, 0.0 ], [ -118.076638919195105, 33.94877028173174, 0.0 ], [ -118.076962740063095, 33.948768662627408, 0.0 ], [ -118.077131467778599, 33.948793460488567, 0.0 ], [ -118.077247617211, 33.948834705041222, 0.0 ], [ -118.078229561385498, 33.94918903324384, 0.0 ], [ -118.078239531659605, 33.949182642042523, 0.0 ], [ -118.078680098472304, 33.949340036027522, 0.0 ], [ -118.078759434584995, 33.949189800187952, 0.0 ], [ -118.078750742551094, 33.949185965467173, 0.0 ], [ -118.078944012479795, 33.948842630131011, 0.0 ], [ -118.0797970248192, 33.9472346038729, 0.0 ], [ -118.080366864330998, 33.946138129370297, 0.0 ], [ -118.080456937661907, 33.946165057631973, 0.0 ], [ -118.0807628631662, 33.945595473768172, 0.0 ], [ -118.080913780733894, 33.945307528843628, 0.0 ], [ -118.084266860607102, 33.946689562222318, 0.0 ], [ -118.088679516446902, 33.948484467207649, 0.0 ], [ -118.088782031316498, 33.948516082350267, 0.0 ], [ -118.089168571173701, 33.948684128337717, 0.0 ], [ -118.089358067299401, 33.948766010514198, 0.0 ] ], [ [ -118.089358067299401, 33.948766010514198, 0.0 ], [ -118.089533631947603, 33.948841872833142, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 2010", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.005009755473097, 34.132322601777439, 0.0 ], [ -118.004920436786605, 34.13232260176764, 0.0 ], [ -118.004920436786605, 34.132332231177713, 0.0 ], [ -118.003907303549695, 34.132331293801499, 0.0 ], [ -118.002902622482395, 34.132304795449897, 0.0 ] ], [ [ -117.985863606727506, 34.132327714728817, 0.0 ], [ -117.985795405885298, 34.132327714728817, 0.0 ], [ -117.985795405885298, 34.13231672186248, 0.0 ] ], [ [ -117.9859639631687, 34.132327714728817, 0.0 ], [ -117.985863606727506, 34.132327714728817, 0.0 ] ], [ [ -117.989904170504303, 34.132302340151902, 0.0 ], [ -117.9864606873371, 34.132320471367272, 0.0 ], [ -117.986459664744999, 34.132316807078467, 0.0 ], [ -117.986129197027395, 34.13231672186248, 0.0 ], [ -117.986129282243397, 34.132327714728817, 0.0 ], [ -117.9859639631687, 34.132327714728817, 0.0 ] ], [ [ -118.024966984418796, 34.130469503672067, 0.0 ], [ -118.014751382693902, 34.131963331036161, 0.0 ], [ -118.014601232070305, 34.131894135629587, 0.0 ], [ -118.014379073911599, 34.131858089254031, 0.0 ], [ -118.013626105177295, 34.13197134134186, 0.0 ], [ -118.013636416315407, 34.132022897032662, 0.0 ], [ -118.013078166181998, 34.132098398424553, 0.0 ], [ -118.005036160138999, 34.132147738498901, 0.0 ], [ -118.005036160138999, 34.13232260176764, 0.0 ], [ -118.005009755473097, 34.132322601777439, 0.0 ] ], [ [ -118.002902622482395, 34.132304795449897, 0.0 ], [ -118.002275672454601, 34.132288259712482, 0.0 ], [ -118.001453111461998, 34.132272965192911, 0.0 ] ], [ [ -117.990717142216099, 34.1322980595545, 0.0 ], [ -117.989904170504303, 34.132302340151902, 0.0 ] ], [ [ -117.997322086318107, 34.132265919694653, 0.0 ], [ -117.996890190554097, 34.132268660028288, 0.0 ], [ -117.996889764474105, 34.132190857803977, 0.0 ], [ -117.995178030322194, 34.13219170996409, 0.0 ], [ -117.994889574101506, 34.132161287845783, 0.0 ], [ -117.9908057668748, 34.132184892682709, 0.0 ], [ -117.990805681658699, 34.13229746304242, 0.0 ], [ -117.990717142216099, 34.1322980595545, 0.0 ] ], [ [ -118.001453111461998, 34.132272965192911, 0.0 ], [ -118.001436976406197, 34.132272665181141, 0.0 ], [ -118.001373064392794, 34.132240197878332, 0.0 ], [ -118.000375249192402, 34.132246533092527, 0.0 ] ], [ [ -118.000375249192402, 34.132246533092527, 0.0 ], [ -117.997322086318107, 34.132265919694653, 0.0 ] ], [ [ -118.031459176031106, 34.12941861030906, 0.0 ], [ -118.027779463161394, 34.12996211807134, 0.0 ], [ -118.027672772706794, 34.130073836270832, 0.0 ], [ -118.024966984418796, 34.130469503672067, 0.0 ] ], [ [ -118.031466071567294, 34.129417600288072, 0.0 ], [ -118.031465567232402, 34.129417672932853, 0.0 ], [ -118.031459176031106, 34.12941861030906, 0.0 ] ], [ [ -118.045763387009998, 34.127356848527839, 0.0 ], [ -118.040251764759901, 34.128152215066791, 0.0 ], [ -118.0402421353498, 34.128109521841843, 0.0 ], [ -118.040073492850397, 34.128132359734572, 0.0 ], [ -118.040084741364794, 34.128176160767772, 0.0 ], [ -118.031466071567294, 34.129417600288072, 0.0 ] ], [ [ -118.046025597574001, 34.12731880259124, 0.0 ], [ -118.045763387009998, 34.127356848527839, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1999", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.379038014943305, 33.904879946196118, 0.0 ], [ -118.379038007989294, 33.904888252293809, 0.0 ], [ -118.378962350851396, 33.90488851114339, 0.0 ] ], [ [ -118.379038015118496, 33.904879736862171, 0.0 ], [ -118.379038014943305, 33.904879946196118, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1998", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.226524762204903, 33.782044179578008, 0.0 ], [ -118.226522302542406, 33.782017610920612, 0.0 ] ], [ [ -118.226522302542406, 33.782017610920612, 0.0 ], [ -118.226518552779794, 33.781977106926327, 0.0 ], [ -118.226348846777498, 33.781988897452209, 0.0 ], [ -118.226343706871504, 33.78191733179009, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 1997", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254446454162803, 33.777532118420297, 0.0 ], [ -118.254423904354297, 33.777235806270838, 0.0 ], [ -118.254489861552102, 33.777230437661729, 0.0 ], [ -118.254407116798802, 33.776169583454688, 0.0 ], [ -118.254439839749693, 33.776133707511107, 0.0 ], [ -118.254488668527898, 33.776130810166549, 0.0 ], [ -118.2544859416153, 33.776086923917312, 0.0 ], [ -118.255568696338997, 33.776029829185248, 0.0 ], [ -118.255680016882707, 33.77746977125723, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5015", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.425213341249403, 33.917810698147697, 0.0 ], [ -118.425230805454206, 33.917804570356552, 0.0 ], [ -118.425254664096698, 33.917745690635023, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5256", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.436680600053705, 33.963494160955833, 0.0 ], [ -118.437001438361193, 33.963402212872481, 0.0 ], [ -118.437168802620405, 33.963242177190779, 0.0 ], [ -118.437181158943005, 33.963230417380331, 0.0 ], [ -118.437394284203805, 33.963027603257679, 0.0 ], [ -118.437488788767794, 33.962935229094242, 0.0 ], [ -118.437109236623897, 33.962648051113923, 0.0 ], [ -118.437036973440698, 33.962601011871982, 0.0 ], [ -118.437119036465901, 33.962512557645347, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5207", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.587302382989293, 34.447230556112011, 0.0 ], [ -118.587303235149506, 34.44722851092763, 0.0 ], [ -118.587303916877602, 34.447226806607183, 0.0 ], [ -118.587308603758601, 34.447215046796742, 0.0 ], [ -118.587309370702698, 34.447213086828391, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5206", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.587262246244904, 34.447332304037367, 0.0 ], [ -118.587269148742294, 34.447314834753747, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5205", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.587221683420296, 34.447435074555067, 0.0 ], [ -118.587222535580494, 34.447433029370572, 0.0 ], [ -118.587223132092603, 34.447431325050196, 0.0 ], [ -118.587227818973602, 34.447419650455757, 0.0 ], [ -118.5872285859177, 34.44741769048737, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5204", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.587181546675893, 34.447536907696431, 0.0 ], [ -118.587182228404103, 34.447534862511972, 0.0 ], [ -118.587182910132199, 34.447533158191654, 0.0 ], [ -118.587187597013099, 34.447521483597193, 0.0 ], [ -118.587188363957296, 34.44751952362877, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5116", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378202471213498, 33.94190442716809, 0.0 ], [ -118.378202471213498, 33.941896246430403, 0.0 ], [ -118.378050464684904, 33.941897057121437, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5102", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.167500753948801, 33.839687813674843, 0.0 ], [ -118.167520524064898, 33.839687813674843, 0.0 ], [ -118.167520950145104, 33.839583083188799, 0.0 ], [ -118.167528875234595, 33.839554876686861, 0.0 ], [ -118.167528449154503, 33.839417423249948, 0.0 ], [ -118.167517711936298, 33.839389813260098, 0.0 ], [ -118.167517626720297, 33.839356834661253, 0.0 ] ], [ [ -118.167517626720297, 33.839356834661253, 0.0 ], [ -118.167517878911497, 33.839343406144273, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5101", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.167536860279895, 33.839721814865939, 0.0 ], [ -118.167500924380803, 33.839721814865939, 0.0 ], [ -118.167500753948801, 33.839687813674843, 0.0 ] ], [ [ -118.1675368855404, 33.839721814865939, 0.0 ], [ -118.167536860279895, 33.839721814865939, 0.0 ] ], [ [ -118.167500753948801, 33.839687813674843, 0.0 ], [ -118.167499560924497, 33.83935691987724, 0.0 ], [ -118.167517626720297, 33.839356834661253, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5100", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.167077300803399, 33.84706919545512, 0.0 ], [ -118.167077324308195, 33.8470780699475, 0.0 ], [ -118.167116697572993, 33.847078015333992, 0.0 ], [ -118.167116685403997, 33.84707190812361, 0.0 ], [ -118.167189374083193, 33.847071596671427, 0.0 ], [ -118.167189367168305, 33.847068031391267, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5099", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1675501492645, 33.847064283578618, 0.0 ], [ -118.167549114849805, 33.847356348242712, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5071", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.328495981464698, 33.821925134331693, 0.0 ], [ -118.327267323415199, 33.82167323270285, 0.0 ], [ -118.327263403478398, 33.821686611617629, 0.0 ], [ -118.326985002747804, 33.821630624693888, 0.0 ], [ -118.326988837468605, 33.821617330995153, 0.0 ], [ -118.324007514012095, 33.821016782118441, 0.0 ], [ -118.3239974300255, 33.821051497927712, 0.0 ], [ -118.323994230523198, 33.821050850501038, 0.0 ] ], [ [ -118.323994230523198, 33.821050850501038, 0.0 ], [ -118.323947994851196, 33.821200394324443, 0.0 ], [ -118.3238653295479, 33.821182729303708, 0.0 ] ], [ [ -118.3238653295479, 33.821182729303708, 0.0 ], [ -118.323838060590305, 33.821177019027417, 0.0 ] ], [ [ -118.323838060590305, 33.821177019027417, 0.0 ], [ -118.323715178924303, 33.821151284593043, 0.0 ] ], [ [ -118.323715178924303, 33.821151284593043, 0.0 ], [ -118.323663909736993, 33.821140519266251, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5070", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.437649334814793, 33.963303771121183, 0.0 ], [ -118.437638265482803, 33.963289913731181, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5064", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.454551402668599, 34.13305046834941, 0.0 ], [ -118.454561817957597, 34.133048471808323, 0.0 ], [ -118.454603232942304, 34.133056908194071, 0.0 ], [ -118.454682398623106, 34.133070883621038, 0.0 ], [ -118.454775369298602, 34.133076337446226, 0.0 ], [ -118.454778850217593, 34.133084826673397, 0.0 ] ], [ [ -118.454477138310907, 34.133017386332803, 0.0 ], [ -118.454480862740596, 34.133040205854563, 0.0 ], [ -118.454492878199204, 34.133051624800977, 0.0 ], [ -118.454508472730495, 34.133058697730497, 0.0 ], [ -118.454551402668599, 34.13305046834941, 0.0 ] ], [ [ -118.448891417473703, 34.131465886860987, 0.0 ], [ -118.4489427589521, 34.131519526014827, 0.0 ], [ -118.448967130733294, 34.131560940999513, 0.0 ], [ -118.448989798194006, 34.131610877586013, 0.0 ], [ -118.449017663831896, 34.131680925152757, 0.0 ], [ -118.449050898078895, 34.131762391665859, 0.0 ], [ -118.449092739143694, 34.131863883943197, 0.0 ], [ -118.449160315445894, 34.131942282679702, 0.0 ], [ -118.449238032454303, 34.132006365125171, 0.0 ], [ -118.449331173561802, 34.132057665167949, 0.0 ], [ -118.449426104205799, 34.132085871669922, 0.0 ], [ -118.449534498980597, 34.132088257718401, 0.0 ], [ -118.449615368981597, 34.132080929140862, 0.0 ], [ -118.449685757412396, 34.132067805874101, 0.0 ], [ -118.449782136728601, 34.132040195884329, 0.0 ], [ -118.449991597700702, 34.131957877210972, 0.0 ], [ -118.450067184308494, 34.131931801109488, 0.0 ], [ -118.450180606828496, 34.131907003248322, 0.0 ], [ -118.450989136406506, 34.131825281087117, 0.0 ], [ -118.451102558926294, 34.131817696861518, 0.0 ], [ -118.451230042089094, 34.131818719453733, 0.0 ], [ -118.4513161102672, 34.131824088062849, 0.0 ], [ -118.451448706391105, 34.131842239074658, 0.0 ], [ -118.451534774569197, 34.131857577957867, 0.0 ], [ -118.452063966040399, 34.131997417443287, 0.0 ], [ -118.452229370331196, 34.132032526442643, 0.0 ], [ -118.452319017582099, 34.132050762670573, 0.0 ], [ -118.452430906213607, 34.132064738097469, 0.0 ], [ -118.452522257784807, 34.132074282291462, 0.0 ], [ -118.452708199135898, 34.132085104725732, 0.0 ], [ -118.452818298231094, 34.132087490774332, 0.0 ], [ -118.452938793680403, 34.132086979478167, 0.0 ], [ -118.453023072322097, 34.132088172502407, 0.0 ], [ -118.453119622070403, 34.132093626327517, 0.0 ], [ -118.4532298063816, 34.13210743132246, 0.0 ], [ -118.453353795687704, 34.132129928351141, 0.0 ], [ -118.453419326805502, 34.13214969846733, 0.0 ], [ -118.453552093361296, 34.132203640206683, 0.0 ], [ -118.453648728325604, 34.132247611671907, 0.0 ], [ -118.453726360117997, 34.132296014370041, 0.0 ], [ -118.453861171858406, 34.132387025077172, 0.0 ], [ -118.454018480627497, 34.132512377839582, 0.0 ], [ -118.454037483799397, 34.132532403603832, 0.0 ], [ -118.454108639174294, 34.132628015975889, 0.0 ], [ -118.454165819122395, 34.132703602583781, 0.0 ], [ -118.454231605888197, 34.132789159465801, 0.0 ], [ -118.454281883338794, 34.132854861015637, 0.0 ], [ -118.454318270578497, 34.132896276000317, 0.0 ], [ -118.454353038713805, 34.132931896295837, 0.0 ], [ -118.454413371654496, 34.132974589520749, 0.0 ], [ -118.454475494131501, 34.133007312471577, 0.0 ], [ -118.454477138310907, 34.133017386332803, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5063", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.444874966508195, 34.130436131073147, 0.0 ], [ -118.444875313200896, 34.130427994041298, 0.0 ], [ -118.445989171771103, 34.130497104231829, 0.0 ], [ -118.446094157905193, 34.130506818857931, 0.0 ], [ -118.446235531278901, 34.130531957583152, 0.0 ], [ -118.446302681500995, 34.130548915570728, 0.0 ], [ -118.447363605719303, 34.130885817560397, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5062", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.358820173153902, 34.193672936492078, 0.0 ], [ -118.359261166046707, 34.193764373279222, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5061", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.358613353878397, 34.194212694749368, 0.0 ], [ -118.358820173153902, 34.193672936492078, 0.0 ] ], [ [ -118.358820173153902, 34.193672936492078, 0.0 ], [ -118.357702905943, 34.193448562716803, 0.0 ], [ -118.357734435869602, 34.192725930884819, 0.0 ], [ -118.356005147217999, 34.192691844477693, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5060", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.042055435078893, 34.05856349186179, 0.0 ], [ -118.042055434852799, 34.058557955234917, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5321", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.444537857770001, 33.970278634222417, 0.0 ], [ -118.444620772955304, 33.970414042474829, 0.0 ], [ -118.444762657625205, 33.970638586682057, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5293", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.4392091200545, 33.963959326287167, 0.0 ], [ -118.439256850707395, 33.964006564871532, 0.0 ], [ -118.439438446041706, 33.964186370669303, 0.0 ], [ -118.439471168992497, 33.964162169320247, 0.0 ] ], [ [ -118.439207285244805, 33.963957510393087, 0.0 ], [ -118.4392091200545, 33.963959326287167, 0.0 ] ], [ [ -118.439207254985007, 33.963957480445202, 0.0 ], [ -118.439207285244805, 33.963957510393087, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5292", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.440815451675206, 33.962820613550178, 0.0 ], [ -118.440945320886499, 33.962955084426497, 0.0 ], [ -118.440908422350702, 33.962983120496361, 0.0 ], [ -118.440864962181607, 33.962938467302983, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5291", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.440035341675397, 33.963379746589972, 0.0 ], [ -118.4401413077575, 33.963484616761747, 0.0 ] ], [ [ -118.440034191223006, 33.963378608035562, 0.0 ], [ -118.440035341675397, 33.963379746589972, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5290", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.437788408286593, 33.962080171570449, 0.0 ], [ -118.438067064665304, 33.961820177499817, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5289", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.437223511303998, 33.961236532993127, 0.0 ], [ -118.436863558844195, 33.961666533019482, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5288", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438449514153703, 33.96254775186074, 0.0 ], [ -118.438474141582901, 33.96252142011128, 0.0 ], [ -118.4385092505823, 33.962474295653337, 0.0 ], [ -118.438851989406402, 33.962667821230028, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5286", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438578019908803, 33.962636717383518, 0.0 ], [ -118.438448832425607, 33.962711537047227, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5284", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438434942214599, 33.962435437149168, 0.0 ], [ -118.4385692426589, 33.962480090342588, 0.0 ], [ -118.438952373875395, 33.962387886611182, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5283", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438434942214599, 33.962435437149168, 0.0 ], [ -118.438630598191807, 33.962413877496623, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5282", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438195399988302, 33.962368031278963, 0.0 ], [ -118.438243461822395, 33.962317668612407, 0.0 ], [ -118.438328081328194, 33.962375104208483, 0.0 ], [ -118.438421648515799, 33.962427000763377, 0.0 ], [ -118.438434942214599, 33.962435437149168, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5266", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.438527081949104, 33.964631977811052, 0.0 ], [ -118.438507034965795, 33.964634606923653, 0.0 ], [ -118.438494369389403, 33.9646359980607, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5443", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551040726208797, 34.307626001318603, 0.0 ], [ -118.551040886167996, 34.30762587811315, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5408", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551927469565399, 34.307908595504003, 0.0 ], [ -118.551956609713997, 34.307934283442421, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5407", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551984562524098, 34.307863885241083, 0.0 ], [ -118.552013989996098, 34.30788982644826, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5406", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551942379367304, 34.307856697456337, 0.0 ], [ -118.551932860492201, 34.307848290540747, 0.0 ], [ -118.551983925828196, 34.307808671174563, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5405", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551893125703501, 34.307906372681522, 0.0 ], [ -118.551887740073795, 34.307910552966959, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5363", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551190505222294, 34.307573353033021, 0.0 ], [ -118.551190382641096, 34.307573445595899, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5356", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.551154323870705, 34.307718561829653, 0.0 ], [ -118.551091441009405, 34.307662671150013, 0.0 ], [ -118.551067203871497, 34.30764132988137, 0.0 ], [ -118.551062536986606, 34.307645014976082, 0.0 ], [ -118.551051434135502, 34.30763521882951, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5611", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.580462774959102, 34.448219317567933, 0.0 ], [ -118.580479306866593, 34.448368445599243, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5609", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.580485612852002, 34.448366826494919, 0.0 ], [ -118.5804759834419, 34.448217357599532, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5606", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.582927648277405, 34.448118847882789, 0.0 ], [ -118.583035190892005, 34.447996136816961, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5605", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.583039281260895, 34.448011390484169, 0.0 ], [ -118.582939748952001, 34.448123449547801, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5600", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5871068122282, 34.446414868388487, 0.0 ], [ -118.587228245053694, 34.446414101444297, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5598", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.586906213722003, 34.446416317060788, 0.0 ], [ -118.587027390899493, 34.446415550116598, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5562", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.553032824838297, 34.308902217763467, 0.0 ], [ -118.5530309170544, 34.308893899270103, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5555", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552144725260703, 34.307957757226859, 0.0 ], [ -118.552140038379605, 34.307953752074013, 0.0 ] ], [ [ -118.552140038379605, 34.307953752074013, 0.0 ], [ -118.552135351498606, 34.30794974692116, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5553", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552183328116797, 34.307991161905882, 0.0 ], [ -118.552178837315097, 34.307987306594967, 0.0 ] ], [ [ -118.552178837315097, 34.307987306594967, 0.0 ], [ -118.552174295218904, 34.307983407248237, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5552", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552203779961104, 34.30800880162149, 0.0 ], [ -118.552199163675994, 34.308004741000452, 0.0 ] ], [ [ -118.552199163675994, 34.308004741000452, 0.0 ], [ -118.552194576631194, 34.30800070609984, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5551", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552146089875095, 34.307948978635117, 0.0 ], [ -118.552140038379605, 34.307953752074013, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5550", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552166284913099, 34.307966534476712, 0.0 ], [ -118.552160319791895, 34.307971306573663, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5549", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552178837315097, 34.307987306594967, 0.0 ], [ -118.552178811667801, 34.30798732718506, 0.0 ] ], [ [ -118.552184862005106, 34.30798246987203, 0.0 ], [ -118.552178837315097, 34.307987306594967, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5548", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.552199163675994, 34.308004741000452, 0.0 ], [ -118.552199093080105, 34.30800479646868, 0.0 ] ], [ [ -118.552205058201295, 34.308000109587759, 0.0 ], [ -118.552199163675994, 34.308004741000452, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5545", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552125381224599, 34.308057374751812, 0.0 ], [ -118.552134669770496, 34.308065299841473, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5544", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552066156092096, 34.308006245141073, 0.0 ], [ -118.552075444638106, 34.308014340662758, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5543", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552086522720401, 34.308023884856787, 0.0 ], [ -118.552095640834295, 34.308031724730341, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5542", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552105099812294, 34.308039990684136, 0.0 ], [ -118.552114132710201, 34.308047745341739, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5803", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.314839808516297, 34.189391190361782, 0.0 ], [ -118.314856014622904, 34.189373824226692, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5799", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.328601309403695, 33.852596080421087, 0.0 ], [ -118.328601304451098, 33.852595995237792, 0.0 ] ], [ [ -118.328601304451098, 33.852595995237792, 0.0 ], [ -118.328601208397799, 33.852554496501782, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5798", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.326416910065902, 33.852875397998517, 0.0 ], [ -118.326399803810503, 33.85285779111549, 0.0 ], [ -118.3264077749363, 33.852851148510581, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5850", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.122715153452404, 33.980667463240188, 0.0 ], [ -118.122179881987407, 33.981579008155897, 0.0 ], [ -118.122157305788406, 33.981611312510367, 0.0 ], [ -118.122132125588095, 33.981635519895107, 0.0 ], [ -118.122094250961098, 33.981666306344863, 0.0 ], [ -118.122053773352505, 33.981695791087141, 0.0 ], [ -118.122003451738294, 33.981723933688272, 0.0 ], [ -118.121938042599197, 33.981758239180763, 0.0 ], [ -118.121884960420999, 33.981789017410676, 0.0 ], [ -118.121856995665297, 33.981809034812663, 0.0 ], [ -118.121842934058805, 33.981823627045763, 0.0 ], [ -118.121830199019101, 33.981844852112097, 0.0 ], [ -118.121823566185896, 33.981860240285201, 0.0 ] ], [ [ -118.127450707891299, 33.981253082768767, 0.0 ], [ -118.127219483142795, 33.981158504094083, 0.0 ], [ -118.127223147431593, 33.981150834652482, 0.0 ], [ -118.126025100094907, 33.980664714895163, 0.0 ] ], [ [ -118.123489066742394, 33.979635693853901, 0.0 ], [ -118.123487054265198, 33.979641129978049, 0.0 ], [ -118.123318906980998, 33.979641452804337, 0.0 ], [ -118.123111871968703, 33.979991868200713, 0.0 ], [ -118.122715153452404, 33.980667463240188, 0.0 ] ], [ [ -118.126025100094907, 33.980664714895163, 0.0 ], [ -118.125077906284503, 33.980280381479297, 0.0 ] ], [ [ -118.125077906284503, 33.980280381479297, 0.0 ], [ -118.1244191928579, 33.98001310188085, 0.0 ] ], [ [ -118.1244191928579, 33.98001310188085, 0.0 ], [ -118.123489066742394, 33.979635693853901, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5869", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.278121371129203, 34.157521063482193, 0.0 ], [ -118.278148043742803, 34.157549269984173, 0.0 ], [ -118.278802673192402, 34.157033968723823, 0.0 ], [ -118.278723933591905, 34.156957956035761, 0.0 ] ], [ [ -118.278113271339393, 34.157517060806882, 0.0 ], [ -118.278116002520093, 34.157515354009007, 0.0 ], [ -118.278121371129203, 34.157521063482193, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5870", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.521168131795207, 34.374004515452313, 0.0 ], [ -118.521154447148405, 34.374025748728158, 0.0 ], [ -118.521178223411994, 34.374036306834192, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5871", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.521453495876102, 34.374118278785538, 0.0 ], [ -118.521460106923897, 34.374121105290889, 0.0 ], [ -118.521447373385598, 34.37414158114666, 0.0 ], [ -118.5214407623521, 34.374138754633947, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5872", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.570947383966299, 34.381270801762547, 0.0 ], [ -118.570521218660701, 34.381144511623923, 0.0 ] ], [ [ -118.570957976892799, 34.381259233369789, 0.0 ], [ -118.570952923007496, 34.381257848927817, 0.0 ], [ -118.570947383966299, 34.381270801762547, 0.0 ] ], [ [ -118.570987776358805, 34.381259723680181, 0.0 ], [ -118.570984964230206, 34.381266626177592, 0.0 ], [ -118.570957976892799, 34.381259233369789, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5873", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.521413327289196, 34.374069259600937, 0.0 ], [ -118.521452706233802, 34.374086506678267, 0.0 ], [ -118.521414664505997, 34.374147984356703, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5874", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.521356644541399, 34.374115747956388, 0.0 ], [ -118.521353453985995, 34.374120803341661, 0.0 ] ], [ [ -118.521367629259203, 34.374098336399683, 0.0 ], [ -118.521356644541399, 34.374115747956388, 0.0 ] ], [ [ -118.521351058870295, 34.374075631253831, 0.0 ], [ -118.521347618523095, 34.374081213111637, 0.0 ], [ -118.521371687473405, 34.374091912665413, 0.0 ], [ -118.521367629259203, 34.374098336399683, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5875", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.643123646823, 34.397104278755911, 0.0 ], [ -118.643122283366594, 34.397104278755911, 0.0 ], [ -118.643109074883895, 34.397104278755911, 0.0 ], [ -118.643109415788402, 34.397205180778528, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5876", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.642932334997198, 34.397162390563878, 0.0 ], [ -118.6429323368627, 34.397162651728131, 0.0 ], [ -118.642932677726705, 34.397206537977361, 0.0 ], [ -118.642945800262893, 34.397206474172478, 0.0 ] ], [ [ -118.642945800262893, 34.397206474172478, 0.0 ], [ -118.642961309888804, 34.397206398760957, 0.0 ] ], [ [ -118.642961309888804, 34.397206398760957, 0.0 ], [ -118.642970293367597, 34.397206355081153, 0.0 ] ], [ [ -118.642970293367597, 34.397206355081153, 0.0 ], [ -118.643037834292898, 34.397206026681268, 0.0 ] ], [ [ -118.642932081214596, 34.397126861000586, 0.0 ], [ -118.642932334997198, 34.397162390563878, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5877", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.643096122091407, 34.397205266013188, 0.0 ], [ -118.643095610752994, 34.397136490410659, 0.0 ], [ -118.643074562396606, 34.397136575626689, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5878", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.642961310308806, 34.397206452761331, 0.0 ], [ -118.642961309888804, 34.397206398760957, 0.0 ] ], [ [ -118.642961309888804, 34.397206398760957, 0.0 ], [ -118.642961136725006, 34.397184137604413, 0.0 ] ], [ [ -118.642961136725006, 34.397184137604413, 0.0 ], [ -118.642960543364595, 34.397107857828587, 0.0 ], [ -118.642948016610006, 34.395485685711478, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5879", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643006389582297, 34.397247441665961, 0.0 ], [ -118.642960628580695, 34.397247612097978, 0.0 ], [ -118.642970513638701, 34.397235170559433, 0.0 ] ], [ [ -118.643006048718206, 34.397206197113313, 0.0 ], [ -118.643006389582297, 34.397247441665961, 0.0 ] ], [ [ -118.642970513638701, 34.397235170559433, 0.0 ], [ -118.642970293367597, 34.397206355081153, 0.0 ] ], [ [ -118.642970293367597, 34.397206355081153, 0.0 ], [ -118.642970123207803, 34.39718409508162, 0.0 ] ], [ [ -118.642970123207803, 34.39718409508162, 0.0 ], [ -118.642970006948204, 34.397168886225408, 0.0 ] ], [ [ -118.642970006948204, 34.397168886225408, 0.0 ], [ -118.642969576262502, 34.397112544709593, 0.0 ], [ -118.642957049507999, 34.395490372592519, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5880", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.642970513638701, 34.397235170559433, 0.0 ], [ -118.642979546536594, 34.397247526881991, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5881", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643006389582297, 34.397247441665961, 0.0 ], [ -118.643038175060198, 34.397247259973497, 0.0 ] ], [ [ -118.643038175060198, 34.397247259973497, 0.0 ], [ -118.643079419709693, 34.397247015585897, 0.0 ] ], [ [ -118.643079419709693, 34.397247015585897, 0.0 ], [ -118.643124839857606, 34.397246590642872, 0.0 ] ], [ [ -118.643124839857606, 34.397246590642872, 0.0 ], [ -118.643125095495193, 34.397246589505727, 0.0 ], [ -118.643227099068696, 34.397246248641679, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5882", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643038175060198, 34.397247259973497, 0.0 ], [ -118.643038345589005, 34.397271472582943, 0.0 ] ], [ [ -118.643037834292898, 34.397206026681268, 0.0 ], [ -118.643037919508899, 34.397217530843697, 0.0 ], [ -118.643038175060198, 34.397247259973497, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5883", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643096122091407, 34.397205266013188, 0.0 ], [ -118.643085043966806, 34.397205344953093, 0.0 ], [ -118.643053599256206, 34.397183700084497, 0.0 ], [ -118.643046997875103, 34.39718373132132, 0.0 ] ], [ [ -118.643109415788402, 34.397205180778528, 0.0 ], [ -118.643096122091407, 34.397205266013188, 0.0 ] ], [ [ -118.643124498983099, 34.397205089305018, 0.0 ], [ -118.643109415788402, 34.397205180778528, 0.0 ] ], [ [ -118.642945545345498, 34.397184211380669, 0.0 ], [ -118.642945381015394, 34.397162566466811, 0.0 ] ], [ [ -118.642961136725006, 34.397184137604413, 0.0 ], [ -118.642945545345498, 34.397184211380669, 0.0 ] ], [ [ -118.642970123207803, 34.39718409508162, 0.0 ], [ -118.642961136725006, 34.397184137604413, 0.0 ] ], [ [ -118.643032839505096, 34.39718379831681, 0.0 ], [ -118.642970123207803, 34.39718409508162, 0.0 ] ], [ [ -118.643046997875103, 34.39718373132132, 0.0 ], [ -118.643032839505096, 34.39718379831681, 0.0 ] ], [ [ -118.642945381015394, 34.397162566466811, 0.0 ], [ -118.642945119265406, 34.397126775784592, 0.0 ], [ -118.642932081214596, 34.397126861000586, 0.0 ] ], [ [ -118.642932081214596, 34.397126861000586, 0.0 ], [ -118.642925434365296, 34.397126861000586, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5884", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.642945800262893, 34.397206474172478, 0.0 ], [ -118.642945800993601, 34.397206537977361, 0.0 ] ], [ [ -118.642945545345498, 34.397184211380669, 0.0 ], [ -118.642945800262893, 34.397206474172478, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5885", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643054691996994, 34.39718901720353, 0.0 ], [ -118.643079078845602, 34.397205771033263, 0.0 ], [ -118.643079419709693, 34.397247015585897, 0.0 ] ], [ [ -118.643046997875103, 34.39718373132132, 0.0 ], [ -118.643054691996994, 34.39718901720353, 0.0 ] ], [ [ -118.643046952406806, 34.397183700084497, 0.0 ], [ -118.643046997875103, 34.39718373132132, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5886", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.643124754631202, 34.397239175712279, 0.0 ], [ -118.643124839857606, 34.397246590642872, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5849", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1282755257307, 33.979860468868658, 0.0 ], [ -118.128278753486796, 33.979855675943043, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5848", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.127450707891299, 33.981253082768767, 0.0 ], [ -118.126107243676898, 33.983521373838911, 0.0 ], [ -118.126069237332899, 33.983507909708138, 0.0 ], [ -118.125868127530694, 33.983865305687267, 0.0 ] ], [ [ -118.1282755257307, 33.979860468868658, 0.0 ], [ -118.127450707891299, 33.981253082768767, 0.0 ] ], [ [ -118.128302162180702, 33.979790553700077, 0.0 ], [ -118.128263933573194, 33.979855205052147, 0.0 ], [ -118.1282755257307, 33.979860468868658, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5847", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140899000112, 33.992332369606977, 0.0 ], [ -118.139652674338805, 33.993173350639474, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.131863936882894, 33.983337392980999, 0.0 ], [ -118.131818664009501, 33.983418185118339, 0.0 ], [ -118.131803399005094, 33.983410174769517, 0.0 ], [ -118.131741432155593, 33.983519145741397, 0.0 ], [ -118.131706065709807, 33.983582472838847, 0.0 ], [ -118.131672664066599, 33.983653810285041, 0.0 ], [ -118.131297546162102, 33.984292216512799, 0.0 ], [ -118.130817684604295, 33.985078655290543, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5845", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.149862182762106, 34.003932779820133, 0.0 ], [ -118.149827797182596, 34.00395936355973, 0.0 ] ], [ [ -118.151101688688001, 34.002974507675091, 0.0 ], [ -118.149862182762106, 34.003932779820133, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5844", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1500177153615, 34.001841560256373, 0.0 ], [ -118.1492871422154, 34.002410297993123, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5843", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.148444907005398, 34.000185687293417, 0.0 ], [ -118.148315188728205, 34.000287492246528, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5842", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1419371770872, 34.00575053325889, 0.0 ], [ -118.141222444830404, 34.006965948443913, 0.0 ], [ -118.140811011920704, 34.007674320229583, 0.0 ], [ -118.140683677816298, 34.007890272875741, 0.0 ], [ -118.140669615575504, 34.007916899475227, 0.0 ], [ -118.140659172332406, 34.007940831907383, 0.0 ], [ -118.140648293954101, 34.00797216163668, 0.0 ], [ -118.140599492890203, 34.00814482431835, 0.0 ] ], [ [ -118.142871906995296, 34.004184651177297, 0.0 ], [ -118.142709952357507, 34.004440493295348, 0.0 ], [ -118.142108535741201, 34.00545913475505, 0.0 ], [ -118.1419371770872, 34.00575053325889, 0.0 ] ], [ [ -118.142986665306097, 34.003973171667027, 0.0 ], [ -118.142889282330401, 34.004144478448033, 0.0 ], [ -118.142884875453902, 34.004154143629677, 0.0 ], [ -118.142880574554496, 34.004167046328078, 0.0 ], [ -118.142878228609305, 34.004179558035617, 0.0 ], [ -118.142871906995296, 34.004184651177297, 0.0 ] ], [ [ -118.143713140577802, 34.002688972965089, 0.0 ], [ -118.143572503568805, 34.002942593638522, 0.0 ], [ -118.142986665306097, 34.003973171667027, 0.0 ] ], [ [ -118.146902388972904, 33.998566923106573, 0.0 ], [ -118.146898241643399, 33.998569479084843, 0.0 ], [ -118.146896514621304, 33.998566932834272, 0.0 ], [ -118.145879128455306, 33.999239680515707, 0.0 ], [ -118.145643789921706, 33.999396532399388, 0.0 ], [ -118.145609377362504, 33.999422579474533, 0.0 ], [ -118.145575725301796, 33.999450337671433, 0.0 ], [ -118.145549678226701, 33.999472962503191, 0.0 ], [ -118.145524201525404, 33.999496918207292, 0.0 ], [ -118.145492482726098, 33.999531834399271, 0.0 ], [ -118.145464689251099, 33.999567039467649, 0.0 ], [ -118.1454331899794, 33.999608729680183, 0.0 ], [ -118.145405859728996, 33.999647640545227, 0.0 ], [ -118.145373897232702, 33.99970183782149, 0.0 ], [ -118.145294685828901, 33.999840341971961, 0.0 ], [ -118.144653584487898, 34.001006412964678, 0.0 ], [ -118.1445329384524, 34.00121556788207, 0.0 ], [ -118.144022054388401, 34.002131886823392, 0.0 ], [ -118.143713140577802, 34.002688972965089, 0.0 ] ], [ [ -118.146899971152905, 33.9985646012003, 0.0 ], [ -118.146926659160698, 33.998548136496339, 0.0 ], [ -118.146928439115698, 33.998550868534288, 0.0 ], [ -118.146902388972904, 33.998566923106573, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5841", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.134195452771294, 33.98563920522929, 0.0 ], [ -118.134157516576195, 33.985703280184509, 0.0 ], [ -118.134126468762702, 33.985690524415553, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5840", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.155490455338395, 34.016295093449301, 0.0 ], [ -118.155460408523695, 34.016345427945069, 0.0 ], [ -118.155479438990895, 34.016356540371007, 0.0 ] ], [ [ -118.155546395054998, 34.016201383102619, 0.0 ], [ -118.155490455338395, 34.016295093449301, 0.0 ] ], [ [ -118.159025638466005, 34.010633966092932, 0.0 ], [ -118.158679452904906, 34.011008650755137, 0.0 ], [ -118.158591043775999, 34.011145564485687, 0.0 ], [ -118.158579666253701, 34.011138395626233, 0.0 ], [ -118.156761464620402, 34.014190271972993, 0.0 ], [ -118.155983820363005, 34.015530309768117, 0.0 ], [ -118.155613041802496, 34.01616985980241, 0.0 ], [ -118.155577497859696, 34.016149279610097, 0.0 ], [ -118.155546395054998, 34.016201383102619, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5852", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.124631463357801, 33.976125925518247, 0.0 ], [ -118.124612299074599, 33.976158198594668, 0.0 ], [ -118.124539354163105, 33.976281165308521, 0.0 ], [ -118.124491974057193, 33.976261821272502, 0.0 ], [ -118.124299385856702, 33.976588283837089, 0.0 ], [ -118.124309611778898, 33.976592544638081, 0.0 ], [ -118.123035885259895, 33.978727007999296, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5853", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1223606677231, 33.975681107409073, 0.0 ], [ -118.122280075731098, 33.975704983046093, 0.0 ] ], [ [ -118.122483651208597, 33.97564467315577, 0.0 ], [ -118.1223606677231, 33.975681107409073, 0.0 ] ], [ [ -118.123614704631294, 33.975299945816417, 0.0 ], [ -118.1236171844523, 33.975307994880552, 0.0 ], [ -118.123196683953196, 33.975436431712247, 0.0 ], [ -118.123195445652797, 33.975432943659243, 0.0 ], [ -118.122878554906094, 33.975529074665722, 0.0 ], [ -118.122879696406997, 33.975532499168636, 0.0 ], [ -118.122485295467897, 33.97564971195731, 0.0 ], [ -118.122483651208597, 33.97564467315577, 0.0 ] ], [ [ -118.123738801859403, 33.97526697682752, 0.0 ], [ -118.123614704631294, 33.975299945816417, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5851", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.123614704631294, 33.975299945816417, 0.0 ], [ -118.123608290279506, 33.975301890414457, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5854", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.138528868464405, 33.991095634107452, 0.0 ], [ -118.138522185893706, 33.991107382823813, 0.0 ], [ -118.138334541605502, 33.991014954006417, 0.0 ] ], [ [ -118.138534976274698, 33.991058371575711, 0.0 ], [ -118.138546750675602, 33.991064195154209, 0.0 ], [ -118.138528868464405, 33.991095634107452, 0.0 ] ], [ [ -118.138661420174799, 33.990425103042263, 0.0 ], [ -118.138351053052901, 33.990967403778221, 0.0 ], [ -118.138534976274698, 33.991058371575711, 0.0 ] ], [ [ -118.1387092012355, 33.990341613674516, 0.0 ], [ -118.138661420174799, 33.990425103042263, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5855", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.123750846675307, 33.97526249204661, 0.0 ], [ -118.124404627638896, 33.975883036072858, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5856", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.173702094998205, 34.017393111006818, 0.0 ], [ -118.173859094709599, 34.017469015825966, 0.0 ], [ -118.173859094709599, 34.017569025504429, 0.0 ] ], [ [ -118.173666408661006, 34.017375857695043, 0.0 ], [ -118.173702094998205, 34.017393111006818, 0.0 ] ], [ [ -118.173643619433406, 34.017230938361458, 0.0 ], [ -118.173591172102107, 34.017339482995069, 0.0 ], [ -118.173666408661006, 34.017375857695043, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5857", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.614516708706901, 34.17190422146534, 0.0 ], [ -118.6145164213209, 34.171858490512079, 0.0 ] ], [ [ -118.6145164213209, 34.171858490512079, 0.0 ], [ -118.614513220966899, 34.171358610903809, 0.0 ], [ -118.614471379902199, 34.171358866551962, 0.0 ], [ -118.614464733052799, 34.171358866551962, 0.0 ], [ -118.614463625244497, 34.17130390222043, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5868", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.278121371129203, 34.157521063482193, 0.0 ], [ -118.278478341028304, 34.157240021055102, 0.0 ], [ -118.278741828955603, 34.157032690483547, 0.0 ], [ -118.278690188048799, 34.15698190173682, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6157", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.234736453563002, 33.991099947834229, 0.0 ], [ -118.234730531327997, 33.991099960634031, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6147", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.695341757186597, 34.152333613192177, 0.0 ], [ -118.695351820192798, 34.152297402183038, 0.0 ], [ -118.695331954662805, 34.152293772194277, 0.0 ] ], [ [ -118.695331954662805, 34.152293772194277, 0.0 ], [ -118.695293248193096, 34.152286699438022, 0.0 ] ], [ [ -118.695293248193096, 34.152286699438022, 0.0 ], [ -118.695225921017794, 34.152274396831892, 0.0 ] ], [ [ -118.695225921017794, 34.152274396831892, 0.0 ], [ -118.695093565551005, 34.152250211572778, 0.0 ] ], [ [ -118.695093565551005, 34.152250211572778, 0.0 ], [ -118.695022545575299, 34.152237234059669, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6146", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.666264052175407, 34.152501951575942, 0.0 ], [ -118.666232179010706, 34.152556287787753, 0.0 ] ], [ [ -118.666323452053206, 34.152400688613568, 0.0 ], [ -118.666327908261295, 34.152402495309524, 0.0 ], [ -118.666268508387503, 34.152503758274008, 0.0 ], [ -118.666264052175407, 34.152501951575942, 0.0 ] ], [ [ -118.666405983185399, 34.152258965896877, 0.0 ], [ -118.666400231685401, 34.152269796810053, 0.0 ], [ -118.666323452053206, 34.152400688613568, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6144", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.614470186877895, 34.171303902220352, 0.0 ], [ -118.614470186877995, 34.171298363179197, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6143", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.614470272093897, 34.171229679068922, 0.0 ], [ -118.614523106025004, 34.171229423420698, 0.0 ], [ -118.614520293896405, 34.170602063096808, 0.0 ], [ -118.614512198374797, 34.170086761836387, 0.0 ], [ -118.614486463137396, 34.16882547955521, 0.0 ], [ -118.613820073877207, 34.167288779104076, 0.0 ], [ -118.613711706705402, 34.167296905104358, 0.0 ], [ -118.613570513252498, 34.16728533386155, 0.0 ], [ -118.613426509141405, 34.167257020710608, 0.0 ], [ -118.613248745174204, 34.167206537264747, 0.0 ], [ -118.613034328980007, 34.16710597137201, 0.0 ], [ -118.612903234740401, 34.167017110438962, 0.0 ], [ -118.612838385350898, 34.166961123515179, 0.0 ], [ -118.612693773768399, 34.166810461595517, 0.0 ], [ -118.612555042091202, 34.166638240023318, 0.0 ], [ -118.612453464597905, 34.166531464352772, 0.0 ], [ -118.612304851620493, 34.166407032348793, 0.0 ], [ -118.612186152970494, 34.166347311727307, 0.0 ], [ -118.611992020340097, 34.166263397315397, 0.0 ], [ -118.611414138523003, 34.166077536318703, 0.0 ], [ -118.610958860859597, 34.165939979972457, 0.0 ], [ -118.609358674475104, 34.165958727496353, 0.0 ], [ -118.607423333492207, 34.165960005736707, 0.0 ], [ -118.605997839944493, 34.165967163882257, 0.0 ], [ -118.605734437232996, 34.165970572522909, 0.0 ], [ -118.604664124048, 34.165983866221652, 0.0 ], [ -118.604644694795894, 34.164816491992212, 0.0 ], [ -118.604665828368297, 34.164288578761202, 0.0 ], [ -118.604425433981802, 34.163544813356857, 0.0 ], [ -118.604421940124993, 34.162688221944727, 0.0 ], [ -118.604467360262603, 34.161840066918323, 0.0 ], [ -118.604468297638803, 34.16018057018541, 0.0 ], [ -118.604462162085497, 34.159354060027582, 0.0 ], [ -118.6044556856681, 34.157731120966439, 0.0 ], [ -118.604444863233894, 34.15696042730027, 0.0 ], [ -118.605225466137796, 34.156957853452447, 0.0 ], [ -118.605225899755496, 34.157002470603189, 0.0 ], [ -118.605230450128005, 34.157002439587679, 0.0 ] ], [ [ -118.605445295558795, 34.157000975098633, 0.0 ], [ -118.605453169414105, 34.157000921420533, 0.0 ], [ -118.605453195921399, 34.15700916500051, 0.0 ], [ -118.605463112163605, 34.157009142963886, 0.0 ], [ -118.6054625001847, 34.156872077247243, 0.0 ] ], [ [ -118.605230450128005, 34.157002439587679, 0.0 ], [ -118.605445295558795, 34.157000975098633, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6142", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.642450525497395, 34.192406882113858, 0.0 ], [ -118.642450099417303, 34.192413699395161, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6141", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.642438758886598, 34.192495082539033, 0.0 ], [ -118.642438821133894, 34.192503175469618, 0.0 ], [ -118.642264900860596, 34.192504594555913, 0.0 ] ], [ [ -118.642438570495401, 34.192481154738509, 0.0 ], [ -118.642444849013103, 34.192481070924671, 0.0 ], [ -118.642444989746494, 34.192494957615352, 0.0 ], [ -118.642438758886598, 34.192495082539033, 0.0 ] ], [ [ -118.642450525497395, 34.192406882113858, 0.0 ], [ -118.642438380610699, 34.19240753017786, 0.0 ], [ -118.642438570495401, 34.192481154738509, 0.0 ] ], [ [ -118.640727781094199, 34.172202319280302, 0.0 ], [ -118.640734839353499, 34.172628324472058, 0.0 ], [ -118.6407435845951, 34.173156148434707, 0.0 ], [ -118.640771819007796, 34.174697685935847, 0.0 ], [ -118.640778103111103, 34.175319202682871, 0.0 ], [ -118.640836448901993, 34.181430547709631, 0.0 ], [ -118.642919639675995, 34.181622795046081, 0.0 ], [ -118.642762842202998, 34.185305405260337, 0.0 ], [ -118.642681546122006, 34.185373833722792, 0.0 ], [ -118.642686233003005, 34.185585425095411, 0.0 ], [ -118.642761137882701, 34.18563817381041, 0.0 ], [ -118.642450525497395, 34.192406882113858, 0.0 ] ], [ [ -118.640855537289994, 34.171538246269591, 0.0 ], [ -118.640855196426003, 34.171524526490842, 0.0 ], [ -118.640718168558394, 34.17152410584724, 0.0 ], [ -118.640722770734101, 34.17220241991356, 0.0 ], [ -118.640727781094199, 34.172202319280302, 0.0 ] ], [ [ -118.640869159127206, 34.171543212513967, 0.0 ], [ -118.640869086636897, 34.17153841670158, 0.0 ], [ -118.640855537289994, 34.171538246269591, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6140", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.695283738323596, 34.152322670660872, 0.0 ], [ -118.695293248193096, 34.152286699438022, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6139", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.695322633382901, 34.152329959318621, 0.0 ], [ -118.695327064615796, 34.152312660467032, 0.0 ] ], [ [ -118.695327064615796, 34.152312660467032, 0.0 ], [ -118.695331954662805, 34.152293772194277, 0.0 ] ], [ [ -118.695331954662805, 34.152293772194277, 0.0 ], [ -118.695338227914206, 34.152269541161907, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6138", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6952968981455, 34.152325102005634, 0.0 ], [ -118.695301755458601, 34.152307717938093, 0.0 ], [ -118.695327064615796, 34.152312660467032, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6137", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.658081682772206, 34.150794800931543, 0.0 ], [ -118.657853673770006, 34.150852066280557, 0.0 ], [ -118.657850104516399, 34.15086234137285, 0.0 ], [ -118.6575092184558, 34.150961560503013, 0.0 ], [ -118.656121475603996, 34.151336766629811, 0.0 ], [ -118.655669705680907, 34.151448008039416, 0.0 ], [ -118.655237188986007, 34.151466465409086, 0.0 ], [ -118.654996181111997, 34.151467256738371, 0.0 ], [ -118.654745768131306, 34.151473013358633, 0.0 ], [ -118.654237775527903, 34.151491689350422, 0.0 ], [ -118.654130555993405, 34.151522148955223, 0.0 ], [ -118.653682934035302, 34.151697912113853, 0.0 ], [ -118.653277597594695, 34.151879107193828, 0.0 ], [ -118.653126624890405, 34.151938266127139, 0.0 ], [ -118.653010836429402, 34.1519836380496, 0.0 ], [ -118.652880655028298, 34.152027747315117, 0.0 ], [ -118.652836527533694, 34.152040887920172, 0.0 ], [ -118.652806427833198, 34.152049851227062, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6136", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.485247172506106, 34.228116255481652, 0.0 ], [ -118.485250699778405, 34.228116255481652, 0.0 ], [ -118.485250599000693, 34.228132984584363, 0.0 ] ], [ [ -118.485247106173006, 34.228122302462609, 0.0 ], [ -118.485240319672599, 34.228122302145273, 0.0 ], [ -118.485240319672599, 34.228116255481652, 0.0 ], [ -118.485247172506106, 34.228116255481652, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6135", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.484990345608097, 34.249930364911258, 0.0 ], [ -118.485007326703595, 34.249930292374408, 0.0 ], [ -118.485007310934904, 34.249947198224532, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6134", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.484853664901195, 34.264412352019903, 0.0 ], [ -118.484895073331103, 34.264412359264263, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6133", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.487246165982299, 34.135521014568212, 0.0 ], [ -118.487257524835698, 34.135526896151433, 0.0 ], [ -118.487260401230301, 34.135531426134939, 0.0 ], [ -118.4873447607374, 34.1355754900503, 0.0 ], [ -118.487390521916595, 34.135523485832763, 0.0 ], [ -118.487385202344498, 34.135520374699773, 0.0 ], [ -118.487392712163398, 34.135511316939123, 0.0 ], [ -118.487398353667899, 34.135514511016993, 0.0 ] ], [ [ -118.487398353667899, 34.135514511016993, 0.0 ], [ -118.487400881595207, 34.135515942265911, 0.0 ], [ -118.487411977993304, 34.135502282878527, 0.0 ] ], [ [ -118.487411977993304, 34.135502282878527, 0.0 ], [ -118.487413816677901, 34.135500019503972, 0.0 ], [ -118.487419502647896, 34.135503246530249, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6132", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.474779454959304, 34.155772476880358, 0.0 ], [ -118.474769621619501, 34.155772519154937, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6131", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.474779524781496, 34.155783339992652, 0.0 ], [ -118.474779884260897, 34.15583926874524, 0.0 ] ], [ [ -118.474779454959304, 34.155772476880358, 0.0 ], [ -118.474779524781496, 34.155783339992652, 0.0 ] ], [ [ -118.474779318883094, 34.155751468445118, 0.0 ], [ -118.474779454959304, 34.155772476880358, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6130", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.474489813465198, 34.155784699586093, 0.0 ], [ -118.474489979481802, 34.155815493961498, 0.0 ] ], [ [ -118.4744897527262, 34.155773433131557, 0.0 ], [ -118.474489813465198, 34.155784699586093, 0.0 ] ], [ [ -118.474489708653394, 34.155765258091108, 0.0 ], [ -118.4744897527262, 34.155773433131557, 0.0 ] ], [ [ -118.474633416340794, 34.155751865920983, 0.0 ], [ -118.474489638598797, 34.155752263676277, 0.0 ], [ -118.474489708653394, 34.155765258091108, 0.0 ] ], [ [ -118.474779318883094, 34.155751468445118, 0.0 ], [ -118.474633416340794, 34.155751865920983, 0.0 ] ], [ [ -118.474855461473993, 34.155718676305092, 0.0 ], [ -118.474828968718896, 34.155718773710802, 0.0 ], [ -118.474829053938706, 34.155731130033487, 0.0 ], [ -118.474797694455006, 34.155751411452158, 0.0 ], [ -118.474779318883094, 34.155751468445118, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6128", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.469184833328697, 34.179498281147872, 0.0 ], [ -118.469177472838894, 34.179501171848067, 0.0 ], [ -118.469169802311598, 34.179487793372097, 0.0 ] ], [ [ -118.469169802311598, 34.179487793372097, 0.0 ], [ -118.469153202281205, 34.179458840589739, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6127", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.483575860422505, 34.202006184332852, 0.0 ], [ -118.483552508596304, 34.20200618627058, 0.0 ], [ -118.483552508596304, 34.201946084057703, 0.0 ] ], [ [ -118.483552508596304, 34.201946084057703, 0.0 ], [ -118.483552508596304, 34.201940311596353, 0.0 ], [ -118.483529645368804, 34.201940311596353, 0.0 ], [ -118.483529661245996, 34.201848652282123, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6126", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.474741418637606, 34.155783426294491, 0.0 ], [ -118.474741333427204, 34.155772433428112, 0.0 ], [ -118.474656885556996, 34.155772770016192, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6125", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.474779524781496, 34.155783339992652, 0.0 ], [ -118.474633421851394, 34.155784178756747, 0.0 ], [ -118.474633416340794, 34.155751865920983, 0.0 ] ], [ [ -118.474855758416297, 34.155782902342011, 0.0 ], [ -118.474779524781496, 34.155783339992652, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6124", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.483630225598304, 34.186892796140633, 0.0 ], [ -118.483622039812403, 34.186892834131093, 0.0 ], [ -118.483622435369995, 34.18688584594554, 0.0 ], [ -118.483497219391296, 34.186885384461597, 0.0 ], [ -118.483497217158799, 34.186877050542812, 0.0 ] ], [ [ -118.483497217158799, 34.186877050542812, 0.0 ], [ -118.483493634675995, 34.186877050542812, 0.0 ], [ -118.483493634675995, 34.18686052725463, 0.0 ], [ -118.483497070935002, 34.18686052725463, 0.0 ] ], [ [ -118.483497070935002, 34.18686052725463, 0.0 ], [ -118.483497070935002, 34.186852192498748, 0.0 ], [ -118.483569386721996, 34.186852386109827, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6123", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.570942615115399, 34.381246679861633, 0.0 ], [ -118.570948236126398, 34.381233562362709, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6122", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.570970477507203, 34.381182091887908, 0.0 ], [ -118.571031833040095, 34.381201265491853, 0.0 ], [ -118.571034219088602, 34.381196152530883, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6121", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.570992627831799, 34.381261186361279, 0.0 ], [ -118.570998172712905, 34.381248304733788, 0.0 ], [ -118.570948236126398, 34.381233562362709, 0.0 ] ], [ [ -118.570948236126398, 34.381233562362709, 0.0 ], [ -118.570970477507203, 34.381182091887908, 0.0 ] ], [ [ -118.570970477507203, 34.381182091887908, 0.0 ], [ -118.570784877020102, 34.381121673731187, 0.0 ], [ -118.570514997891394, 34.381033304720603, 0.0 ], [ -118.570146012533797, 34.380893806099223, 0.0 ], [ -118.569800035501004, 34.380746978900383, 0.0 ], [ -118.569709365657999, 34.380704200459363, 0.0 ], [ -118.569707691232495, 34.380706640004163, 0.0 ] ], [ [ -118.569707691232495, 34.380706640004163, 0.0 ], [ -118.569704448023103, 34.38071136518009, 0.0 ], [ -118.569580584523607, 34.380652925639843, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6118", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2194112844373, 34.086581711936503, 0.0 ], [ -118.219314135383598, 34.086511347045352, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6115", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.243017408366399, 34.110739460906707, 0.0 ], [ -118.243102141243796, 34.110846210083928, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6113", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.213003897876007, 34.066338523233753, 0.0 ], [ -118.213003582974096, 34.066214853039106, 0.0 ], [ -118.213013913786895, 34.066214851392829, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6073", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.189976308242706, 33.915141825444707, 0.0 ], [ -118.190004259096597, 33.91515043226245, 0.0 ], [ -118.190016615419196, 33.915120606656153, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6069", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.183570428551207, 33.95370649818944, 0.0 ], [ -118.183572154064194, 33.953706249137618, 0.0 ], [ -118.183573602736402, 33.953706078705594, 0.0 ], [ -118.183577778321293, 33.953705482193513, 0.0 ], [ -118.183578545265505, 33.953705396977519, 0.0 ], [ -118.183588174675506, 33.953704033521262, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6068", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.165354370853095, 33.885369341841347, 0.0 ], [ -118.164781620855294, 33.885367474949113, 0.0 ], [ -118.1647818753504, 33.885496948156991, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6066", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.181752569833705, 33.940671751300833, 0.0 ], [ -118.181608225040506, 33.940659733724743, 0.0 ] ], [ [ -118.181787931592396, 33.940529106003218, 0.0 ], [ -118.181770208776896, 33.940527599544701, 0.0 ], [ -118.181752569833705, 33.940671751300833, 0.0 ] ], [ [ -118.181801634735805, 33.940419732891051, 0.0 ], [ -118.181811467571706, 33.940420622838637, 0.0 ], [ -118.181798087688406, 33.940529969281897, 0.0 ], [ -118.181787931592396, 33.940529106003218, 0.0 ] ], [ [ -118.181699276422293, 33.940225415966978, 0.0 ], [ -118.181702173766894, 33.940225842047028, 0.0 ], [ -118.181707201511998, 33.940226523775223, 0.0 ], [ -118.181807454631596, 33.940235071999311, 0.0 ], [ -118.181783607870301, 33.94041810131953, 0.0 ], [ -118.181801634735805, 33.940419732891051, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6065", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.062425909998396, 33.917214108568409, 0.0 ], [ -118.062425995214497, 33.917289183880207, 0.0 ], [ -118.062268004717296, 33.917290632552437, 0.0 ], [ -118.061836044722398, 33.917340398706919, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6064", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.058579173713994, 33.917244881389863, 0.0 ], [ -118.058579003301602, 33.917330258000803, 0.0 ], [ -118.058875384611795, 33.917330258000803, 0.0 ], [ -118.058875725476, 33.917364259191977, 0.0 ], [ -118.060025033909596, 33.917400646431602, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6063", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.047183589796902, 33.911864477119543, 0.0 ], [ -118.047272140155599, 33.911857149514539, 0.0 ], [ -118.047272815960298, 33.911862575606428, 0.0 ] ], [ [ -118.047272815960298, 33.911862575606428, 0.0 ], [ -118.047272827412797, 33.911862667559959, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6062", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.055787950543007, 33.920857273435317, 0.0 ], [ -118.055787968836796, 33.920884751791348, 0.0 ], [ -118.055696020735397, 33.920884240491901, 0.0 ] ], [ [ -118.055696020735397, 33.920884240491901, 0.0 ], [ -118.055696013612604, 33.920873523933139, 0.0 ], [ -118.055653164170906, 33.920873543718038, 0.0 ] ], [ [ -118.055653164170906, 33.920873543718038, 0.0 ], [ -118.055643275838193, 33.920873548282657, 0.0 ], [ -118.055643268539697, 33.920862556940257, 0.0 ], [ -118.055435613579704, 33.920862652592277, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6061", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.030744292620994, 33.917226824689678, 0.0 ], [ -118.030744290607998, 33.91722132907384, 0.0 ], [ -118.030876129312006, 33.917221295383357, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6060", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205144706816895, 34.009018931508542, 0.0 ], [ -118.205146556282699, 34.009019853525842, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6058", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.162324892764701, 33.975207304803668, 0.0 ], [ -118.162338545628202, 33.975208640134881, 0.0 ], [ -118.162351159320195, 33.975095803196531, 0.0 ], [ -118.162337820724602, 33.975094313270311, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6057", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.162302763621597, 33.975400715507568, 0.0 ], [ -118.162324892764701, 33.975207304803668, 0.0 ] ], [ [ -118.162324892764701, 33.975207304803668, 0.0 ], [ -118.162337820724602, 33.975094313270311, 0.0 ] ], [ [ -118.162337820724602, 33.975094313270311, 0.0 ], [ -118.162366663229704, 33.974842227178108, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6056", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.162657414351699, 33.98110112617551, 0.0 ], [ -118.159714410147302, 33.980791676243747, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6055", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.162938060255598, 33.979358230011947, 0.0 ], [ -118.162037628649799, 33.979266635181197, 0.0 ] ], [ [ -118.162037628649799, 33.979266635181197, 0.0 ], [ -118.158082767082405, 33.978864333803187, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6054", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.169086976819997, 33.986654279724149, 0.0 ], [ -118.1690870839344, 33.986652867527297, 0.0 ], [ -118.169094261876793, 33.986653626171623, 0.0 ], [ -118.169100506103106, 33.986660162184258, 0.0 ], [ -118.169351238385502, 33.986686340502622, 0.0 ], [ -118.169358217510606, 33.986681518654819, 0.0 ], [ -118.169378601475103, 33.986684193473657, 0.0 ] ], [ [ -118.169071820040699, 33.986653276201523, 0.0 ], [ -118.169071176646995, 33.986663677732643, 0.0 ], [ -118.169086171517804, 33.986664896827861, 0.0 ], [ -118.169086976819997, 33.986654279724149, 0.0 ] ], [ [ -118.161929902404495, 33.985883865224949, 0.0 ], [ -118.162304343761093, 33.985924101885431, 0.0 ], [ -118.162306187032499, 33.985903795682319, 0.0 ], [ -118.163849035426594, 33.986084285193371, 0.0 ], [ -118.165263519607905, 33.986237911289933, 0.0 ], [ -118.167176351858402, 33.986441184844487, 0.0 ], [ -118.167989446076405, 33.986519871381653, 0.0 ], [ -118.168954108362897, 33.986610307885897, 0.0 ], [ -118.168950807775005, 33.986642983705188, 0.0 ], [ -118.169061377466804, 33.98665453576254, 0.0 ], [ -118.1690684407248, 33.986651565233558, 0.0 ], [ -118.169071908104101, 33.986651852509347, 0.0 ], [ -118.169071820040699, 33.986653276201523, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6053", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.139034066844005, 33.985993745223212, 0.0 ], [ -118.138188307485905, 33.985961704971039, 0.0 ], [ -118.137963023112306, 33.985950672564528, 0.0 ], [ -118.137962493749995, 33.985959865284599, 0.0 ], [ -118.137914827318298, 33.985957555457503, 0.0 ], [ -118.137915247286898, 33.985948526133377, 0.0 ], [ -118.137864828377104, 33.985945863867691, 0.0 ], [ -118.137688744778202, 33.985936018242093, 0.0 ], [ -118.137457347571498, 33.985911604623368, 0.0 ], [ -118.137388063094306, 33.985900225923949, 0.0 ] ], [ [ -118.137388063094306, 33.985900225923949, 0.0 ], [ -118.137310644982307, 33.985887511424892, 0.0 ], [ -118.137175252831597, 33.985865450792367, 0.0 ], [ -118.136971604233295, 33.985827234067827, 0.0 ], [ -118.1367414635654, 33.98578321288521, 0.0 ], [ -118.136635235375806, 33.985756661651763, 0.0 ] ], [ [ -118.136635235375806, 33.985756661651763, 0.0 ], [ -118.136484594690998, 33.985719009725102, 0.0 ], [ -118.136352975823002, 33.985682783410162, 0.0 ], [ -118.136099131791397, 33.985606225687867, 0.0 ], [ -118.135971421396903, 33.985563289290234, 0.0 ], [ -118.135966005385995, 33.985578413621617, 0.0 ], [ -118.135741105828401, 33.985498035695187, 0.0 ], [ -118.135535114406395, 33.98541547882165, 0.0 ], [ -118.135325916892, 33.985323303671663, 0.0 ], [ -118.1351271391773, 33.985225517860357, 0.0 ], [ -118.134797713206495, 33.985046778221758, 0.0 ], [ -118.134630194890406, 33.984949793933517, 0.0 ], [ -118.134634469725896, 33.984902895921437, 0.0 ], [ -118.134570827327096, 33.984863381130722, 0.0 ] ], [ [ -118.134570827327096, 33.984863381130722, 0.0 ], [ -118.134523552621005, 33.984834028841242, 0.0 ], [ -118.134213541551603, 33.984618368966927, 0.0 ], [ -118.134035477945602, 33.984483992445298, 0.0 ], [ -118.133588311717105, 33.984110771791073, 0.0 ], [ -118.133217274471093, 33.983750460185092, 0.0 ], [ -118.132705635700106, 33.98324084670363, 0.0 ], [ -118.132646737726404, 33.983182883232487, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6052", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.139199944908796, 33.988004613714089, 0.0 ], [ -118.139233890125595, 33.988039518546117, 0.0 ], [ -118.1392012504935, 33.98807032830674, 0.0 ], [ -118.140302077479305, 33.989204653810987, 0.0 ], [ -118.142916613862894, 33.990091124240607, 0.0 ] ], [ [ -118.138742995461001, 33.987534746523806, 0.0 ], [ -118.139199944908796, 33.988004613714089, 0.0 ] ], [ [ -118.138317128150803, 33.98711228057703, 0.0 ], [ -118.138633711086698, 33.987439366221118, 0.0 ], [ -118.138655191578394, 33.987444460467387, 0.0 ], [ -118.138742995461001, 33.987534746523806, 0.0 ] ], [ [ -118.138110227892696, 33.986898516357662, 0.0 ], [ -118.138317128150803, 33.98711228057703, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6051", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1478778242179, 33.989143436995732, 0.0 ], [ -118.148689214005699, 33.989412464160637, 0.0 ], [ -118.153366826387995, 33.990990678221387, 0.0 ], [ -118.153389374825295, 33.991003714036779, 0.0 ], [ -118.153710853594603, 33.991104877573157, 0.0 ], [ -118.154008389040897, 33.991186104305697, 0.0 ], [ -118.154255144158697, 33.99124698683832, 0.0 ], [ -118.154501710618206, 33.991297646736363, 0.0 ], [ -118.154762982293903, 33.991340712012587, 0.0 ], [ -118.154987230462595, 33.991372723200882, 0.0 ], [ -118.155095355023306, 33.991382739888522, 0.0 ], [ -118.155226491852204, 33.991391914658109, 0.0 ], [ -118.155360226846398, 33.991400858156567, 0.0 ], [ -118.155381913864204, 33.991397510002663, 0.0 ], [ -118.1556016732236, 33.991401255571311, 0.0 ], [ -118.156291160133094, 33.991392545757201, 0.0 ], [ -118.156660196277798, 33.991361946454752, 0.0 ] ], [ [ -118.158923107371706, 33.991348872655188, 0.0 ], [ -118.159212598443105, 33.99137599849, 0.0 ], [ -118.159260105073699, 33.991381048058848, 0.0 ] ], [ [ -118.156660196277798, 33.991361946454752, 0.0 ], [ -118.156687898414106, 33.991358955856377, 0.0 ], [ -118.156724960459798, 33.991369194443237, 0.0 ], [ -118.157192197056801, 33.991350032997133, 0.0 ], [ -118.158068928001995, 33.991337558677948, 0.0 ], [ -118.158587285970498, 33.991334057272233, 0.0 ], [ -118.158840352894799, 33.991345270112362, 0.0 ] ], [ [ -118.158840352894799, 33.991345270112362, 0.0 ], [ -118.158840509525206, 33.991340988005767, 0.0 ], [ -118.158923184021106, 33.991344922134843, 0.0 ], [ -118.158923107371706, 33.991348872655188, 0.0 ] ], [ [ -118.144704407623294, 33.988083279192139, 0.0 ], [ -118.145094054197301, 33.988220440715082, 0.0 ], [ -118.1478778242179, 33.989143436995732, 0.0 ] ], [ [ -118.141907011508906, 33.987120921090487, 0.0 ], [ -118.143648306043005, 33.9877115153663, 0.0 ], [ -118.144704407623294, 33.988083279192139, 0.0 ] ], [ [ -118.140361618916899, 33.9865974002401, 0.0 ], [ -118.140707590373793, 33.986714113831333, 0.0 ], [ -118.141907011508906, 33.987120921090487, 0.0 ] ], [ [ -118.139182808342198, 33.986199625234249, 0.0 ], [ -118.1392392511911, 33.986220840121739, 0.0 ], [ -118.139837128030806, 33.986420463057321, 0.0 ], [ -118.140361618916899, 33.9865974002401, 0.0 ] ], [ [ -118.1389441607934, 33.986109925990142, 0.0 ], [ -118.139182808342198, 33.986199625234249, 0.0 ] ], [ [ -118.138930514141805, 33.98610479669243, 0.0 ], [ -118.1389441607934, 33.986109925990142, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6050", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.162938060255598, 33.979358230011947, 0.0 ], [ -118.163048473663807, 33.979369901532827, 0.0 ], [ -118.163054867704702, 33.979376218760208, 0.0 ], [ -118.163068064828096, 33.97937774886141, 0.0 ], [ -118.163075458596694, 33.979372754041457, 0.0 ], [ -118.166821775501901, 33.979768404808041, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6049", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.150351178084506, 33.978018379752207, 0.0 ], [ -118.149991546489503, 33.980422284562543, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6048", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.146536984077898, 33.978646798580193, 0.0 ], [ -118.146236944832197, 33.980635763677007, 0.0 ] ], [ [ -118.146691159694498, 33.97764659450111, 0.0 ], [ -118.146684763958604, 33.977688568775733, 0.0 ], [ -118.146681148945902, 33.977691127299003, 0.0 ], [ -118.146536984077898, 33.978646798580193, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6047", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.150351178084506, 33.978018379752207, 0.0 ], [ -118.152850988438303, 33.978284649524603, 0.0 ], [ -118.153076023512298, 33.978324100708207, 0.0 ], [ -118.156778373711106, 33.978732391746377, 0.0 ] ], [ [ -118.146691159694498, 33.97764659450111, 0.0 ], [ -118.150231938690496, 33.978005678850288, 0.0 ], [ -118.150351178084506, 33.978018379752207, 0.0 ] ], [ [ -118.145933779422606, 33.977569785583562, 0.0 ], [ -118.146691159694498, 33.97764659450111, 0.0 ] ], [ [ -118.144696990580201, 33.977440473790011, 0.0 ], [ -118.144740066221502, 33.977445258944798, 0.0 ], [ -118.144744722182097, 33.977449198603757, 0.0 ], [ -118.145933779422606, 33.977569785583562, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6046", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140134286975297, 33.984421942015857, 0.0 ], [ -118.142698120637405, 33.985320113545171, 0.0 ], [ -118.144685065112796, 33.985971522864219, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6045", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.136751209538104, 33.977517372648407, 0.0 ], [ -118.136276534948294, 33.977266400129047, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6044", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1362208172783, 33.978444084314063, 0.0 ], [ -118.134245328282105, 33.977548826035218, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6043", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.135532314652806, 33.979537249853273, 0.0 ], [ -118.1362208172783, 33.978444084314063, 0.0 ] ], [ [ -118.1362208172783, 33.978444084314063, 0.0 ], [ -118.136415232435695, 33.978135402919733, 0.0 ], [ -118.136674751788803, 33.977735762839657, 0.0 ], [ -118.1366838595942, 33.977741618755132, 0.0 ], [ -118.136699221822894, 33.977717164595241, 0.0 ], [ -118.136689816376702, 33.977711678084951, 0.0 ], [ -118.136785147889896, 33.977553357140437, 0.0 ], [ -118.1367435044166, 33.977529980255888, 0.0 ], [ -118.136751209538104, 33.977517372648407, 0.0 ] ], [ [ -118.136751209538104, 33.977517372648407, 0.0 ], [ -118.136767586979204, 33.977490574842633, 0.0 ], [ -118.1367695335165, 33.977433966664172, 0.0 ], [ -118.136773650038506, 33.977414836944043, 0.0 ], [ -118.136782125230994, 33.977394980778968, 0.0 ], [ -118.136795927687203, 33.977371008091737, 0.0 ], [ -118.136808035105005, 33.977356721338843, 0.0 ], [ -118.136825227638099, 33.977342434585893, 0.0 ], [ -118.136849926770395, 33.977324031310907, 0.0 ], [ -118.136881163908299, 33.977306838777643, 0.0 ], [ -118.136912796130105, 33.977296338905298, 0.0 ], [ -118.136955862852304, 33.977290357416038, 0.0 ], [ -118.137059342615402, 33.977296937054192, 0.0 ], [ -118.138403090431694, 33.977429391485487, 0.0 ], [ -118.138593322533097, 33.977448580465257, 0.0 ], [ -118.138651786239606, 33.97745992416948, 0.0 ], [ -118.1386893077228, 33.977473885651648, 0.0 ], [ -118.1387181032798, 33.977488719726423, 0.0 ], [ -118.138748644022002, 33.9775140249128, 0.0 ], [ -118.138774821801107, 33.9775419478771, 0.0 ], [ -118.138791401061098, 33.977571616026637, 0.0 ], [ -118.1388777877319, 33.977933741969949, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6042", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.141534139097999, 33.982211541820462, 0.0 ], [ -118.140989604776607, 33.981948259675583, 0.0 ], [ -118.140993268893396, 33.981940379016528, 0.0 ] ], [ [ -118.140993268893396, 33.981940379016528, 0.0 ], [ -118.140399463457598, 33.981679952640746, 0.0 ], [ -118.140004322508105, 33.981505996626993, 0.0 ], [ -118.139518733864193, 33.981292222111897, 0.0 ], [ -118.1393074669828, 33.981199214427953, 0.0 ], [ -118.139071869613701, 33.981095495541709, 0.0 ], [ -118.138778252173793, 33.980966234022418, 0.0 ], [ -118.138408407399595, 33.980803414343157, 0.0 ], [ -118.138370947909905, 33.980786923256908, 0.0 ] ], [ [ -118.138370947909905, 33.980786923256908, 0.0 ], [ -118.138156744052907, 33.980692622604977, 0.0 ], [ -118.137883853955501, 33.980572486047123, 0.0 ], [ -118.137731628998907, 33.980505470854958, 0.0 ], [ -118.137459712871205, 33.980385763075347, 0.0 ], [ -118.137139087883796, 33.980244611810747, 0.0 ], [ -118.136437494827604, 33.979935744182121, 0.0 ] ], [ [ -118.136437494827604, 33.979935744182121, 0.0 ], [ -118.135532314652806, 33.979537249853273, 0.0 ] ], [ [ -118.135532314652806, 33.979537249853273, 0.0 ], [ -118.135505835200505, 33.979525592603338, 0.0 ], [ -118.135151668309504, 33.97936972527426, 0.0 ], [ -118.134777978214103, 33.979205264329067, 0.0 ], [ -118.134349073207304, 33.979015993191787, 0.0 ], [ -118.133603144602503, 33.978686192720502, 0.0 ], [ -118.133589613807601, 33.978691796633868, 0.0 ], [ -118.132828355331696, 33.978364817153299, 0.0 ], [ -118.132801159632606, 33.978336465153511, 0.0 ], [ -118.130522609535404, 33.977334373086258, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6041", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.162483335510501, 33.987390807644559, 0.0 ], [ -118.164546144050604, 33.987601735108903, 0.0 ] ], [ [ -118.161682204136795, 33.987308889906643, 0.0 ], [ -118.162483335510501, 33.987390807644559, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6040", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.162867852913294, 33.989212955266858, 0.0 ], [ -118.163784074119604, 33.989306895832307, 0.0 ] ], [ [ -118.161400056384693, 33.989062461439786, 0.0 ], [ -118.162867852913294, 33.989212955266858, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6039", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.161393221964303, 33.989106819061213, 0.0 ], [ -118.161060692094793, 33.989077916129759, 0.0 ], [ -118.160880550976898, 33.989060629860823, 0.0 ], [ -118.160815045115896, 33.989058810253603, 0.0 ], [ -118.1607513588622, 33.989061539664412, 0.0 ], [ -118.160655829481499, 33.989071547504288, 0.0 ], [ -118.1605784961734, 33.989085194558733, 0.0 ], [ -118.160519358937705, 33.989099751416703, 0.0 ], [ -118.160473868756497, 33.989115218078332, 0.0 ], [ -118.1600853826085, 33.989247139603989, 0.0 ], [ -118.159843374844201, 33.989329931733899, 0.0 ], [ -118.159423955373001, 33.989470951295772, 0.0 ], [ -118.1593329750104, 33.989495515993681, 0.0 ], [ -118.159254731898599, 33.98951371206617, 0.0 ], [ -118.159167390750596, 33.989527359120579, 0.0 ], [ -118.159050026082895, 33.989533727745929, 0.0 ], [ -118.158949037880504, 33.989528268924211, 0.0 ], [ -118.158838951641897, 33.989518261084292, 0.0 ], [ -118.158738873243095, 33.989506433637203, 0.0 ], [ -118.158400321170504, 33.989477564137317, 0.0 ], [ -118.157927151500203, 33.989423724262402, 0.0 ], [ -118.157722145822504, 33.989404052000417, 0.0 ], [ -118.157654845978797, 33.989393698178262, 0.0 ], [ -118.1575896168995, 33.989380238209563, 0.0 ], [ -118.157518175527002, 33.989364707476433, 0.0 ], [ -118.157439486479106, 33.989347105978808, 0.0 ], [ -118.157396938522396, 33.989332575524848, 0.0 ] ], [ [ -118.157396938522396, 33.989332575524848, 0.0 ], [ -118.157054324296595, 33.989215612438073, 0.0 ], [ -118.155825325612597, 33.988797318024922, 0.0 ], [ -118.154837709384594, 33.988461581263927, 0.0 ] ], [ [ -118.154837709384594, 33.988461581263927, 0.0 ], [ -118.154496502719795, 33.988345589224522, 0.0 ], [ -118.153295832937502, 33.98794026757831, 0.0 ], [ -118.153095848766796, 33.987872574561599, 0.0 ], [ -118.153024750187797, 33.987838279952918, 0.0 ], [ -118.152967034870898, 33.987796457259527, 0.0 ], [ -118.152931903808394, 33.987763835558638, 0.0 ], [ -118.152900118561405, 33.987707793149447, 0.0 ], [ -118.152875861399195, 33.987650914286313, 0.0 ], [ -118.152871679129902, 33.987585670884542, 0.0 ], [ -118.152873352037503, 33.987527119113707, 0.0 ], [ -118.152894263384198, 33.987461875711908, 0.0 ], [ -118.1529227028159, 33.987396632310109, 0.0 ], [ -118.152974562955706, 33.98728454749164, 0.0 ], [ -118.153272340533107, 33.986696520421773, 0.0 ], [ -118.1534847998158, 33.986269092494673, 0.0 ], [ -118.153826072994306, 33.985566471244773, 0.0 ], [ -118.153882951857497, 33.985441839618233, 0.0 ], [ -118.153918919373794, 33.985325572530478, 0.0 ], [ -118.153945666886798, 33.985185363793093, 0.0 ], [ -118.153937160999305, 33.985183785068777, 0.0 ], [ -118.153966189810404, 33.985054044494497, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6038", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.169296848154502, 33.994733663426572, 0.0 ], [ -118.169231262988404, 33.994932036251328, 0.0 ], [ -118.1691879190371, 33.995051954516498, 0.0 ], [ -118.169120555497003, 33.995230731258502, 0.0 ], [ -118.169056271542402, 33.995390404307173, 0.0 ], [ -118.168636352161101, 33.996305932241867, 0.0 ], [ -118.168820234222594, 33.996376826899777, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6037", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.169296848154502, 33.994733663426572, 0.0 ], [ -118.169297560681997, 33.994733905109612, 0.0 ], [ -118.169619658558801, 33.994842466808358, 0.0 ], [ -118.169758227325701, 33.994936554499233, 0.0 ], [ -118.169912532225098, 33.994941461722178, 0.0 ], [ -118.172535703096798, 33.995834644450682, 0.0 ], [ -118.172567663578604, 33.995843829549599, 0.0 ], [ -118.172605076285294, 33.995849634969588, 0.0 ], [ -118.172651519645299, 33.995850925062939, 0.0 ], [ -118.1727030811426, 33.995846414506367, 0.0 ], [ -118.172752791972002, 33.995836088989613, 0.0 ], [ -118.172780528978706, 33.995823833102861, 0.0 ], [ -118.172806975892101, 33.995808351982838, 0.0 ], [ -118.172849982059901, 33.995769813875647, 0.0 ], [ -118.172897821201602, 33.995720934752583, 0.0 ], [ -118.172901762026996, 33.99571704278879, 0.0 ] ], [ [ -118.166881915792203, 33.993832929086217, 0.0 ], [ -118.166902349285394, 33.99384089468532, 0.0 ], [ -118.1680956465419, 33.994306052739589, 0.0 ], [ -118.168242811730707, 33.994369361537842, 0.0 ], [ -118.168567685826702, 33.994483761646862, 0.0 ], [ -118.168834804527904, 33.994575948142447, 0.0 ], [ -118.169296848154502, 33.994733663426572, 0.0 ] ], [ [ -118.163362261732104, 33.992436386722233, 0.0 ], [ -118.163442120360699, 33.992462849111583, 0.0 ], [ -118.163789864167597, 33.992585474082922, 0.0 ], [ -118.163914573219401, 33.992629855345058, 0.0 ], [ -118.164485666322406, 33.992868349722123, 0.0 ], [ -118.165176223619397, 33.99315326534537, 0.0 ], [ -118.165923396915801, 33.993459969001357, 0.0 ], [ -118.166273688716203, 33.993595823615919, 0.0 ], [ -118.166881915792203, 33.993832929086217, 0.0 ] ], [ [ -118.161786826893106, 33.993071778182909, 0.0 ], [ -118.1621550070778, 33.992927143143802, 0.0 ], [ -118.162777627293195, 33.992245110703841, 0.0 ], [ -118.163179164429593, 33.992375714604691, 0.0 ], [ -118.163362261732104, 33.992436386722233, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6036", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.161786826893106, 33.993071778182909, 0.0 ], [ -118.161796138631004, 33.993090214915853, 0.0 ], [ -118.161879011072003, 33.99324741835192, 0.0 ], [ -118.161913843859494, 33.993309565408381, 0.0 ], [ -118.161942803098498, 33.993359097788982, 0.0 ] ], [ [ -118.160953921335903, 33.992299372327203, 0.0 ], [ -118.161288307237598, 33.992363585504812, 0.0 ], [ -118.161367746862396, 33.992420875506269, 0.0 ], [ -118.161391354507899, 33.992440397213088, 0.0 ], [ -118.161409968228298, 33.992456740967633, 0.0 ], [ -118.161430365081003, 33.992476965589688, 0.0 ], [ -118.161444279753297, 33.992494563557663, 0.0 ], [ -118.161527602255106, 33.992608614867208, 0.0 ], [ -118.161594582291599, 33.992709985764769, 0.0 ], [ -118.161707779579999, 33.992915268813888, 0.0 ], [ -118.161786826893106, 33.993071778182909, 0.0 ] ], [ [ -118.160930533523299, 33.992294881091887, 0.0 ], [ -118.160953921335903, 33.992299372327203, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6035", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.145802540170294, 33.983754269215851, 0.0 ], [ -118.145848430533604, 33.983568268040187, 0.0 ], [ -118.145838601029098, 33.983563073932089, 0.0 ], [ -118.1458408813007, 33.983478111190088, 0.0 ], [ -118.146180286553303, 33.981183704450409, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6034", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.145785241318606, 33.983750519711187, 0.0 ], [ -118.145250446544196, 33.984814191750083, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6033", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.150890194573805, 33.984801121962342, 0.0 ], [ -118.150892064085198, 33.984783499707397, 0.0 ], [ -118.150929993562997, 33.984758684828698, 0.0 ], [ -118.150973358304597, 33.984515847006477, 0.0 ], [ -118.151091697826999, 33.983783025567668, 0.0 ], [ -118.151207095356497, 33.983021041877649, 0.0 ], [ -118.151229857973703, 33.982856563611278, 0.0 ], [ -118.151245277811199, 33.982794884261367, 0.0 ], [ -118.151266571872497, 33.982744219081077, 0.0 ], [ -118.151289334489704, 33.982711176572153, 0.0 ], [ -118.151314299940793, 33.982681071175222, 0.0 ], [ -118.151351013839601, 33.982641420164541, 0.0 ], [ -118.151390664850197, 33.982609111933662, 0.0 ], [ -118.151442064308497, 33.982573866590812, 0.0 ], [ -118.151500072268504, 33.982541558359962, 0.0 ], [ -118.151582311401796, 33.982510718684978, 0.0 ], [ -118.151644725029698, 33.982495298847503, 0.0 ], [ -118.151710075769401, 33.98248795606775, 0.0 ], [ -118.151818748909804, 33.982485753233838, 0.0 ], [ -118.151909065100696, 33.982493830291538, 0.0 ], [ -118.1520449065262, 33.982508515851073, 0.0 ], [ -118.152150642554503, 33.982520998576561, 0.0 ], [ -118.155073127990505, 33.982841330290867, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6032", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.150971121832001, 33.984810213773883, 0.0 ], [ -118.150566476238396, 33.987526020766701, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6031", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.158081941646699, 33.985541417427633, 0.0 ], [ -118.157591575635294, 33.988802652287923, 0.0 ], [ -118.157575729562495, 33.988875285118702, 0.0 ], [ -118.157559194304994, 33.988942076093103, 0.0 ], [ -118.157535385282998, 33.989010947046957, 0.0 ], [ -118.157485815782096, 33.989132017428084, 0.0 ], [ -118.157396938522396, 33.989332575524848, 0.0 ] ], [ [ -118.158134291424304, 33.985477317323287, 0.0 ], [ -118.158122993695898, 33.985548200911367, 0.0 ], [ -118.158081941646699, 33.985541417427633, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6027", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.202972748623196, 34.017546449039493, 0.0 ], [ -118.202972848575598, 34.017587666787463, 0.0 ], [ -118.202911865720097, 34.01760135832469, 0.0 ], [ -118.202905305860099, 34.01761785651798, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6026", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.202926519161096, 34.017530039597958, 0.0 ], [ -118.202926598228899, 34.017562652513767, 0.0 ], [ -118.202909595242105, 34.017565180547351, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6025", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.185037245742194, 34.016515569707352, 0.0 ], [ -118.185037522913603, 34.0165036370622, 0.0 ], [ -118.185013832860605, 34.01650338141414, 0.0 ], [ -118.185013756469999, 34.016515615613308, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5998", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.405476539476396, 33.983902459871118, 0.0 ], [ -118.405474238643905, 33.983878769818077, 0.0 ], [ -118.405453105171901, 33.983860789323749, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5994", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.394913652950706, 33.852231570911833, 0.0 ], [ -118.3949110314948, 33.852227265495451, 0.0 ], [ -118.394801102189106, 33.852044137065711, 0.0 ] ], [ [ -118.394801102189106, 33.852044137065711, 0.0 ], [ -118.394731736992995, 33.851928583352723, 0.0 ], [ -118.394730740719098, 33.851926908307128, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5993", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394996008322195, 33.852264046685818, 0.0 ], [ -118.394997866617103, 33.85226339708705, 0.0 ], [ -118.395051226584499, 33.852244106930023, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5992", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394751822862105, 33.851879994559212, 0.0 ], [ -118.394805619280604, 33.851970509633482, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5991", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394931272005195, 33.85220836074393, 0.0 ], [ -118.3949300346668, 33.852206302355071, 0.0 ], [ -118.394745968068094, 33.851900973362859, 0.0 ], [ -118.394743904599906, 33.851897614938558, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5989", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394788882634401, 33.852067133802073, 0.0 ], [ -118.394789513453205, 33.852065951573508, 0.0 ], [ -118.394800421103497, 33.852045499729208, 0.0 ], [ -118.394801102189106, 33.852044137065711, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5988", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.394784722860393, 33.852100117708083, 0.0 ], [ -118.394796160302604, 33.852079671352428, 0.0 ], [ -118.394788882634401, 33.852067133802073, 0.0 ] ], [ [ -118.394788882634401, 33.852067133802073, 0.0 ], [ -118.394720593388399, 33.851949488996091, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5979", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.394884702110701, 33.852269705864629, 0.0 ], [ -118.394784722860393, 33.852100117708083, 0.0 ] ], [ [ -118.394784722860393, 33.852100117708083, 0.0 ], [ -118.394709921692495, 33.851973236546137, 0.0 ], [ -118.394720593388399, 33.851949488996091, 0.0 ] ], [ [ -118.394720593388399, 33.851949488996091, 0.0 ], [ -118.394730740719098, 33.851926908307128, 0.0 ] ], [ [ -118.394730740719098, 33.851926908307128, 0.0 ], [ -118.394743904599906, 33.851897614938558, 0.0 ] ], [ [ -118.394743904599906, 33.851897614938558, 0.0 ], [ -118.394751822862105, 33.851879994559212, 0.0 ] ], [ [ -118.394751822862105, 33.851879994559212, 0.0 ], [ -118.394762499975499, 33.851856234953438, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5977", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376873612630007, 33.858191278941483, 0.0 ], [ -118.376873596012203, 33.858201137491051, 0.0 ] ], [ [ -118.376873301135305, 33.858141342326029, 0.0 ], [ -118.376873612630007, 33.858191278941483, 0.0 ] ], [ [ -118.376873272133693, 33.858135748016579, 0.0 ], [ -118.376873301135305, 33.858141342326029, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5976", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.376813876201396, 33.858159237718802, 0.0 ], [ -118.376813876201396, 33.858158982070726, 0.0 ], [ -118.376813876201396, 33.858156425590188, 0.0 ], [ -118.376806888488005, 33.858156425590188, 0.0 ], [ -118.376806718056002, 33.858141768435139, 0.0 ], [ -118.376806718056002, 33.858141257139053, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5973", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376740011865195, 33.858157824564437, 0.0 ], [ -118.376693892048294, 33.858157874262567, 0.0 ] ], [ [ -118.376797571828305, 33.858141214082863, 0.0 ], [ -118.376772887296795, 33.858141171923059, 0.0 ], [ -118.376772972512796, 33.858157789046579, 0.0 ], [ -118.376740011865195, 33.858157824564437, 0.0 ] ], [ [ -118.376873301135305, 33.858141342326029, 0.0 ], [ -118.376872675253793, 33.85814134235509, 0.0 ], [ -118.376797571828305, 33.858141214082863, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5972", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376740171776802, 33.858191693869607, 0.0 ], [ -118.376736585273207, 33.858191705021653, 0.0 ], [ -118.376730238887802, 33.858186577478577, 0.0 ] ], [ [ -118.376786204647999, 33.858191550732542, 0.0 ], [ -118.376740171776802, 33.858191693869607, 0.0 ] ], [ [ -118.376798102663997, 33.85819151373618, 0.0 ], [ -118.376786204647999, 33.858191550732542, 0.0 ] ], [ [ -118.376873612630007, 33.858191278941483, 0.0 ], [ -118.376798102663997, 33.85819151373618, 0.0 ] ], [ [ -118.376730238887802, 33.858186577478577, 0.0 ], [ -118.3767237176545, 33.858181308667469, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5971", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376925423968899, 33.858270018542107, 0.0 ], [ -118.376925338752898, 33.858237125159178, 0.0 ], [ -118.376786417216394, 33.858236880937291, 0.0 ] ], [ [ -118.376786417216394, 33.858236880937291, 0.0 ], [ -118.376634496483803, 33.858236613863092, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5968", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.376914601480095, 33.858201030565979, 0.0 ], [ -118.376914374274094, 33.858157488994387, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5967", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547611659187496, 34.315709091432723, 0.0 ], [ -118.547589332590704, 34.315688810020447, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5966", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.547734945722397, 34.315646437854433, 0.0 ], [ -118.547688694467695, 34.315680117986602, 0.0 ], [ -118.547669350431605, 34.315665972127633, 0.0 ] ], [ [ -118.547744084879298, 34.315610240851917, 0.0 ], [ -118.547763940211496, 34.315625324087137, 0.0 ], [ -118.547734945722397, 34.315646437854433, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5965", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.547734966765404, 34.315646457659547, 0.0 ], [ -118.547734945722397, 34.315646437854433, 0.0 ] ], [ [ -118.547734945722397, 34.315646437854433, 0.0 ], [ -118.5477175826977, 34.315630096184137, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5962", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.614471379902199, 34.171358781335918, 0.0 ], [ -118.614470186877895, 34.171303902220352, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5961", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.243226648361997, 34.110781196745933, 0.0 ], [ -118.243230161308901, 34.110785851314859, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5957", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.226056940661493, 33.83919611725134, 0.0 ], [ -118.226018763885406, 33.839304171162077, 0.0 ], [ -118.225999078985296, 33.839304000730053, 0.0 ], [ -118.2253902957533, 33.841053485577973, 0.0 ], [ -118.225610920023698, 33.841052633417739, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5956", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.193115240262699, 33.890572939670513, 0.0 ], [ -118.193120353387997, 33.89057296180524, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5951", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.190016615419196, 33.915120606656153, 0.0 ], [ -118.190120408529097, 33.91515051747848, 0.0 ] ], [ [ -118.190000935672003, 33.91508277074422, 0.0 ], [ -118.190029142173799, 33.915090695833968, 0.0 ], [ -118.190016615419196, 33.915120606656153, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5944", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.251603336022001, 34.121052845902327, 0.0 ], [ -118.251598789938498, 34.12104885741023, 0.0 ], [ -118.251496428952905, 34.121122651102908, 0.0 ], [ -118.251504985166306, 34.121131014471032, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5939", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.094955327110995, 34.704296401911513, 0.0 ], [ -118.094924657536097, 34.701903482974629, 0.0 ], [ -118.094905, 34.701904, 0.0 ] ], [ [ -118.094722, 34.701904, 0.0 ], [ -118.0946618155902, 34.701903975625193, 0.0 ], [ -118.094661815487996, 34.701821197460667, 0.0 ] ], [ [ -118.094905, 34.701904, 0.0 ], [ -118.094901, 34.701904, 0.0 ], [ -118.094725, 34.701903999999892, 0.0 ], [ -118.094722, 34.701904, 0.0 ] ], [ [ -118.094661815487996, 34.701821197460667, 0.0 ], [ -118.094661815349198, 34.701708664656188, 0.0 ] ], [ [ -118.094661815349198, 34.701708664656188, 0.0 ], [ -118.094661815274904, 34.701648432991583, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5938", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.094661815487996, 34.701821197460667, 0.0 ], [ -118.094655162543603, 34.701821219906392, 0.0 ], [ -118.094655161275597, 34.701708707061748, 0.0 ], [ -118.094661815349198, 34.701708664656188, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5937", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.276870916601993, 34.156203861734873, 0.0 ], [ -118.276909344615603, 34.156255187710258, 0.0 ] ], [ [ -118.276799307499203, 34.156108217783988, 0.0 ], [ -118.276870916601993, 34.156203861734873, 0.0 ] ], [ [ -118.276914476264096, 34.155969915750248, 0.0 ], [ -118.276904728669507, 34.155974706912467, 0.0 ], [ -118.276911569461305, 34.155984112817983, 0.0 ], [ -118.276760884045203, 34.156056897898686, 0.0 ], [ -118.276799307499203, 34.156108217783988, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5936", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.0448783128043, 34.558180363096987, 0.0 ], [ -118.044878312804798, 34.558185858728663, 0.0 ], [ -118.044987918071797, 34.558185858679181, 0.0 ], [ -118.044987918064606, 34.558180363038012, 0.0 ] ], [ [ -118.044878312804798, 34.558032852855611, 0.0 ], [ -118.0448783128043, 34.558180363096987, 0.0 ] ], [ [ -118.044987918064606, 34.558180363038012, 0.0 ], [ -118.044987918003102, 34.558133650087903, 0.0 ], [ -118.045054345395997, 34.558133650009793, 0.0 ] ], [ [ -118.044878312804798, 34.557949427361102, 0.0 ], [ -118.044878312804798, 34.558032852855611, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5935", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.044754664368597, 34.558013990668883, 0.0 ], [ -118.044755046029707, 34.558032646455473, 0.0 ], [ -118.044878312804798, 34.558032852855611, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5934", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.023243070719104, 34.704670139021928, 0.0 ], [ -118.023243485747699, 34.704690467338558, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5933", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.023229971887602, 34.704670139021928, 0.0 ], [ -118.023230433551007, 34.704690311955289, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5932", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.023243485747699, 34.704690467338558, 0.0 ], [ -118.023396457722797, 34.704690608334502, 0.0 ], [ -118.023396457722797, 34.704775689320194, 0.0 ] ], [ [ -118.023186517628304, 34.704690608334502, 0.0 ], [ -118.023230433551007, 34.704690311955289, 0.0 ] ], [ [ -118.023230433551007, 34.704690311955289, 0.0 ], [ -118.023243485747699, 34.704690467338558, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5931", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.041564193705099, 34.704563126348447, 0.0 ], [ -118.041365141737302, 34.704564535698253, 0.0 ], [ -118.041364973561002, 34.704633011108257, 0.0 ] ], [ [ -118.041583970321099, 34.704543775555678, 0.0 ], [ -118.041584102986704, 34.704563137618003, 0.0 ], [ -118.041564193705099, 34.704563126348447, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5930", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.130506744909795, 34.704272499674801, 0.0 ], [ -118.130493272075796, 34.704272527931998, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5929", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.041563961173097, 34.704543678982887, 0.0 ], [ -118.041564193705099, 34.704563126348447, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5928", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.206118042696502, 33.980144667171153, 0.0 ], [ -118.206118840549806, 33.980139211850158, 0.0 ], [ -118.205971500167806, 33.980124256598003, 0.0 ], [ -118.205970702294394, 33.980129711942297, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5927", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.206270718677004, 33.980227519098307, 0.0 ], [ -118.206265009203804, 33.980227604314337, 0.0 ], [ -118.206259384946605, 33.980227604314337, 0.0 ], [ -118.206205954503304, 33.980227178234287, 0.0 ], [ -118.206204746132897, 33.980153467637749, 0.0 ], [ -118.206118042696502, 33.980144667171153, 0.0 ] ], [ [ -118.206118042696502, 33.980144667171153, 0.0 ], [ -118.205970702294394, 33.980129711942297, 0.0 ] ], [ [ -118.205970702294394, 33.980129711942297, 0.0 ], [ -118.205955904561307, 33.980128209951133, 0.0 ], [ -118.205962287495893, 33.980084567116783, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5924", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.253700468611697, 33.903654556779699, 0.0 ], [ -118.253716076051802, 33.903697302106657, 0.0 ] ], [ [ -118.253675878148997, 33.903588919463438, 0.0 ], [ -118.253700468611697, 33.903654556779699, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5923", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.253561727059704, 33.903362075184077, 0.0 ], [ -118.253558151295195, 33.903352678766431, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5922", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.227974386280593, 33.839193475554922, 0.0 ], [ -118.227334840066206, 33.840876406692729, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5920", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.236583760571094, 33.839211711782688, 0.0 ], [ -118.236471701507398, 33.839496162850473, 0.0 ], [ -118.236476558820499, 33.839496759362547, 0.0 ], [ -118.235822014586802, 33.841158301279961, 0.0 ], [ -118.235813833849093, 33.84116290294493, 0.0 ], [ -118.235796108917398, 33.841215822092067, 0.0 ], [ -118.235799602774094, 33.841223491533682, 0.0 ], [ -118.235490524277097, 33.842095677477062, 0.0 ], [ -118.235487286068505, 33.842094995748951, 0.0 ], [ -118.235462829071295, 33.842202964443658, 0.0 ], [ -118.235034107285202, 33.843285974815359, 0.0 ], [ -118.234897652951204, 33.843658911855613, 0.0 ], [ -118.234707387239098, 33.844122750036632, 0.0 ], [ -118.234717018482499, 33.844124585647691, 0.0 ], [ -118.234555534128503, 33.844589098161393, 0.0 ], [ -118.234546330798594, 33.844586115600791, 0.0 ], [ -118.234107638738294, 33.845738406595054, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5918", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.205144620261194, 34.009024681351818, 0.0 ], [ -118.205146566657902, 34.009025671161893, 0.0 ], [ -118.205146561534605, 34.009022798391243, 0.0 ] ], [ [ -118.205146561534605, 34.009022798391243, 0.0 ], [ -118.205146556282699, 34.009019853525842, 0.0 ] ], [ [ -118.205146556282699, 34.009019853525842, 0.0 ], [ -118.205146546999799, 34.009014648333277, 0.0 ] ], [ [ -118.205146546999799, 34.009014648333277, 0.0 ], [ -118.205146533948906, 34.009007330448057, 0.0 ], [ -118.205139941782207, 34.009007798647069, 0.0 ], [ -118.205139941782207, 34.009014868154892, 0.0 ], [ -118.205146546999799, 34.009014648333277, 0.0 ] ], [ [ -118.205146546999799, 34.009014648333277, 0.0 ], [ -118.207904879051, 34.008922851077088, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5916", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.202972369411697, 34.017451761290928, 0.0 ], [ -118.202962489677404, 34.017460021486087, 0.0 ], [ -118.202962622938102, 34.017514978510697, 0.0 ], [ -118.202972542659793, 34.01752320540411, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5915", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.202972542659793, 34.01752320540411, 0.0 ], [ -118.202982462383304, 34.0175314322966, 0.0 ] ], [ [ -118.202972369411697, 34.017451761290928, 0.0 ], [ -118.202972542659793, 34.01752320540411, 0.0 ] ], [ [ -118.202982249290997, 34.017443561671513, 0.0 ], [ -118.202972369411697, 34.017451761290928, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5914", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.202982152936201, 34.017403829285243, 0.0 ], [ -118.202982648358102, 34.017546432392962, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5913", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.152956739860002, 34.008576468097907, 0.0 ], [ -118.1524516427436, 34.008974666145441, 0.0 ], [ -118.151935737974398, 34.008930054697707, 0.0 ] ], [ [ -118.151935737974398, 34.008930054697707, 0.0 ], [ -118.1514064152082, 34.008884282965617, 0.0 ], [ -118.149467737021595, 34.007182828109407, 0.0 ] ], [ [ -118.155270373317194, 34.006702716799509, 0.0 ], [ -118.155253129183507, 34.006716491169243, 0.0 ], [ -118.155264996807205, 34.006730384972577, 0.0 ], [ -118.155086635694801, 34.006877488416009, 0.0 ], [ -118.155067006665206, 34.006899980012392, 0.0 ], [ -118.152956756439906, 34.008568945799333, 0.0 ], [ -118.152956739860002, 34.008576468097907, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5911", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248416937282698, 33.868085863353919, 0.0 ], [ -118.248417043085894, 33.86812252805791, 0.0 ] ], [ [ -118.248416825922803, 33.868047273016508, 0.0 ], [ -118.248416937282698, 33.868085863353919, 0.0 ] ], [ [ -118.248416804160698, 33.868041882760991, 0.0 ], [ -118.248416825922803, 33.868047273016508, 0.0 ] ], [ [ -118.248416561880703, 33.867960105070047, 0.0 ], [ -118.248416804160698, 33.868041882760991, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5910", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.248416804160698, 33.868041882760991, 0.0 ], [ -118.248422993685395, 33.868041883569667, 0.0 ], [ -118.248422982662206, 33.868047236076258, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5909", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248416825922803, 33.868047273016508, 0.0 ], [ -118.248422832051901, 33.868047236428701, 0.0 ], [ -118.248422982662206, 33.868047236076258, 0.0 ] ], [ [ -118.248422982662206, 33.868047236076258, 0.0 ], [ -118.248469875374695, 33.868047126348507, 0.0 ] ], [ [ -118.248469875374695, 33.868047126348507, 0.0 ], [ -118.248479757440904, 33.868047103224697, 0.0 ] ], [ [ -118.248479757440904, 33.868047103224697, 0.0 ], [ -118.248492933529306, 33.868047072392997, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5908", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248389151599, 33.868122585555639, 0.0 ], [ -118.248389042944098, 33.868085906757081, 0.0 ] ], [ [ -118.248389042944098, 33.868085906757081, 0.0 ], [ -118.248388945702004, 33.868053080546531, 0.0 ], [ -118.248388928809604, 33.868047378153932, 0.0 ], [ -118.248388588249796, 33.867932414728557, 0.0 ], [ -118.248469522634906, 33.867932247857347, 0.0 ] ], [ [ -118.248469522634906, 33.867932247857347, 0.0 ], [ -118.248492593097595, 33.867932200290397, 0.0 ] ], [ [ -118.248492593097595, 33.867932200290397, 0.0 ], [ -118.248547102650903, 33.867932087868247, 0.0 ], [ -118.248545894920596, 33.867524650966281, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5907", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.2484931566825, 33.868122371118332, 0.0 ], [ -118.248493048138201, 33.86808574492661, 0.0 ] ], [ [ -118.248493048138201, 33.86808574492661, 0.0 ], [ -118.248492933529306, 33.868047072392997, 0.0 ] ], [ [ -118.248492933529306, 33.868047072392997, 0.0 ], [ -118.248492773274506, 33.867992997511188, 0.0 ] ], [ [ -118.248492773274506, 33.867992997511188, 0.0 ], [ -118.248492688371499, 33.867964348649778, 0.0 ], [ -118.248492631883906, 33.867946222325301, 0.0 ] ], [ [ -118.248492631883906, 33.867946222325301, 0.0 ], [ -118.248492593097595, 33.867932200290397, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5906", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.248446506040693, 33.867946317442502, 0.0 ], [ -118.248446481615403, 33.867938074069109, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5905", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248446506040693, 33.867946317442502, 0.0 ], [ -118.248420239994701, 33.867946371596133, 0.0 ] ], [ [ -118.248469564186195, 33.867946269897928, 0.0 ], [ -118.248446506040693, 33.867946317442502, 0.0 ] ], [ [ -118.248492631883906, 33.867946222325301, 0.0 ], [ -118.248469564186195, 33.867946269897928, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5900", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.084056467732196, 34.02654440501508, 0.0 ], [ -118.0840821122801, 34.02653773795609, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5897", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.084033331002004, 34.026568920951043, 0.0 ], [ -118.084029383552604, 34.026569766833042, 0.0 ] ], [ [ -118.084058677875205, 34.026552565543213, 0.0 ], [ -118.084030229434603, 34.026559334288379, 0.0 ], [ -118.084033331002004, 34.026568920951043, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5895", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.081815110555596, 34.058836653931643, 0.0 ], [ -118.081820479164605, 34.058836653931643, 0.0 ], [ -118.081859082020799, 34.058836909579767, 0.0 ], [ -118.081881664265495, 34.058836994795811, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5894", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.083356497887607, 34.062406352922267, 0.0 ], [ -118.083356577115694, 34.062342873369701, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5893", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.081979747901997, 34.062499920109957, 0.0 ], [ -118.082074167249999, 34.062499834893963, 0.0 ], [ -118.082074252466001, 34.062527530099729, 0.0 ], [ -118.0833655307855, 34.062531364820508, 0.0 ], [ -118.083363996897106, 34.062406352922267, 0.0 ], [ -118.083356497887607, 34.062406352922267, 0.0 ] ], [ [ -118.083356577115694, 34.062342873369701, 0.0 ], [ -118.083370633108302, 34.062342763257902, 0.0 ], [ -118.083372824518705, 34.062523540747563, 0.0 ] ], [ [ -118.083356497887607, 34.062406352922267, 0.0 ], [ -118.083348402365999, 34.062406352922267, 0.0 ], [ -118.083348268407306, 34.062342938458123, 0.0 ], [ -118.083356577115694, 34.062342873369701, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5890", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.570957950752501, 34.38125929760001, 0.0 ], [ -118.570957976892799, 34.381259233369789, 0.0 ] ], [ [ -118.570957976892799, 34.381259233369789, 0.0 ], [ -118.570960933313103, 34.381251969022593, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5889", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.570947383966299, 34.381270801762547, 0.0 ], [ -118.570946276158097, 34.381273443459087, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5888", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.643032839505096, 34.39718379831681, 0.0 ], [ -118.643048321032794, 34.397195687445773, 0.0 ], [ -118.643054691996994, 34.39718901720353, 0.0 ] ], [ [ -118.642970006948204, 34.397168886225408, 0.0 ], [ -118.6430135084657, 34.397168952933008, 0.0 ], [ -118.643032839505096, 34.39718379831681, 0.0 ] ], [ [ -118.642961054660802, 34.397168872497431, 0.0 ], [ -118.642970006948204, 34.397168886225408, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 5887", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.642945381015394, 34.397162566466811, 0.0 ], [ -118.642932701337401, 34.397162390563878, 0.0 ], [ -118.642932334997198, 34.397162390563878, 0.0 ] ], [ [ -118.642932334997198, 34.397162390563878, 0.0 ], [ -118.642923815521499, 34.397162390563878, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6405", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.226895533310994, 33.785897083751671, 0.0 ], [ -118.227629857920206, 33.785843731888818, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6404", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.249105123619501, 33.778042815487296, 0.0 ], [ -118.249108234843703, 33.778073824940783, 0.0 ], [ -118.249134728930599, 33.778073533796672, 0.0 ], [ -118.249157584513796, 33.778567829738449, 0.0 ] ], [ [ -118.249092343132105, 33.777915432855458, 0.0 ], [ -118.249105123619501, 33.778042815487296, 0.0 ] ], [ [ -118.249116054549305, 33.777807184351254, 0.0 ], [ -118.249118866374801, 33.777840073053937, 0.0 ], [ -118.249113923845698, 33.777840328701998, 0.0 ], [ -118.249119718534999, 33.77790884238037, 0.0 ], [ -118.249091852897095, 33.777910546700767, 0.0 ], [ -118.249092343132105, 33.777915432855458, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6403", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.242696550202098, 33.780973701147509, 0.0 ], [ -118.242802910774699, 33.782165723339538, 0.0 ], [ -118.241313760861601, 33.782265000000393, 0.0 ], [ -118.241310693084898, 33.782234577881972, 0.0 ], [ -118.240826325239098, 33.782267897344987, 0.0 ], [ -118.240733524995605, 33.781385911559511, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6402", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.247287829797799, 33.777925374287811, 0.0 ], [ -118.247260074407293, 33.777904933198307, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6401", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.240650868436703, 33.780999465025261, 0.0 ], [ -118.240673757699895, 33.78099787642109, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6400", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3529790953949, 33.882757371779, 0.0 ], [ -118.352979141672805, 33.882768363016041, 0.0 ], [ -118.353025265973599, 33.882768227916152, 0.0 ] ], [ [ -118.353025265973599, 33.882768227916152, 0.0 ], [ -118.353045033531103, 33.882768170010714, 0.0 ], [ -118.353052457375696, 33.882757156890413, 0.0 ], [ -118.353414862543204, 33.882756094695118, 0.0 ] ], [ [ -118.352321405163195, 33.882756010757113, 0.0 ], [ -118.352334569310401, 33.882756367384907, 0.0 ], [ -118.352334580858695, 33.882759115194247, 0.0 ], [ -118.3529790953949, 33.882757371779, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6399", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.673547838914402, 34.038864073285289, 0.0 ], [ -118.673431072844593, 34.038685471562481, 0.0 ], [ -118.673460890076896, 34.03867368569172, 0.0 ], [ -118.673456157869296, 34.038666444380972, 0.0 ], [ -118.673457607589896, 34.038665787791217, 0.0 ] ], [ [ -118.673457607589896, 34.038665787791217, 0.0 ], [ -118.673459184990705, 34.03866820156221, 0.0 ], [ -118.673467883314501, 34.038664262023232, 0.0 ], [ -118.673466305913493, 34.038661848252247, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6398", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.622556489165504, 34.038142453967509, 0.0 ], [ -118.622554061717807, 34.038156043829026, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6397", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.622517650708204, 34.038137645932302, 0.0 ], [ -118.622515223254197, 34.038151235793087, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6396", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606819397273895, 34.038172845435057, 0.0 ], [ -118.606812719034593, 34.038163363762933, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6393", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606877472876505, 34.038144496297093, 0.0 ], [ -118.606867455506304, 34.038130273796163, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6392", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.503930917442005, 34.039849565959919, 0.0 ], [ -118.503916373870496, 34.039843071193751, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6391", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.554646146540804, 34.039606407003347, 0.0 ], [ -118.554689434665207, 34.039636130969427, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6389", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.526811963145306, 34.048097219078223, 0.0 ], [ -118.526887615267995, 34.047819530007722, 0.0 ] ], [ [ -118.526887615267995, 34.047819530007722, 0.0 ], [ -118.526868265094706, 34.047816010666907, 0.0 ] ], [ [ -118.526868265094706, 34.047816010666907, 0.0 ], [ -118.526861815045294, 34.047814837551343, 0.0 ], [ -118.526889296535302, 34.04771014099903, 0.0 ] ], [ [ -118.526889296535302, 34.04771014099903, 0.0 ], [ -118.526882846487993, 34.047708967884617, 0.0 ], [ -118.526898348840405, 34.047649908289287, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6388", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.567764453373897, 34.042223876586313, 0.0 ], [ -118.567725332771701, 34.042238556779921, 0.0 ] ], [ [ -118.567731896952097, 34.04216375415831, 0.0 ], [ -118.567737915500999, 34.042161495666797, 0.0 ], [ -118.567770471927005, 34.042221618094352, 0.0 ], [ -118.567764453373897, 34.042223876586313, 0.0 ] ], [ [ -118.5677458370821, 34.041768053305432, 0.0 ], [ -118.567659233772005, 34.042132312847151, 0.0 ], [ -118.567691840810198, 34.042136587453143, 0.0 ], [ -118.567697266870795, 34.042146607860317, 0.0 ], [ -118.567712313240804, 34.042140961632597, 0.0 ], [ -118.567725878401603, 34.04216601264794, 0.0 ], [ -118.567731896952097, 34.04216375415831, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6387", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.532819721160706, 34.049369872565983, 0.0 ], [ -118.532758067002007, 34.049396256441263, 0.0 ] ], [ [ -118.532934221676797, 34.04932087392983, 0.0 ], [ -118.532819721160706, 34.049369872565983, 0.0 ] ], [ [ -118.533021618010295, 34.049292715839087, 0.0 ], [ -118.533016427099994, 34.04928569538459, 0.0 ], [ -118.532934221676797, 34.04932087392983, 0.0 ] ], [ [ -118.5332596209483, 34.048865414177747, 0.0 ], [ -118.533249470822, 34.048955395219693, 0.0 ], [ -118.533231375356493, 34.04902724284814, 0.0 ], [ -118.533207730505197, 34.049084579743173, 0.0 ], [ -118.5331883352235, 34.049123728826622, 0.0 ], [ -118.533158072772594, 34.049170193505333, 0.0 ], [ -118.533121279572299, 34.049219412365588, 0.0 ], [ -118.533076823745006, 34.049265031232757, 0.0 ], [ -118.533026837429304, 34.049299774843938, 0.0 ], [ -118.533021618010295, 34.049292715839087, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6386", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.546086303855702, 34.047102678342533, 0.0 ], [ -118.546091344613401, 34.04710622751913, 0.0 ], [ -118.546008455534704, 34.047187799538193, 0.0 ], [ -118.546003161081998, 34.047184500020293, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6385", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.519020663993103, 34.042242474474342, 0.0 ], [ -118.519027191630798, 34.042241656405523, 0.0 ], [ -118.519048055387898, 34.042347406135583, 0.0 ], [ -118.519041540873104, 34.042348296814062, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6383", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.635999046630999, 34.03680701194147, 0.0 ], [ -118.635999106683599, 34.036812507431051, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6380", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.661966877905797, 34.039642307184423, 0.0 ], [ -118.661963596925006, 34.039642006600047, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6379", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.657910367823703, 34.039283481465873, 0.0 ], [ -118.657910724029406, 34.039280749654459, 0.0 ], [ -118.657914005528397, 34.039281046192542, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6378", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.660090272268803, 34.039471751438448, 0.0 ], [ -118.660083710331904, 34.039471150167493, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6377", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659154476629297, 34.039384856797447, 0.0 ], [ -118.6591541204007, 34.039387588606822, 0.0 ], [ -118.659155761152405, 34.039387736874623, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6376", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.652396255837104, 34.038627902722062, 0.0 ], [ -118.652396900770697, 34.038625207826598, 0.0 ], [ -118.652406612159993, 34.03862681853856, 0.0 ], [ -118.652405967226798, 34.038629513434032, 0.0 ] ], [ [ -118.6524127331448, 34.03859421139969, 0.0 ], [ -118.652405638528293, 34.038623855191197, 0.0 ], [ -118.652395927139295, 34.038622244479193, 0.0 ], [ -118.652394637272195, 34.038627634269922, 0.0 ], [ -118.652396255837104, 34.038627902722062, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6375", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.655914221775802, 34.039106306485067, 0.0 ], [ -118.655914867121993, 34.039100837090331, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6374", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.653652308845807, 34.038826675288831, 0.0 ], [ -118.653652944331697, 34.038823978838089, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6373", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.653652308845807, 34.038826675288831, 0.0 ], [ -118.653651673359903, 34.038829371739503, 0.0 ], [ -118.653641956342497, 34.038827784625767, 0.0 ], [ -118.653642591828699, 34.038825088175066, 0.0 ] ], [ [ -118.653660283220503, 34.038799975302851, 0.0 ], [ -118.653653928348604, 34.03882693980772, 0.0 ], [ -118.653652308845807, 34.038826675288831, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6372", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.650370872645993, 34.038063742098927, 0.0 ], [ -118.650376977601894, 34.03803673761648, 0.0 ], [ -118.650378599490494, 34.038036991735133, 0.0 ] ], [ [ -118.650378599490494, 34.038036991735133, 0.0 ], [ -118.650379209985005, 34.038034291286728, 0.0 ], [ -118.650388941316805, 34.038035815998299, 0.0 ], [ -118.650388330822693, 34.038038516446719, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6371", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.650341376767201, 34.038291143566553, 0.0 ], [ -118.650340759586598, 34.038293842961728, 0.0 ], [ -118.650331032020404, 34.038292301555238, 0.0 ], [ -118.650331649201306, 34.038289602160141, 0.0 ] ], [ [ -118.650350404191798, 34.038259007724683, 0.0 ], [ -118.650342998028194, 34.038291400467521, 0.0 ], [ -118.650341376767201, 34.038291143566553, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6368", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.632863215590206, 34.037338956229767, 0.0 ], [ -118.632862720621304, 34.037336239443412, 0.0 ], [ -118.6328594572458, 34.037336651507722, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6366", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.608241822419103, 34.037595519517581, 0.0 ], [ -118.608244000882806, 34.037591768273828, 0.0 ], [ -118.608258865184894, 34.037597737954783, 0.0 ], [ -118.608256686721603, 34.037601489198813, 0.0 ] ], [ [ -118.608343425213803, 34.037149321660358, 0.0 ], [ -118.6084470159185, 34.037298487775459, 0.0 ], [ -118.608497876987698, 34.037335206169672, 0.0 ], [ -118.608437858094703, 34.037373906462363, 0.0 ], [ -118.608423710052705, 34.037358699360979, 0.0 ], [ -118.608133065883095, 34.037546106591869, 0.0 ], [ -118.608238873198502, 34.037591197381253, 0.0 ], [ -118.608236685852503, 34.037594895106977, 0.0 ], [ -118.608241127533603, 34.037596716087741, 0.0 ], [ -118.608241822419103, 34.037595519517581, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6365", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.608241822419103, 34.037595519517581, 0.0 ], [ -118.608256686721603, 34.037601489198813, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6364", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.603272146059695, 34.03932066065812, 0.0 ], [ -118.603272086629303, 34.039312417230299, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6363", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.583427186496294, 34.038918210300203, 0.0 ], [ -118.583426075856195, 34.038915622667417, 0.0 ], [ -118.583416750968695, 34.038918396465412, 0.0 ], [ -118.583417861608496, 34.038920984098283, 0.0 ] ], [ [ -118.583422864248206, 34.038904056835399, 0.0 ], [ -118.583428740644194, 34.038917748000493, 0.0 ], [ -118.583427186496294, 34.038918210300203, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6362", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.581070330685804, 34.039621875364901, 0.0 ], [ -118.581066878800797, 34.039614148870172, 0.0 ], [ -118.581100892356005, 34.03960357277186, 0.0 ] ], [ [ -118.581100892356005, 34.03960357277186, 0.0 ], [ -118.581102042985194, 34.03960614826979, 0.0 ], [ -118.581111324218895, 34.039603274622507, 0.0 ], [ -118.581110173589394, 34.039600699124783, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6361", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606883280436804, 34.038141661383307, 0.0 ], [ -118.6068766021926, 34.038132179714779, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6756", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.376305276861203, 33.85816802198719, 0.0 ], [ -118.376305239877496, 33.858159780513532, 0.0 ], [ -118.376205791386795, 33.858160118595727, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6755", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376693892048294, 33.858157874262567, 0.0 ], [ -118.376652562279602, 33.858157959478568, 0.0 ], [ -118.376652732711605, 33.858175258330157, 0.0 ], [ -118.376405606259596, 33.858175940058267, 0.0 ], [ -118.376392397776797, 33.85816775932058, 0.0 ], [ -118.376305276861203, 33.85816802198719, 0.0 ] ], [ [ -118.376305276861203, 33.85816802198719, 0.0 ], [ -118.376206218122107, 33.858168319599969, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6754", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3767865218597, 33.858259196107767, 0.0 ], [ -118.376786417216394, 33.858236880937291, 0.0 ] ], [ [ -118.376786417216394, 33.858236880937291, 0.0 ], [ -118.376786364564495, 33.858225652908587, 0.0 ] ], [ [ -118.376786364564495, 33.858225652908587, 0.0 ], [ -118.376786204647999, 33.858191550732542, 0.0 ] ], [ [ -118.376786204647999, 33.858191550732542, 0.0 ], [ -118.376786180995595, 33.858186506844547, 0.0 ], [ -118.376740147561094, 33.858186564967582, 0.0 ] ], [ [ -118.376730238887802, 33.858186577478577, 0.0 ], [ -118.376718689909396, 33.858186592060591, 0.0 ] ], [ [ -118.376740147561094, 33.858186564967582, 0.0 ], [ -118.376730238887802, 33.858186577478577, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6752", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255573273377706, 33.777475919025477, 0.0 ], [ -118.255554226266895, 33.777477265938828, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6751", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.290893377462794, 33.753668805219377, 0.0 ], [ -118.290893633110798, 33.753693432648561, 0.0 ], [ -118.290790777377197, 33.753694029160599, 0.0 ], [ -118.290753197113403, 33.753663095746127, 0.0 ], [ -118.2907529414652, 33.753640257853391, 0.0 ], [ -118.290268062323307, 33.75279252890715, 0.0 ], [ -118.287839320596603, 33.751486423000443, 0.0 ], [ -118.287681585747507, 33.751395241861289, 0.0 ], [ -118.287572679676501, 33.751318803093213, 0.0 ], [ -118.287453973763604, 33.751226769793831, 0.0 ], [ -118.287344897260695, 33.751111131657566, 0.0 ], [ -118.287227810451995, 33.750973507788743, 0.0 ] ], [ [ -118.287227810451995, 33.750973507788743, 0.0 ], [ -118.287166199270999, 33.750873890263627, 0.0 ], [ -118.287108763674993, 33.750762512928318, 0.0 ], [ -118.287076807668299, 33.750657782442232, 0.0 ], [ -118.287055162799703, 33.750537116560949, 0.0 ], [ -118.287070586899006, 33.750426506169617, 0.0 ], [ -118.287096322136406, 33.750319560067133, 0.0 ], [ -118.287142083137994, 33.750216107821359, 0.0 ], [ -118.287187929355596, 33.750126971866663, 0.0 ], [ -118.287537315029098, 33.749606131565173, 0.0 ], [ -118.287314219494206, 33.74950651404022, 0.0 ], [ -118.2874384644483, 33.749312221519389, 0.0 ], [ -118.287385022790204, 33.749288161513483, 0.0 ] ], [ [ -118.287385022790204, 33.749288161513483, 0.0 ], [ -118.287378712750495, 33.74928532066609, 0.0 ], [ -118.287391021736894, 33.749265578694832, 0.0 ], [ -118.287392549560806, 33.749262959568071, 0.0 ], [ -118.287396128614901, 33.749264513806729, 0.0 ] ], [ [ -118.287398754310601, 33.7492656540404, 0.0 ], [ -118.287436401746106, 33.749282002802303, 0.0 ] ], [ [ -118.287396128614901, 33.749264513806729, 0.0 ], [ -118.287398754310601, 33.7492656540404, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6751", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.278457292671803, 33.771872565751153, 0.0 ], [ -118.278456440511704, 33.771861658100811, 0.0 ], [ -118.278515495212105, 33.771858419892183, 0.0 ], [ -118.278506206666194, 33.77217482696669, 0.0 ], [ -118.278628417523095, 33.772173616101838, 0.0 ], [ -118.278747027132695, 33.772172440918247, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6751", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.255511120541598, 33.777661353581919, 0.0 ], [ -118.255510485391298, 33.777653177810407, 0.0 ], [ -118.255581151787098, 33.777578347638837, 0.0 ] ], [ [ -118.255581151787098, 33.777578347638837, 0.0 ], [ -118.255580277663697, 33.777567164214688, 0.0 ] ], [ [ -118.255580277663697, 33.777567164214688, 0.0 ], [ -118.255576621477999, 33.777519448278248, 0.0 ] ], [ [ -118.255576621477999, 33.777519448278248, 0.0 ], [ -118.255573273377706, 33.777475919025477, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6749", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.254048272068701, 33.937138350172788, 0.0 ], [ -118.254035148880504, 33.937138380501892, 0.0 ], [ -118.254034808016499, 33.937036717792509, 0.0 ] ], [ [ -118.254121012560105, 33.937138209713858, 0.0 ], [ -118.254048272068701, 33.937138350172788, 0.0 ] ], [ [ -118.254213165142005, 33.93713803963783, 0.0 ], [ -118.254206518292605, 33.93713803963783, 0.0 ], [ -118.254121012560105, 33.937138209713858, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6748", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254048272068701, 33.937138350172788, 0.0 ], [ -118.254048016499297, 33.937036717792509, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6747", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.392750310715002, 33.852841823919277, 0.0 ], [ -118.392740183706394, 33.852787520975177, 0.0 ], [ -118.392723912278399, 33.852789633300617, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6744", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.406525496290001, 33.916351583268067, 0.0 ], [ -118.406530938506293, 33.917467195074643, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6743", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.203726127939007, 34.038926580413523, 0.0 ], [ -118.203684137106194, 34.038992021120727, 0.0 ], [ -118.203689955954204, 34.038994616731067, 0.0 ], [ -118.203686845519599, 34.038999464190383, 0.0 ] ], [ [ -118.203615813638706, 34.038871137445433, 0.0 ], [ -118.203729238370201, 34.038921732953931, 0.0 ], [ -118.203726127939007, 34.038926580413523, 0.0 ] ], [ [ -118.204371635831805, 34.037344346748, 0.0 ], [ -118.204371594501694, 34.037344407268463, 0.0 ], [ -118.204356426050495, 34.037366904297137, 0.0 ], [ -118.203441206018098, 34.038793250005128, 0.0 ], [ -118.203615813638706, 34.038871137445433, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6742", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.205135105652204, 34.009019263552609, 0.0 ], [ -118.205135103370495, 34.009022147268468, 0.0 ], [ -118.205137862705698, 34.009024568725991, 0.0 ], [ -118.205142818246401, 34.00902378034435, 0.0 ], [ -118.205144620261194, 34.009024681351818, 0.0 ] ], [ [ -118.205135107979402, 34.009016322443777, 0.0 ], [ -118.205135105652204, 34.009019263552609, 0.0 ] ], [ [ -118.205089036979501, 34.009007621271003, 0.0 ], [ -118.205135114879695, 34.009007601465832, 0.0 ], [ -118.205135107979402, 34.009016322443777, 0.0 ] ], [ [ -118.204916891800394, 34.009007695262042, 0.0 ], [ -118.204942486847401, 34.009007684260773, 0.0 ] ], [ [ -118.204942486847401, 34.009007684260773, 0.0 ], [ -118.205089036979501, 34.009007621271003, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6741", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.375599811413295, 33.988051720399334, 0.0 ], [ -118.375595635219796, 33.988062180914447, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6740", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.375625343106194, 33.988058046085577, 0.0 ], [ -118.375620824948101, 33.988068398919488, 0.0 ], [ -118.375595635219796, 33.988062180914447, 0.0 ] ], [ [ -118.375595635219796, 33.988062180914447, 0.0 ], [ -118.375586274218904, 33.988059870180891, 0.0 ] ], [ [ -118.375586274218904, 33.988059870180891, 0.0 ], [ -118.375576053711299, 33.988057347280836, 0.0 ], [ -118.375580011731003, 33.988046794454149, 0.0 ] ], [ [ -118.375580011731003, 33.988046794454149, 0.0 ], [ -118.375609381915993, 33.987968488003233, 0.0 ], [ -118.3755594110212, 33.987955230418883, 0.0 ], [ -118.375563957526097, 33.987941045323382, 0.0 ] ], [ [ -118.375683892277394, 33.987965742998043, 0.0 ], [ -118.375686632839901, 33.987966448374877, 0.0 ], [ -118.375687601336196, 33.987963542886192, 0.0 ], [ -118.375757878544107, 33.987980355693381, 0.0 ], [ -118.375753237051796, 33.987993580604908, 0.0 ] ], [ [ -118.375563957526097, 33.987941045323382, 0.0 ], [ -118.375565784859802, 33.987935344042413, 0.0 ], [ -118.375683892277394, 33.987965742998043, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6739", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.351657852063894, 33.989009370608933, 0.0 ], [ -118.351708555594499, 33.989009114960908, 0.0 ], [ -118.3516876776701, 33.989081463360108, 0.0 ], [ -118.351647370493595, 33.98919241461541, 0.0 ], [ -118.351617544887304, 33.989247975459051, 0.0 ], [ -118.351589764465501, 33.989295270349018, 0.0 ], [ -118.351525767236097, 33.989384235871768, 0.0 ], [ -118.351480432314503, 33.989441330603753, 0.0 ], [ -118.351373912292203, 33.989367533532253, 0.0 ] ], [ [ -118.351271070435004, 33.989302883581978, 0.0 ], [ -118.351258407033896, 33.989315442082621, 0.0 ], [ -118.351407440298402, 33.989419714081457, 0.0 ] ], [ [ -118.351373912292203, 33.989367533532253, 0.0 ], [ -118.351275380463093, 33.989298609255847, 0.0 ], [ -118.351271070435004, 33.989302883581978, 0.0 ] ], [ [ -118.351490149259305, 33.988781208769907, 0.0 ], [ -118.351490061724604, 33.988784741185711, 0.0 ], [ -118.351723724045698, 33.98878371859346, 0.0 ], [ -118.351657852063894, 33.989009370608933, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6737", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.114583396357702, 33.846890612373322, 0.0 ], [ -118.114613081953294, 33.846890505614439, 0.0 ] ], [ [ -118.114613081953294, 33.846890505614439, 0.0 ], [ -118.114641532522597, 33.846890403295397, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6736", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.114641571524899, 33.846878197978171, 0.0 ], [ -118.114652591764298, 33.846878170834763, 0.0 ], [ -118.114652591764298, 33.846918563227192, 0.0 ], [ -118.114688467707794, 33.846918563227192, 0.0 ] ], [ [ -118.114688467707794, 33.846918563227192, 0.0 ], [ -118.114765940512697, 33.846918563227192, 0.0 ] ], [ [ -118.114583396357702, 33.846896066198511, 0.0 ], [ -118.114583396357702, 33.846890612373322, 0.0 ] ], [ [ -118.114583396357702, 33.846890612373322, 0.0 ], [ -118.114583396357702, 33.846887657374403, 0.0 ] ], [ [ -118.114583396357702, 33.846887657374403, 0.0 ], [ -118.114583396357702, 33.846878341266788, 0.0 ], [ -118.114641571524899, 33.846878197978171, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6735", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.067652196623001, 33.951437900130152, 0.0 ], [ -118.067727088199206, 33.951433759562192, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6730", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.063983615461396, 33.918038062518796, 0.0 ], [ -118.063976926740594, 33.918038062245579, 0.0 ], [ -118.0639769335898, 33.918047104442451, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6729", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.0639769335898, 33.918047104442451, 0.0 ], [ -118.063912929511105, 33.918047180359601, 0.0 ], [ -118.063912929511105, 33.918104871603752, 0.0 ], [ -118.063523321877199, 33.918105042035727, 0.0 ], [ -118.063523236661197, 33.918092685713127, 0.0 ] ], [ [ -118.063523236661197, 33.918092685713127, 0.0 ], [ -118.063653729807996, 33.918092602237223, 0.0 ] ], [ [ -118.063983658795493, 33.91804709580456, 0.0 ], [ -118.0639769335898, 33.918047104442451, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6712", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.100149989679394, 34.084839420388313, 0.0 ], [ -118.100164348905494, 34.084839408483347, 0.0 ], [ -118.100169788654995, 34.084839360288633, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6711", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.100169788654995, 34.084839360288633, 0.0 ], [ -118.100169788654995, 34.084875260366857, 0.0 ], [ -118.099971405765302, 34.084875942095053, 0.0 ] ], [ [ -118.100169788654995, 34.084825664644477, 0.0 ], [ -118.100169788654995, 34.084839360288633, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.064589906909504, 33.903196582374257, 0.0 ], [ -118.064587925589095, 33.902250687117942, 0.0 ], [ -118.064129425362694, 33.902258730080362, 0.0 ], [ -118.064128921503794, 33.901600194390703, 0.0 ], [ -118.064128791154701, 33.901429828891473, 0.0 ], [ -118.064128442668306, 33.900974357906577, 0.0 ], [ -118.064077939953705, 33.900940389318798, 0.0 ], [ -118.064102122209604, 33.894949308081287, 0.0 ], [ -118.064113530428301, 33.892287382891851, 0.0 ], [ -118.064113747655696, 33.892236696354928, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.067043653978104, 33.951183600825978, 0.0 ], [ -118.066982921772706, 33.95118692278389, 0.0 ], [ -118.0669802309761, 33.951158954807077, 0.0 ] ], [ [ -118.067043680793404, 33.951183599359233, 0.0 ], [ -118.067043653978104, 33.951183600825978, 0.0 ] ], [ [ -118.0669802309761, 33.951158954807077, 0.0 ], [ -118.066977297515507, 33.951128464595641, 0.0 ], [ -118.066947717922403, 33.951130453499083, 0.0 ], [ -118.066946074611707, 33.951130563993452, 0.0 ], [ -118.066946207200601, 33.95113193346463, 0.0 ], [ -118.066946339789496, 33.951133302935652, 0.0 ] ], [ [ -118.066946339789496, 33.951133302935652, 0.0 ], [ -118.066939988722098, 33.951133715825293, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.065540820240301, 33.951200367564823, 0.0 ], [ -118.065540840345804, 33.951170141213147, 0.0 ], [ -118.065541663261698, 33.949932969080059, 0.0 ], [ -118.064024562494595, 33.949920271893603, 0.0 ], [ -118.064022705584705, 33.949481502533068, 0.0 ], [ -118.064036066656996, 33.946877463541711, 0.0 ], [ -118.063243472474397, 33.946880786966453, 0.0 ], [ -118.063243438853306, 33.946867047785013, 0.0 ], [ -118.063243069111095, 33.946715916789579, 0.0 ], [ -118.063236569976993, 33.944059369829162, 0.0 ], [ -118.063272915128493, 33.943894060300181, 0.0 ] ], [ [ -118.063272915128493, 33.943894060300181, 0.0 ], [ -118.063498438799996, 33.942868305546803, 0.0 ], [ -118.063773175241707, 33.942868220330773, 0.0 ], [ -118.063858358911205, 33.941972152326528, 0.0 ], [ -118.063869295761094, 33.941857103550433, 0.0 ], [ -118.063871639370305, 33.941832450243027, 0.0 ], [ -118.063874243377796, 33.941805057676973, 0.0 ], [ -118.063877838552301, 33.941766698697784, 0.0 ], [ -118.063909103526299, 33.941755357819673, 0.0 ], [ -118.064042420795303, 33.941710303242147, 0.0 ], [ -118.064185972623406, 33.941664906560817, 0.0 ], [ -118.0641811025951, 33.939441748624958, 0.0 ], [ -118.064221317709595, 33.939393067170528, 0.0 ], [ -118.064222229600205, 33.939016953538093, 0.0 ], [ -118.064060084812994, 33.939017642069572, 0.0 ], [ -118.064029931103704, 33.938993703644002, 0.0 ] ], [ [ -118.064029931103704, 33.938993703644002, 0.0 ], [ -118.064028141567405, 33.935368102945702, 0.0 ], [ -118.064074499081102, 33.935323534968312, 0.0 ], [ -118.064076885129595, 33.935270786253191, 0.0 ], [ -118.064054339194499, 33.931766535590228, 0.0 ] ], [ [ -118.064054339194499, 33.931766535590228, 0.0 ], [ -118.064042372642305, 33.929906608357278, 0.0 ], [ -118.064014166140396, 33.929856075258577, 0.0 ], [ -118.064011946419996, 33.929234916772167, 0.0 ], [ -118.064007963213498, 33.928549721619831, 0.0 ], [ -118.0640089536913, 33.928433569356102, 0.0 ] ], [ [ -118.0640089536913, 33.928433569356102, 0.0 ], [ -118.063993987786603, 33.925599543079407, 0.0 ], [ -118.063993849866506, 33.925559768609688, 0.0 ] ], [ [ -118.063993849866506, 33.925559768609688, 0.0 ], [ -118.063989879575303, 33.924414776866563, 0.0 ], [ -118.064002917625999, 33.924375662714283, 0.0 ], [ -118.064002168524397, 33.922851667365599, 0.0 ], [ -118.064002168524397, 33.922837436290642, 0.0 ], [ -118.0639985894516, 33.919280775350799, 0.0 ], [ -118.063985295752701, 33.919214988584933, 0.0 ], [ -118.063983439348604, 33.918060936996469, 0.0 ] ], [ [ -118.063983439348604, 33.918060936996469, 0.0 ], [ -118.063983658795493, 33.91804709580456, 0.0 ] ], [ [ -118.063983658795493, 33.91804709580456, 0.0 ], [ -118.063983615461396, 33.918038062518796, 0.0 ] ], [ [ -118.063983615461396, 33.918038062518796, 0.0 ], [ -118.063983549697397, 33.918024357911669, 0.0 ] ], [ [ -118.063983549697397, 33.918024357911669, 0.0 ], [ -118.063979415847598, 33.91716290165742, 0.0 ], [ -118.063929818875295, 33.915354547531898, 0.0 ], [ -118.063976826383893, 33.915316020714762, 0.0 ], [ -118.0639726490828, 33.915096221533233, 0.0 ], [ -118.063996753176596, 33.914932580789618, 0.0 ], [ -118.064113205702895, 33.914835368276911, 0.0 ], [ -118.064126312939905, 33.914810156305627, 0.0 ], [ -118.064630567132895, 33.914681497255778, 0.0 ], [ -118.064620652112296, 33.913190043330658, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.064129465402402, 33.887595351072619, 0.0 ], [ -118.064121385733301, 33.88438498644512, 0.0 ], [ -118.064073856499505, 33.88240470385729, 0.0 ], [ -118.064033314776594, 33.878609963680248, 0.0 ], [ -118.064002917625999, 33.877331137430112, 0.0 ], [ -118.064216213319, 33.877119886921697, 0.0 ], [ -118.064355541508206, 33.875330861841462, 0.0 ], [ -118.064240499883994, 33.874529405193059, 0.0 ], [ -118.0639169132956, 33.874216979052783, 0.0 ], [ -118.063890286358699, 33.873233731158827, 0.0 ], [ -118.063880664050401, 33.872854962878293, 0.0 ], [ -118.063854298945003, 33.8718171385487, 0.0 ], [ -118.063842879998603, 33.871817138546383, 0.0 ], [ -118.063832965442401, 33.871171411842028, 0.0 ], [ -118.063799699245294, 33.867655553083218, 0.0 ], [ -118.063819463357802, 33.867655542617108, 0.0 ], [ -118.063780299397905, 33.866132080012889, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6793", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.218491307503896, 34.08586279996743, 0.0 ], [ -118.218491462590706, 34.085862658366459, 0.0 ], [ -118.2184940706357, 34.085860214695508, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6847", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.043973534857201, 34.07124636951977, 0.0 ], [ -118.043972296102197, 34.071147471176303, 0.0 ], [ -118.046223873727598, 34.071122673315088, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.063716272106404, 33.862570540398458, 0.0 ], [ -118.063708566177297, 33.862554248408301, 0.0 ], [ -118.063664414836296, 33.860029011341453, 0.0 ], [ -118.063640352372403, 33.858654136388921, 0.0 ] ], [ [ -118.063640352372403, 33.858654136388921, 0.0 ], [ -118.0636388089886, 33.858571371471207, 0.0 ], [ -118.0636366572014, 33.858455977021251, 0.0 ], [ -118.063591109998697, 33.856013423884221, 0.0 ], [ -118.063540121206103, 33.853449563189109, 0.0 ], [ -118.063476362926494, 33.848700278416459, 0.0 ], [ -118.063514727417598, 33.848614523030548, 0.0 ], [ -118.063472805594401, 33.846172395709743, 0.0 ], [ -118.063479248609298, 33.846164149659863, 0.0 ], [ -118.063484110342003, 33.846043967528253, 0.0 ], [ -118.063483030387403, 33.845759589144357, 0.0 ], [ -118.063483038238004, 33.845754375960077, 0.0 ], [ -118.063483022018005, 33.845743018790401, 0.0 ], [ -118.063483014700793, 33.845737895298967, 0.0 ], [ -118.063475986840402, 33.844293096891292, 0.0 ] ], [ [ -118.063475986840402, 33.844293096891292, 0.0 ], [ -118.063467400154295, 33.843490437441908, 0.0 ], [ -118.063447650053305, 33.838572847296327, 0.0 ], [ -118.063422919208094, 33.833600944654101, 0.0 ] ], [ [ -118.063422919208094, 33.833600944654101, 0.0 ], [ -118.063422118418103, 33.833475633181394, 0.0 ] ], [ [ -118.063422118418103, 33.833475633181394, 0.0 ], [ -118.063415779262598, 33.832483651519929, 0.0 ], [ -118.063212027763697, 33.832484077600057, 0.0 ], [ -118.063199927089201, 33.831762042280211, 0.0 ], [ -118.063187452005707, 33.831756371454318, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6872", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.436914773671006, 33.964099279899067, 0.0 ], [ -118.436934714219205, 33.964093655641797, 0.0 ], [ -118.437121933810502, 33.964040139982622, 0.0 ], [ -118.437147583832001, 33.964102518107687, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.064124217139494, 33.88979692281189, 0.0 ], [ -118.064133167370002, 33.887960244225553, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6870", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4369638580974, 33.964219008404207, 0.0 ], [ -118.436960279024603, 33.964220883156571, 0.0 ], [ -118.436792914765306, 33.964306440038577, 0.0 ], [ -118.436157714567798, 33.964614495943373, 0.0 ], [ -118.436201941681105, 33.964686503478497, 0.0 ], [ -118.436288265391099, 33.964636737391018, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6856", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.066940425230399, 33.951133714520488, 0.0 ], [ -118.066940974590295, 33.951150744994322, 0.0 ], [ -118.066975138098599, 33.951148615093871, 0.0 ], [ -118.066974376514807, 33.951140699230393, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6806", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.167351283479505, 33.83223414010984, 0.0 ], [ -118.167352073925301, 33.832324295930412, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6838", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.214144755979902, 34.060422148646907, 0.0 ], [ -118.214143208910201, 34.060423169236117, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6846", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.064132913463794, 33.887932486576211, 0.0 ], [ -118.0641320925115, 33.887855644730877, 0.0 ] ], [ [ -118.0641320925115, 33.887855644730877, 0.0 ], [ -118.064129721597297, 33.887633725119123, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6839", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.214177060464394, 34.060446359897227, 0.0 ], [ -118.214152410800295, 34.060462450405161, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6831", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.248383477069495, 33.868090227831779, 0.0 ], [ -118.248383552269004, 33.86808591530049, 0.0 ], [ -118.248389042944098, 33.868085906757081, 0.0 ] ], [ [ -118.248389042944098, 33.868085906757081, 0.0 ], [ -118.248416937282698, 33.868085863353919, 0.0 ] ], [ [ -118.248416937282698, 33.868085863353919, 0.0 ], [ -118.2484501050143, 33.868085811745438, 0.0 ] ], [ [ -118.2484501050143, 33.868085811745438, 0.0 ], [ -118.248493048138201, 33.86808574492661, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6841", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.930171502349097, 34.002020237440703, 0.0 ], [ -117.930148579240296, 34.002011460190928, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6842", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.930131791684801, 34.001991008346593, 0.0 ], [ -117.930126082211501, 34.002002938589101, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6844", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.042001071745005, 34.058604587430061, 0.0 ], [ -118.042001051021998, 34.058588896034799, 0.0 ], [ -118.042020735921696, 34.05858889604535, 0.0 ], [ -118.042020744926106, 34.058564149133829, 0.0 ], [ -118.042017443389796, 34.058564149131954, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6871", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.436825041204202, 33.963889307630851, 0.0 ], [ -118.436694490264699, 33.963937965977081, 0.0 ], [ -118.436420179902996, 33.964053178033382, 0.0 ], [ -118.436310592103993, 33.964095956474331, 0.0 ], [ -118.435850255175197, 33.96429058985926, 0.0 ], [ -118.435831933731293, 33.964142484420073, 0.0 ], [ -118.435867639242801, 33.964136519298911, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7087", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974044713526396, 34.10680696603449, 0.0 ], [ -117.974051320202605, 34.106806922611902, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7086", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.979597218821993, 34.102478588836313, 0.0 ], [ -117.979592958021001, 34.102475094979553, 0.0 ], [ -117.979525918692204, 34.102419373650392, 0.0 ] ], [ [ -117.979525918692204, 34.102419373650392, 0.0 ], [ -117.979521830273995, 34.102422773268501, 0.0 ], [ -117.979429009674703, 34.102344547826583, 0.0 ], [ -117.979433342696097, 34.102341364757528, 0.0 ] ], [ [ -117.979433342696097, 34.102341364757528, 0.0 ], [ -117.979382899808996, 34.102301752745817, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7085", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.942719932034194, 34.10716748468338, 0.0 ], [ -117.943047301792504, 34.107169474974683, 0.0 ], [ -117.943058720738904, 34.10719231286749, 0.0 ], [ -117.944944465999498, 34.107172201887252, 0.0 ], [ -117.947729495896994, 34.107142972793064, 0.0 ], [ -117.950505322464707, 34.107113573266894, 0.0 ], [ -117.953556396770296, 34.107084258956789, 0.0 ], [ -117.956330007721505, 34.10705093949376, 0.0 ], [ -117.959106175153295, 34.107027675520818, 0.0 ], [ -117.960996181214597, 34.107010547101247, 0.0 ], [ -117.961103979477301, 34.107016341790498, 0.0 ], [ -117.961303555391297, 34.107031680673657, 0.0 ], [ -117.961445780925203, 34.107045059588522, 0.0 ], [ -117.9615788031291, 34.107062273224123, 0.0 ], [ -117.961737049274404, 34.107087156301397, 0.0 ], [ -117.9618747583594, 34.107111954162562, 0.0 ], [ -117.962019199509797, 34.107142546713007, 0.0 ], [ -117.962163725876195, 34.107176973984288, 0.0 ], [ -117.962310553075, 34.107217025512703, 0.0 ], [ -117.962505101244005, 34.10687173020807, 0.0 ], [ -117.963430121118506, 34.106871985856138, 0.0 ], [ -117.963463099717401, 34.106844546298348, 0.0 ], [ -117.966568456626405, 34.106840455929543, 0.0 ], [ -117.967419594213297, 34.106823497941967, 0.0 ], [ -117.969144707280094, 34.106824009238053, 0.0 ], [ -117.969633335926801, 34.106820259733233, 0.0 ], [ -117.971349330879605, 34.10679401319976, 0.0 ], [ -117.971374554820997, 34.106813101587797, 0.0 ], [ -117.973957707972104, 34.106796569680313, 0.0 ] ], [ [ -117.942469576201702, 34.107165962609159, 0.0 ], [ -117.942719932034194, 34.10716748468338, 0.0 ] ], [ [ -117.9423050558771, 34.107164962384303, 0.0 ], [ -117.942469576201702, 34.107165962609159, 0.0 ] ], [ [ -117.941688246144295, 34.107152767869579, 0.0 ], [ -117.942206304911707, 34.10716436201362, 0.0 ], [ -117.9423050558771, 34.107164962384303, 0.0 ] ], [ [ -117.940946313235003, 34.107136163427107, 0.0 ], [ -117.941688246144295, 34.107152767869579, 0.0 ] ], [ [ -117.9408004150784, 34.107132898229601, 0.0 ], [ -117.940946313235003, 34.107136163427107, 0.0 ] ], [ [ -117.940354379958904, 34.107116411820002, 0.0 ], [ -117.940372456206006, 34.107116641043604, 0.0 ], [ -117.940555926292603, 34.107126270453563, 0.0 ], [ -117.940789844261801, 34.107132661654923, 0.0 ], [ -117.9408004150784, 34.107132898229601, 0.0 ] ], [ [ -117.934335497848707, 34.107113488050899, 0.0 ], [ -117.935651233165203, 34.107116129747439, 0.0 ], [ -117.935651233165203, 34.107129849526309, 0.0 ], [ -117.935717275579194, 34.107130019958383, 0.0 ], [ -117.935717360795195, 34.107116214963433, 0.0 ], [ -117.936424227663906, 34.107118430579924, 0.0 ] ], [ [ -117.936470499961501, 34.107118601011948, 0.0 ], [ -117.937975488946094, 34.10712292143473, 0.0 ], [ -117.9379982748478, 34.107102278134057, 0.0 ], [ -117.939046363197505, 34.107102810287827, 0.0 ] ], [ [ -117.936424227663906, 34.107118430579924, 0.0 ], [ -117.936424312879893, 34.107115959315408, 0.0 ], [ -117.936470499961501, 34.107116129747439, 0.0 ], [ -117.936470499961501, 34.107118601011948, 0.0 ] ], [ [ -117.939420237949705, 34.10710456603389, 0.0 ], [ -117.940354379958904, 34.107116411820002, 0.0 ] ], [ [ -117.939046363197505, 34.107102810287827, 0.0 ], [ -117.939291601504394, 34.107102934804502, 0.0 ], [ -117.939420237949705, 34.10710456603389, 0.0 ] ], [ [ -117.973957707972104, 34.106796569680313, 0.0 ], [ -117.9740563881209, 34.106524986231179, 0.0 ] ], [ [ -117.9740563881209, 34.106524986231179, 0.0 ], [ -117.974306411917496, 34.106582251395231, 0.0 ], [ -117.974418447191397, 34.1066107033826, 0.0 ], [ -117.974489809211804, 34.106629385094656, 0.0 ], [ -117.974581902885404, 34.106630082451311, 0.0 ], [ -117.974625212005805, 34.106614060556581, 0.0 ], [ -117.974656433451202, 34.106602510409502, 0.0 ], [ -117.974742070354097, 34.106531818050406, 0.0 ], [ -117.975186446970596, 34.106140534766283, 0.0 ], [ -117.975282731834696, 34.10604990693124, 0.0 ], [ -117.975343445096797, 34.105996544887937, 0.0 ] ], [ [ -117.975343445096797, 34.105996544887937, 0.0 ], [ -117.975932333539205, 34.105478959611261, 0.0 ], [ -117.976051099786503, 34.105374770568709, 0.0 ] ], [ [ -117.976051099786503, 34.105374770568709, 0.0 ], [ -117.976612256134004, 34.104882489774177, 0.0 ] ], [ [ -117.976612256134004, 34.104882489774177, 0.0 ], [ -117.977025143753096, 34.104520279409627, 0.0 ], [ -117.977322554440704, 34.104268714101728, 0.0 ], [ -117.977710356800799, 34.103952834239593, 0.0 ] ], [ [ -117.977710356800799, 34.103952834239593, 0.0 ], [ -117.977786634089199, 34.103890703469297, 0.0 ], [ -117.977850551055496, 34.103840266236993, 0.0 ] ], [ [ -117.977850551055496, 34.103840266236993, 0.0 ], [ -117.979163298858694, 34.102804369672853, 0.0 ], [ -117.979597218821993, 34.102478588836313, 0.0 ] ], [ [ -117.979597218821993, 34.102478588836313, 0.0 ], [ -117.981292761930405, 34.101169585585119, 0.0 ], [ -117.983998540931395, 34.099072589816167, 0.0 ], [ -117.984289297984603, 34.098814640929923, 0.0 ], [ -117.984397692759302, 34.098710847820051, 0.0 ], [ -117.984519892528994, 34.098573479599168, 0.0 ], [ -117.984602466850404, 34.098476162906707, 0.0 ], [ -117.984669617072498, 34.098387453032061, 0.0 ], [ -117.984729779581102, 34.098308798647537, 0.0 ], [ -117.984855387991601, 34.098095502954713, 0.0 ], [ -117.984922538213695, 34.097966741551637, 0.0 ], [ -117.984996590933207, 34.097795713003613, 0.0 ], [ -117.985077460934306, 34.097579605182197, 0.0 ], [ -117.985153217974201, 34.097398606360123, 0.0 ], [ -117.985227185477797, 34.097245473175938, 0.0 ], [ -117.985357992065303, 34.096980707008228, 0.0 ], [ -117.985578275471596, 34.096577976107561, 0.0 ], [ -117.985736521616801, 34.096326844502727, 0.0 ], [ -117.985860425706903, 34.096140817935698, 0.0 ], [ -117.986023955245301, 34.095904684350053, 0.0 ], [ -117.9862579584304, 34.095602763998457, 0.0 ], [ -117.9865539136607, 34.095259854742423, 0.0 ], [ -117.986886000482599, 34.094909957772828, 0.0 ], [ -117.987211099590894, 34.094610849549923, 0.0 ], [ -117.987500152323705, 34.094364745690257, 0.0 ], [ -117.987703222094396, 34.09419789272706, 0.0 ], [ -117.987918392539697, 34.094035044916907, 0.0 ], [ -117.988229431005095, 34.093726903796082, 0.0 ], [ -117.988851507935806, 34.093273384148731, 0.0 ], [ -117.988938939570204, 34.093061196264067, 0.0 ], [ -117.989900005820303, 34.092340268752487, 0.0 ], [ -117.989949005030596, 34.092191992881347, 0.0 ], [ -117.989368854380601, 34.092148362280177, 0.0 ], [ -117.988857046977003, 34.09201406183594, 0.0 ], [ -117.985924313428995, 34.092064705226662, 0.0 ] ], [ [ -117.9845928752828, 34.09208769693084, 0.0 ], [ -117.984494668587701, 34.092089392795813, 0.0 ] ], [ [ -117.985924313428995, 34.092064705226662, 0.0 ], [ -117.9845928752828, 34.09208769693084, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7084", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.924852915287204, 34.140977555250707, 0.0 ], [ -117.924853511534906, 34.140614887255353, 0.0 ], [ -117.924847887277707, 34.140541516263909, 0.0 ], [ -117.924780055327403, 34.139926512262512, 0.0 ], [ -117.924814993894699, 34.139577467453208, 0.0 ], [ -117.924863055728906, 34.139230979124299, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7083", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.924852915287204, 34.140977555250707, 0.0 ], [ -117.925146739852394, 34.140977737059593, 0.0 ], [ -117.925179888883406, 34.141040967344964, 0.0 ], [ -117.925209203193702, 34.140977822275708, 0.0 ] ], [ [ -117.925209203193702, 34.140977822275708, 0.0 ], [ -117.928362510685503, 34.140979692211872, 0.0 ], [ -117.928367468638299, 34.140979695151962, 0.0 ], [ -117.928370632242405, 34.140979697028023, 0.0 ], [ -117.928370636952494, 34.140974201291471, 0.0 ] ], [ [ -117.922585828082106, 34.140976032739218, 0.0 ], [ -117.922805514976304, 34.140976288387293, 0.0 ], [ -117.924852915287204, 34.140977555250707, 0.0 ] ], [ [ -117.916151424269003, 34.139841040773767, 0.0 ], [ -117.916425817794703, 34.139841296244619, 0.0 ], [ -117.916424880418603, 34.139868394938311, 0.0 ], [ -117.918586555145097, 34.139867627994199, 0.0 ], [ -117.918821240058406, 34.140510412417413, 0.0 ], [ -117.921222542227397, 34.140817019649809, 0.0 ], [ -117.921345849805306, 34.140819661346363, 0.0 ], [ -117.922588384562602, 34.140831165508779, 0.0 ], [ -117.922585828082106, 34.140976032739218, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7082", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.925209203193702, 34.140977822275708, 0.0 ], [ -117.925163356976, 34.140936151642883, 0.0 ], [ -117.925163953488095, 34.140353359296299, 0.0 ], [ -117.925492376021197, 34.14035361494436, 0.0 ], [ -117.925492546453199, 34.140170400505781, 0.0 ], [ -117.925455136621395, 34.140170400505781, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7081", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.916151424269003, 34.139841040773767, 0.0 ], [ -117.916139918054697, 34.140751403316003, 0.0 ], [ -117.916139406758603, 34.140795715645368, 0.0 ], [ -117.916139217220504, 34.140831289125607, 0.0 ], [ -117.916172265069605, 34.14083131204648, 0.0 ], [ -117.916172259557399, 34.140836807782541, 0.0 ], [ -117.916099554284699, 34.140836757312442, 0.0 ] ], [ [ -117.916099554284699, 34.140836757312442, 0.0 ], [ -117.915957448524694, 34.140836658603192, 0.0 ] ], [ [ -117.915957448524694, 34.140836658603192, 0.0 ], [ -117.915884743252207, 34.14083660806854, 0.0 ] ], [ [ -117.917912056176107, 34.133671912349868, 0.0 ], [ -117.9179120703633, 34.133697988296952, 0.0 ], [ -117.916257430943304, 34.133693642279972, 0.0 ], [ -117.916223685400197, 34.135387821932291, 0.0 ], [ -117.916152785673304, 34.139733327549912, 0.0 ], [ -117.916151424269003, 34.139841040773767, 0.0 ] ], [ [ -117.907483845386494, 34.129827306330967, 0.0 ], [ -117.908362933827405, 34.129830459323671, 0.0 ], [ -117.908680448710101, 34.129849973791792, 0.0 ], [ -117.911202331544402, 34.129862415330322, 0.0 ], [ -117.915610982231399, 34.129881929798508, 0.0 ], [ -117.917909513882705, 34.129891729640534, 0.0 ], [ -117.917911644283095, 34.132170576391722, 0.0 ], [ -117.917912752091397, 34.132547486839051, 0.0 ], [ -117.917911899931198, 34.133384734215078, 0.0 ], [ -117.917912056176107, 34.133671912349868, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7080", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.892443303439904, 34.092413639743938, 0.0 ], [ -117.892430776685302, 34.092417218816699, 0.0 ], [ -117.892430776685302, 34.092428211683071, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7079", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.893407018890997, 34.092130680696627, 0.0 ], [ -117.893382895253396, 34.092139244166198, 0.0 ], [ -117.892443303439904, 34.092413639743938, 0.0 ] ], [ [ -117.907526964691598, 34.08914892888145, 0.0 ], [ -117.907503785934693, 34.08914892888145, 0.0 ], [ -117.907503785934693, 34.089091834149507, 0.0 ], [ -117.903311498717201, 34.089366144511132, 0.0 ], [ -117.900467414119106, 34.08956128919219, 0.0 ], [ -117.8983972613958, 34.089686641954557, 0.0 ], [ -117.896816504263398, 34.089794355001118, 0.0 ], [ -117.8968413873407, 34.091613546551677, 0.0 ], [ -117.896846841165896, 34.092002898537608, 0.0 ], [ -117.895543717819805, 34.092007585418578, 0.0 ], [ -117.893743699873298, 34.092011164491332, 0.0 ], [ -117.893407018890997, 34.092130680696627, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7078", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.934254834446605, 34.095989134100613, 0.0 ], [ -117.934777768981604, 34.095992968144607, 0.0 ], [ -117.936778215002207, 34.096007028787582, 0.0 ], [ -117.936794746909698, 34.093718296978267, 0.0 ], [ -117.937128538051894, 34.093718041330213, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7077", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934417305225907, 34.11637399793414, 0.0 ], [ -117.934393956036999, 34.116374764878252, 0.0 ] ], [ [ -117.934417049577803, 34.116184818374322, 0.0 ], [ -117.934417305225907, 34.11637399793414, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7076", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.934417305225907, 34.11637399793414, 0.0 ], [ -117.934486159768298, 34.116371867533687, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7075", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.934831172109995, 34.116391978335791, 0.0 ], [ -117.934831455072896, 34.116391978513853, 0.0 ], [ -117.936103218924401, 34.116385161232429, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7074", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.934036425967406, 34.116037991738203, 0.0 ], [ -117.933244988467393, 34.116033133862423, 0.0 ], [ -117.933242943282906, 34.116033048646422, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7073", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934792683371299, 34.121506955246574, 0.0 ], [ -117.934795535478003, 34.12120793631744, 0.0 ] ], [ [ -117.934795535478003, 34.12120793631744, 0.0 ], [ -117.934801913582106, 34.12053924678257, 0.0 ] ], [ [ -117.934801913582106, 34.12053924678257, 0.0 ], [ -117.934802457736694, 34.12048219608117, 0.0 ] ], [ [ -117.934802457736694, 34.12048219608117, 0.0 ], [ -117.934802566842905, 34.120470757995569, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7072", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934377496698502, 34.107480549427109, 0.0 ], [ -117.934377436311706, 34.107557489674761, 0.0 ], [ -117.934341098139797, 34.107557469935912, 0.0 ] ], [ [ -117.934374281659402, 34.107367885127992, 0.0 ], [ -117.934377585122107, 34.107367886921907, 0.0 ], [ -117.934377496698502, 34.107480549427109, 0.0 ] ], [ [ -117.934333105078693, 34.107304661819072, 0.0 ], [ -117.934374331265204, 34.107304684210597, 0.0 ], [ -117.934374281659402, 34.107367885127992, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7071", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934506752453999, 34.118080087697997, 0.0 ], [ -117.934974277118897, 34.118084198197707, 0.0 ], [ -117.934973254526795, 34.118029233866181, 0.0 ], [ -117.935035206571797, 34.118029659946266, 0.0 ], [ -117.935037507404303, 34.11800298733263, 0.0 ], [ -117.9350535280157, 34.11800298733263, 0.0 ] ], [ [ -117.934022724285299, 34.118061695223901, 0.0 ], [ -117.934082576707496, 34.11807635832416, 0.0 ], [ -117.934506752453999, 34.118080087697997, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7070", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.937254353294193, 34.12151497290931, 0.0 ], [ -117.937599526983007, 34.121516188103371, 0.0 ] ], [ [ -117.937599526983007, 34.121516188103371, 0.0 ], [ -117.937600648864503, 34.121362390297683, 0.0 ] ], [ [ -117.934005034038293, 34.12151559202055, 0.0 ], [ -117.934005797075301, 34.121515676807327, 0.0 ], [ -117.934016619509606, 34.121515847239323, 0.0 ], [ -117.934016704725593, 34.1215048543731, 0.0 ], [ -117.934792683371299, 34.121506955246574, 0.0 ] ], [ [ -117.935914121147405, 34.121510254582702, 0.0 ], [ -117.937254353294193, 34.12151497290931, 0.0 ] ], [ [ -117.934998252756699, 34.121507511802179, 0.0 ], [ -117.935590474144504, 34.121509115173929, 0.0 ], [ -117.935914121147405, 34.121510254582702, 0.0 ] ], [ [ -117.934792683371299, 34.121506955246574, 0.0 ], [ -117.934998252756699, 34.121507511802179, 0.0 ] ], [ [ -117.937600648864503, 34.121362390297683, 0.0 ], [ -117.937602475294796, 34.12111200647373, 0.0 ] ], [ [ -117.937602475294796, 34.12111200647373, 0.0 ], [ -117.9376086622852, 34.120263837093837, 0.0 ] ], [ [ -117.9376086622852, 34.120263837093837, 0.0 ], [ -117.937611032990205, 34.119938839105203, 0.0 ] ], [ [ -117.937611032990205, 34.119938839105203, 0.0 ], [ -117.937612488528202, 34.119739300614697, 0.0 ] ], [ [ -117.937612488528202, 34.119739300614697, 0.0 ], [ -117.937612905897794, 34.119682083749737, 0.0 ], [ -117.937610945929407, 34.119661376257383, 0.0 ], [ -117.937605066024105, 34.119639475740783, 0.0 ], [ -117.9375971409345, 34.119621154296887, 0.0 ], [ -117.937586233284193, 34.119603344149219, 0.0 ], [ -117.937565014495704, 34.11957897236811, 0.0 ], [ -117.9375495903965, 34.119566445613437, 0.0 ], [ -117.937534081081196, 34.119555793611227, 0.0 ], [ -117.937503403314807, 34.119540113863863, 0.0 ], [ -117.937498073698507, 34.119538631372933, 0.0 ] ], [ [ -117.937498073698507, 34.119538631372933, 0.0 ], [ -117.937466334346993, 34.119529802725673, 0.0 ], [ -117.937431736643703, 34.119525712356868, 0.0 ], [ -117.937399524988905, 34.119527757541292, 0.0 ], [ -117.9373772836082, 34.119531847910132, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7069", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.939214796816202, 34.108800019833453, 0.0 ], [ -117.939231172311906, 34.10774746496115, 0.0 ] ], [ [ -117.939231172311906, 34.10774746496115, 0.0 ], [ -117.939231373319998, 34.107734544918387, 0.0 ] ], [ [ -117.939231373319998, 34.107734544918387, 0.0 ], [ -117.939231584158193, 34.10772099304269, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7068", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.9348262949039, 34.117282068447317, 0.0 ], [ -117.934826171679802, 34.117304556849867, 0.0 ] ], [ [ -117.934826789951401, 34.117191722290933, 0.0 ], [ -117.9348262949039, 34.117282068447317, 0.0 ] ], [ [ -117.9348281881106, 34.116936558241918, 0.0 ], [ -117.934826789951401, 34.117191722290933, 0.0 ] ], [ [ -117.934829332722003, 34.116727666648579, 0.0 ], [ -117.9348281881106, 34.116936558241918, 0.0 ] ], [ [ -117.934831172109995, 34.116391978335791, 0.0 ], [ -117.934829332722003, 34.116727666648579, 0.0 ] ], [ [ -117.934832307233094, 34.116184818374322, 0.0 ], [ -117.934831172109995, 34.116391978335791, 0.0 ] ], [ [ -117.934031676348795, 34.116187674419763, 0.0 ], [ -117.934111124073397, 34.116187545286977, 0.0 ], [ -117.934111294505499, 34.116184818374322, 0.0 ], [ -117.934417049577803, 34.116184818374322, 0.0 ] ], [ [ -117.934417049577803, 34.116184818374322, 0.0 ], [ -117.934832307233094, 34.116184818374322, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7067", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934832307233094, 34.116184818374322, 0.0 ], [ -117.934834701606903, 34.115895334303211, 0.0 ] ], [ [ -117.934834701606903, 34.115895334303211, 0.0 ], [ -117.934836576637196, 34.1156686397741, 0.0 ] ], [ [ -117.934836576637196, 34.1156686397741, 0.0 ], [ -117.934837054323197, 34.115610886687953, 0.0 ] ], [ [ -117.934837054323197, 34.115610886687953, 0.0 ], [ -117.934841718724101, 34.115046952298442, 0.0 ] ], [ [ -117.934841718724101, 34.115046952298442, 0.0 ], [ -117.934841782044899, 34.115039296712879, 0.0 ] ], [ [ -117.934841782044899, 34.115039296712879, 0.0 ], [ -117.934841851427095, 34.115030908275727, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7066", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.933144970423896, 34.127753605317579, 0.0 ], [ -117.933150143039398, 34.127948804431931, 0.0 ] ], [ [ -117.933139072002007, 34.1275310164283, 0.0 ], [ -117.933144970423896, 34.127753605317579, 0.0 ] ], [ [ -117.9331255156102, 34.127019438540607, 0.0 ], [ -117.933139072002007, 34.1275310164283, 0.0 ] ], [ [ -117.933388440853193, 34.127020377104877, 0.0 ], [ -117.9331255156102, 34.127019438540607, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7065", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.933109841183693, 34.133751541261852, 0.0 ], [ -117.933109154134797, 34.13413625427706, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7064", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.934506752453999, 34.118093491639158, 0.0 ], [ -117.934506752453999, 34.118146693804157, 0.0 ] ], [ [ -117.934506752453999, 34.118080087697997, 0.0 ], [ -117.934506752453999, 34.118093491639158, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7063", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.933820930047801, 34.128684931744239, 0.0 ], [ -117.933826417357494, 34.129095726817198, 0.0 ], [ -117.933791052710205, 34.129466672143103, 0.0 ], [ -117.933765402688707, 34.130209414955353, 0.0 ], [ -117.933741627419707, 34.131177213270867, 0.0 ], [ -117.933788155365505, 34.13122868374564, 0.0 ], [ -117.933737622267003, 34.133758576885583, 0.0 ], [ -117.933109841183693, 34.133751541261852, 0.0 ] ], [ [ -117.933109841183693, 34.133751541261852, 0.0 ], [ -117.933106512438201, 34.133751503956127, 0.0 ] ], [ [ -117.933387043569297, 34.12819022141074, 0.0 ], [ -117.933806817673499, 34.128190477058887, 0.0 ], [ -117.933817725323806, 34.128445017304372, 0.0 ], [ -117.933820930047801, 34.128684931744239, 0.0 ] ], [ [ -117.933388440853193, 34.127020377104877, 0.0 ], [ -117.933387043569297, 34.12819022141074, 0.0 ] ], [ [ -117.933947442231997, 34.126567976197542, 0.0 ], [ -117.933946912807002, 34.126617985880173, 0.0 ], [ -117.933388918321597, 34.126620627576713, 0.0 ], [ -117.933388440853193, 34.127020377104877, 0.0 ] ], [ [ -117.934005034038293, 34.12151559202055, 0.0 ], [ -117.933985856527201, 34.122552414881277, 0.0 ], [ -117.933982788750399, 34.123492944071089, 0.0 ], [ -117.933986112175205, 34.123492944071089, 0.0 ], [ -117.933985260014893, 34.123565292470282, 0.0 ], [ -117.9339819365903, 34.123565207254288, 0.0 ], [ -117.933974863660794, 34.123977737997009, 0.0 ], [ -117.933947442231997, 34.126567976197542, 0.0 ] ], [ [ -117.934010837122599, 34.119561692977832, 0.0 ], [ -117.934007075315606, 34.1200411840492, 0.0 ], [ -117.934006990099604, 34.121409838513003, 0.0 ], [ -117.934005034038293, 34.12151559202055, 0.0 ] ], [ [ -117.934022724285299, 34.118061695223901, 0.0 ], [ -117.934020880310499, 34.118281558495212, 0.0 ], [ -117.934010837122599, 34.119561692977832, 0.0 ] ], [ [ -117.934031676348795, 34.116187674419763, 0.0 ], [ -117.934031276664598, 34.116230920240092, 0.0 ], [ -117.934034600089404, 34.116230920240092, 0.0 ], [ -117.934025993271604, 34.117671923103003, 0.0 ], [ -117.934022724285299, 34.118061695223901, 0.0 ] ], [ [ -117.934036425967406, 34.116037991738203, 0.0 ], [ -117.934035026169497, 34.116184818374322, 0.0 ], [ -117.934031702744804, 34.116184818374322, 0.0 ], [ -117.934031676348795, 34.116187674419763, 0.0 ] ], [ [ -117.934031272888106, 34.114376445636452, 0.0 ], [ -117.934047808572103, 34.114416671218592, 0.0 ], [ -117.934047382492096, 34.114661922918103, 0.0 ], [ -117.934038946106298, 34.115773651087977, 0.0 ], [ -117.934036425967406, 34.116037991738203, 0.0 ] ], [ [ -117.934031226151106, 34.114376331941479, 0.0 ], [ -117.934031272888106, 34.114376445636452, 0.0 ] ], [ [ -117.934277230530597, 34.108773153600687, 0.0 ], [ -117.934267836330505, 34.108895525417608, 0.0 ], [ -117.934230596930604, 34.11061774113972, 0.0 ], [ -117.934122543019896, 34.110689919107003, 0.0 ], [ -117.934038520026206, 34.113847683866958, 0.0 ], [ -117.934006052723305, 34.11431509372526, 0.0 ], [ -117.934031226151106, 34.114376331941479, 0.0 ] ], [ [ -117.934333105078693, 34.107304661819072, 0.0 ], [ -117.934333026584099, 34.107310933564399, 0.0 ], [ -117.934296980208501, 34.108515888057823, 0.0 ], [ -117.934277230530597, 34.108773153600687, 0.0 ] ], [ [ -117.934333548934504, 34.10726919912949, 0.0 ], [ -117.934333105078693, 34.107304661819072, 0.0 ] ], [ [ -117.934334387966103, 34.107202163216471, 0.0 ], [ -117.934329622915797, 34.10720597012282, 0.0 ], [ -117.934334291656398, 34.107209858730933, 0.0 ], [ -117.934333643729801, 34.107261625799318, 0.0 ], [ -117.934328206363105, 34.10726596591455, 0.0 ], [ -117.934333548934504, 34.10726919912949, 0.0 ] ], [ [ -117.934335497848707, 34.107113488050899, 0.0 ], [ -117.934334387966103, 34.107202163216471, 0.0 ] ], [ [ -117.934252423252303, 34.101099096460182, 0.0 ], [ -117.934268858922593, 34.106848125371137, 0.0 ], [ -117.934345894202906, 34.106876076224943, 0.0 ], [ -117.934335497848707, 34.107113488050899, 0.0 ] ], [ [ -117.934252475448503, 34.101022048549318, 0.0 ], [ -117.934252241799101, 34.101035626004887, 0.0 ], [ -117.934252423252303, 34.101099096460182, 0.0 ] ], [ [ -117.934254834446605, 34.095989134100613, 0.0 ], [ -117.934255139143801, 34.096053130653189, 0.0 ], [ -117.934320158965406, 34.09610281159167, 0.0 ], [ -117.934318710293098, 34.096576101355211, 0.0 ], [ -117.934313852980097, 34.097122421246063, 0.0 ], [ -117.934267836330505, 34.097217948402118, 0.0 ], [ -117.934265365065997, 34.100273027860617, 0.0 ], [ -117.934252475448503, 34.101022048549318, 0.0 ] ], [ [ -117.925379890877494, 34.086612218460012, 0.0 ], [ -117.925608184589507, 34.086613496700373, 0.0 ], [ -117.925642611860795, 34.086627131263199, 0.0 ], [ -117.927102362247794, 34.086629432095691, 0.0 ], [ -117.927179908824002, 34.086658490757728, 0.0 ], [ -117.928105695642699, 34.086665478471289, 0.0 ], [ -117.929511589506305, 34.086678942602063, 0.0 ], [ -117.931153702171699, 34.086742939831538, 0.0 ], [ -117.933456238975793, 34.086846306861311, 0.0 ], [ -117.934285390830098, 34.086882097588862, 0.0 ], [ -117.934173928278696, 34.088181641862093, 0.0 ], [ -117.9341684744535, 34.08827324908134, 0.0 ], [ -117.934170604854003, 34.088444959357453, 0.0 ], [ -117.934179722967897, 34.088587951835507, 0.0 ], [ -117.934211593758604, 34.08886669343012, 0.0 ], [ -117.934305927890406, 34.089683062881797, 0.0 ], [ -117.934524251328298, 34.08969166969954, 0.0 ], [ -117.934441932655005, 34.090565559963373, 0.0 ], [ -117.934355523612894, 34.091331992828501, 0.0 ], [ -117.934236902915899, 34.09229842768768, 0.0 ], [ -117.9342417602289, 34.092761406313038, 0.0 ], [ -117.934239800260499, 34.093866658065522, 0.0 ], [ -117.934250026182596, 34.094979238395418, 0.0 ], [ -117.934254834446605, 34.095989134100613, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7062", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.945467745577801, 34.074276998265773, 0.0 ], [ -117.945495287477897, 34.074253290924162, 0.0 ], [ -117.945875110131098, 34.074563099606429, 0.0 ] ], [ [ -117.945365684290806, 34.07419488676841, 0.0 ], [ -117.945467745577801, 34.074276998265773, 0.0 ] ], [ [ -117.940972763755894, 34.072649388231262, 0.0 ], [ -117.942732939902399, 34.072587792311218, 0.0 ], [ -117.942867325562602, 34.072639518434002, 0.0 ], [ -117.943094767114502, 34.072784641312552, 0.0 ], [ -117.943125785744996, 34.072905136761811, 0.0 ], [ -117.943094593861204, 34.073305115238043, 0.0 ], [ -117.9434629003119, 34.073327722994662, 0.0 ], [ -117.944232315737693, 34.07324122873662, 0.0 ], [ -117.944855159612601, 34.073707360354533, 0.0 ], [ -117.945348304708304, 34.074116312024458, 0.0 ], [ -117.945308679259995, 34.074149034975413, 0.0 ], [ -117.945365684290806, 34.07419488676841, 0.0 ] ], [ [ -117.940138036529106, 34.072173999990689, 0.0 ], [ -117.940303090367394, 34.072176369376614, 0.0 ], [ -117.940307436384401, 34.072672667465, 0.0 ], [ -117.940972763755894, 34.072649388231262, 0.0 ] ], [ [ -117.927671257651397, 34.071542056794883, 0.0 ], [ -117.927752816112502, 34.071566137472288, 0.0 ], [ -117.927866579496495, 34.07159195792574, 0.0 ], [ -117.928038886284696, 34.071678196535878, 0.0 ], [ -117.9281732719449, 34.071775939308388, 0.0 ], [ -117.928276638974594, 34.071853315452721, 0.0 ], [ -117.9283731035069, 34.071939468846743, 0.0 ], [ -117.928483373034098, 34.071991194969733, 0.0 ], [ -117.928566117787497, 34.072005596476707, 0.0 ], [ -117.928641960043507, 34.071985570712549, 0.0 ], [ -117.929372857829193, 34.071995711418658, 0.0 ], [ -117.929772861817199, 34.071994859258481, 0.0 ], [ -117.930155566953701, 34.07201803801523, 0.0 ], [ -117.930676236823302, 34.072058430407793, 0.0 ], [ -117.932382772798107, 34.072088085582017, 0.0 ], [ -117.935858222872795, 34.07211254257917, 0.0 ], [ -117.940138036529106, 34.072173999990689, 0.0 ] ], [ [ -117.927790688404897, 34.070713346691932, 0.0 ], [ -117.927844764195797, 34.070753261877407, 0.0 ], [ -117.9278221819511, 34.071041121585878, 0.0 ], [ -117.927777273109598, 34.071155822346093, 0.0 ], [ -117.927704839494396, 34.071302138248768, 0.0 ], [ -117.927649534298794, 34.071405420062433, 0.0 ], [ -117.927652857723501, 34.071514411349497, 0.0 ], [ -117.927671257651397, 34.071542056794883, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7061", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.917136093304094, 34.086576768596608, 0.0 ], [ -117.917136099331302, 34.086612669672519, 0.0 ], [ -117.917070052856801, 34.086612752204459, 0.0 ], [ -117.917069900868796, 34.086604350481139, 0.0 ] ], [ [ -117.917069900868796, 34.086604350481139, 0.0 ], [ -117.9170698476957, 34.086601343127008, 0.0 ], [ -117.916995256739995, 34.086601343127008, 0.0 ] ], [ [ -117.916995256739995, 34.086601343127008, 0.0 ], [ -117.916995279531307, 34.0865759966497, 0.0 ] ], [ [ -117.916995279531307, 34.0865759966497, 0.0 ], [ -117.916995465742104, 34.086368909714061, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7060", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.863851369459795, 34.128623118781853, 0.0 ], [ -117.863844449323906, 34.128623199623753, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7059", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.881005188927503, 34.128615500801367, 0.0 ], [ -117.881005183434695, 34.12860385996175, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7058", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.880719392590294, 34.128615977250448, 0.0 ], [ -117.880719392595793, 34.128591246436613, 0.0 ], [ -117.880808608745497, 34.128591246387529, 0.0 ] ], [ [ -117.880808608745497, 34.128591246387529, 0.0 ], [ -117.8809870410619, 34.128591246181607, 0.0 ] ], [ [ -117.8809870410619, 34.128591246181607, 0.0 ], [ -117.880987040998903, 34.128572011110123, 0.0 ], [ -117.881152230729299, 34.12857206740005, 0.0 ], [ -117.881152230786498, 34.12858305887282, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7057", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.949279318111806, 34.050517064625723, 0.0 ], [ -117.949284105804907, 34.050520610858833, 0.0 ] ], [ [ -117.949284105804907, 34.050520610858833, 0.0 ], [ -117.949293060797601, 34.050512281423558, 0.0 ], [ -117.949295608598007, 34.050514028773563, 0.0 ] ], [ [ -117.949277000317295, 34.050515347840687, 0.0 ], [ -117.949279318111806, 34.050517064625723, 0.0 ] ], [ [ -117.9492630845359, 34.050505040453707, 0.0 ], [ -117.949277000317295, 34.050515347840687, 0.0 ] ], [ [ -117.949295608598007, 34.050514028773563, 0.0 ], [ -117.9492978187495, 34.050511989667591, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7056", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.899076433058596, 34.129876390757367, 0.0 ], [ -117.899066548000505, 34.129876475973397, 0.0 ], [ -117.899066548000505, 34.129881929798508, 0.0 ], [ -117.897810804760496, 34.129875368165038, 0.0 ], [ -117.897791205076402, 34.129847587743278, 0.0 ], [ -117.896141167321403, 34.129839833085597, 0.0 ], [ -117.896141082105402, 34.129714650755339, 0.0 ], [ -117.893700154488101, 34.129704680481247, 0.0 ], [ -117.893280550816002, 34.129703061376837, 0.0 ], [ -117.893204452912002, 34.129659771639773, 0.0 ], [ -117.893178717674502, 34.129645881428829, 0.0 ], [ -117.893100745018202, 34.129604040364008, 0.0 ], [ -117.892877138187202, 34.129490447412167, 0.0 ], [ -117.892526474273296, 34.129329644786353, 0.0 ], [ -117.892359876958395, 34.129260449379828, 0.0 ], [ -117.892187484954107, 34.129192787861562, 0.0 ], [ -117.892002310547099, 34.129125381991443, 0.0 ], [ -117.891895279228706, 34.129089335615753, 0.0 ], [ -117.891710019605696, 34.129028406162988, 0.0 ], [ -117.891514107980498, 34.128970203622757, 0.0 ], [ -117.891350152361994, 34.128925039133328, 0.0 ], [ -117.891192076648807, 34.128885243252938, 0.0 ], [ -117.891048572874695, 34.128851071629732, 0.0 ], [ -117.890952534422496, 34.128829938057187, 0.0 ], [ -117.890751765484197, 34.128789460448772, 0.0 ], [ -117.890621384976797, 34.128765514747712, 0.0 ], [ -117.890301739693598, 34.128717367697597, 0.0 ], [ -117.889942809826096, 34.128672799720214, 0.0 ], [ -117.889871569235098, 34.128608802490781, 0.0 ], [ -117.888321149005094, 34.128605308634057, 0.0 ], [ -117.885931947510699, 34.128602581721438, 0.0 ], [ -117.885629589909399, 34.128612524691249, 0.0 ], [ -117.881619551495206, 34.128602110029043, 0.0 ], [ -117.8811570455225, 34.128602421874113, 0.0 ], [ -117.881138290854807, 34.1286152789081, 0.0 ], [ -117.881005188927503, 34.128615500801367, 0.0 ] ], [ [ -117.899075921762602, 34.129782312273477, 0.0 ], [ -117.899076433058596, 34.129866250051258, 0.0 ], [ -117.899076433058596, 34.129876390757367, 0.0 ] ], [ [ -117.907483845386494, 34.129827306330967, 0.0 ], [ -117.906964283325195, 34.129819977753499, 0.0 ], [ -117.901633850972402, 34.129795861620408, 0.0 ], [ -117.900293317794606, 34.129789044338992, 0.0 ], [ -117.900130041281898, 34.129788209747119, 0.0 ] ], [ [ -117.907527526273, 34.11417334467604, 0.0 ], [ -117.907520062194095, 34.114818549959118, 0.0 ], [ -117.907517335281497, 34.115136576137907, 0.0 ], [ -117.907517931793706, 34.115345440597878, 0.0 ], [ -117.9075708509408, 34.115357796920527, 0.0 ], [ -117.907568038812201, 34.115912212333022, 0.0 ], [ -117.907556449433699, 34.117060583390547, 0.0 ], [ -117.907589768896798, 34.117088193380333, 0.0 ], [ -117.907549120856203, 34.121202934021497, 0.0 ], [ -117.907551251256706, 34.121901108856363, 0.0 ], [ -117.907536338453497, 34.123766402272608, 0.0 ], [ -117.907520232626098, 34.126656077440117, 0.0 ], [ -117.907513500560697, 34.12799252024918, 0.0 ], [ -117.907494497388797, 34.128008370428553, 0.0 ], [ -117.907483845386494, 34.129827306330967, 0.0 ] ], [ [ -117.900130041281898, 34.129788209747119, 0.0 ], [ -117.899743163182805, 34.129786232210343, 0.0 ], [ -117.899075921762602, 34.129782312273477, 0.0 ] ], [ [ -117.880719392590294, 34.128615977250448, 0.0 ], [ -117.879048538447407, 34.128606246010193, 0.0 ], [ -117.877304677856699, 34.128618517116813, 0.0 ], [ -117.873552701803703, 34.128625419614252, 0.0 ], [ -117.873454447735099, 34.128617324092559, 0.0 ], [ -117.871992311299607, 34.128621073597387, 0.0 ], [ -117.867671177462995, 34.128626186558442, 0.0 ], [ -117.863873355192396, 34.128623118781732, 0.0 ] ], [ [ -117.863873355192396, 34.128623118781732, 0.0 ], [ -117.863851369459795, 34.128623118781853, 0.0 ] ], [ [ -117.881005188927503, 34.128615500801367, 0.0 ], [ -117.880719392590294, 34.128615977250448, 0.0 ] ], [ [ -117.907530148178196, 34.113946704600451, 0.0 ], [ -117.907527526273, 34.11417334467604, 0.0 ] ], [ [ -117.907724621995598, 34.090780368049408, 0.0 ], [ -117.907722450236705, 34.091343923071022, 0.0 ], [ -117.907683250868502, 34.095626198403473, 0.0 ], [ -117.907619083206995, 34.095683122703377, 0.0 ], [ -117.907612947653703, 34.096055175837648, 0.0 ], [ -117.907588831520599, 34.099159169290317, 0.0 ], [ -117.907585678527994, 34.099928243852027, 0.0 ], [ -117.907546990455799, 34.099981333431288, 0.0 ], [ -117.907546820023697, 34.100126371093687, 0.0 ], [ -117.907583122047299, 34.100155003675752, 0.0 ], [ -117.907579969054694, 34.10095117693119, 0.0 ], [ -117.907538383637998, 34.105383773319133, 0.0 ], [ -117.9075365941016, 34.105573464175073, 0.0 ], [ -117.907657771279005, 34.10559323429122, 0.0 ], [ -117.907657430415, 34.105908022261467, 0.0 ], [ -117.907535401077297, 34.106012667531402, 0.0 ], [ -117.9075222778106, 34.107047701285062, 0.0 ], [ -117.907530969844402, 34.109974104556407, 0.0 ], [ -117.907532418516695, 34.113750452390491, 0.0 ], [ -117.907530148178196, 34.113946704600451, 0.0 ] ], [ [ -117.907526964691598, 34.08914892888145, 0.0 ], [ -117.907526964691598, 34.089154638354621, 0.0 ], [ -117.907723728476995, 34.089154723570623, 0.0 ], [ -117.907730886622502, 34.089154723570623, 0.0 ], [ -117.907724621995598, 34.090780368049408, 0.0 ] ], [ [ -117.916995279531307, 34.0865759966497, 0.0 ], [ -117.916685300569398, 34.086574297332092, 0.0 ], [ -117.916465846192906, 34.086600877987372, 0.0 ], [ -117.916372936066594, 34.086612131406277, 0.0 ], [ -117.913808647793601, 34.086593475111179, 0.0 ], [ -117.911389632705394, 34.086575875740699, 0.0 ], [ -117.910165331362705, 34.086566968424208, 0.0 ], [ -117.908046795563806, 34.086551555169258, 0.0 ], [ -117.907719377538101, 34.086549173062949, 0.0 ], [ -117.907730630974498, 34.088777983555467, 0.0 ], [ -117.907731057054505, 34.089104957416261, 0.0 ], [ -117.907722194588601, 34.089104957416261, 0.0 ], [ -117.907673791890403, 34.089104872200217, 0.0 ], [ -117.907551336472693, 34.089148843665463, 0.0 ], [ -117.907526964691598, 34.08914892888145, 0.0 ] ], [ [ -117.925379890877494, 34.086612218460012, 0.0 ], [ -117.920214266303304, 34.086583245013969, 0.0 ], [ -117.917136093304094, 34.086576768596608, 0.0 ] ], [ [ -117.927210866100793, 34.07154685309699, 0.0 ], [ -117.927142754640201, 34.071978923863078, 0.0 ], [ -117.9270522552291, 34.073161040463681, 0.0 ], [ -117.926992092720596, 34.073767437647192, 0.0 ], [ -117.926332946822001, 34.074473281923623, 0.0 ], [ -117.926245429971502, 34.07528973659133, 0.0 ], [ -117.926178024101404, 34.076231970101382, 0.0 ], [ -117.925841506046595, 34.079896684951997, 0.0 ], [ -117.925646361365594, 34.081923718370163, 0.0 ], [ -117.9254650216794, 34.083901667362163, 0.0 ], [ -117.925385941214799, 34.085128351940071, 0.0 ], [ -117.925379890877494, 34.086612218460012, 0.0 ] ], [ [ -117.917136093304094, 34.086576768596608, 0.0 ], [ -117.916995279531307, 34.0865759966497, 0.0 ] ], [ [ -117.927289426546096, 34.071183107243712, 0.0 ], [ -117.9272645283298, 34.071206440660667, 0.0 ], [ -117.927210866100793, 34.07154685309699, 0.0 ] ], [ [ -117.927790688404897, 34.070713346691932, 0.0 ], [ -117.927790652024399, 34.070713380780987, 0.0 ], [ -117.927289426546096, 34.071183107243712, 0.0 ] ], [ [ -117.933415524898905, 34.065427424269281, 0.0 ], [ -117.933404874598693, 34.065437325321099, 0.0 ], [ -117.931382850950698, 34.067354816639472, 0.0 ], [ -117.930884907101998, 34.067827045936177, 0.0 ], [ -117.930639167855404, 34.068060094847027, 0.0 ], [ -117.930672487318404, 34.0681572411075, 0.0 ], [ -117.9304523743441, 34.068345142427042, 0.0 ], [ -117.930266432993093, 34.06836508297522, 0.0 ], [ -117.930133581221099, 34.0684774829029, 0.0 ], [ -117.930022970829796, 34.068614851123662, 0.0 ], [ -117.929825525316303, 34.068806672380063, 0.0 ], [ -117.927790688404897, 34.070713346691932, 0.0 ] ], [ [ -117.936183318913507, 34.062823348864292, 0.0 ], [ -117.935578339464598, 34.063387819809243, 0.0 ], [ -117.934069468080693, 34.064819485972457, 0.0 ], [ -117.933415524898905, 34.065427424269281, 0.0 ] ], [ [ -117.941611219682102, 34.057699678242997, 0.0 ], [ -117.938198766021003, 34.060942853030483, 0.0 ], [ -117.936183318913507, 34.062823348864292, 0.0 ] ], [ [ -117.945343658425003, 34.054203835898242, 0.0 ], [ -117.944261076522594, 34.055200060313602, 0.0 ], [ -117.942333599374507, 34.057013088511077, 0.0 ], [ -117.941611219682102, 34.057699678242997, 0.0 ] ], [ [ -117.9492630845359, 34.050505040453707, 0.0 ], [ -117.949255010293896, 34.050512665747462, 0.0 ], [ -117.947707256103996, 34.051973256431417, 0.0 ], [ -117.945584275658703, 34.053982169236527, 0.0 ], [ -117.945343658425003, 34.054203835898242, 0.0 ] ], [ [ -117.963170995688102, 34.037379373517922, 0.0 ], [ -117.960961641562903, 34.03946515091868, 0.0 ], [ -117.958647007655202, 34.041647267621371, 0.0 ], [ -117.957363081506699, 34.042871859054713, 0.0 ], [ -117.955282277444994, 34.044813314896238, 0.0 ], [ -117.954962863102395, 34.045118764479987, 0.0 ], [ -117.953114977797398, 34.046887067386997, 0.0 ], [ -117.949555951237102, 34.050228457878418, 0.0 ], [ -117.9492630845359, 34.050505040453707, 0.0 ] ], [ [ -117.963294810982603, 34.037262483635793, 0.0 ], [ -117.963170995688102, 34.037379373517922, 0.0 ] ], [ [ -117.967310505433204, 34.033487584238557, 0.0 ], [ -117.963311901283504, 34.037246349253877, 0.0 ], [ -117.963294810982603, 34.037262483635793, 0.0 ] ], [ [ -117.970678018440495, 34.027000611142547, 0.0 ], [ -117.970406586073395, 34.027273919134871, 0.0 ], [ -117.967930975536902, 34.029777395309317, 0.0 ], [ -117.967627180432999, 34.030083491245627, 0.0 ], [ -117.968587118920098, 34.030776602039751, 0.0 ], [ -117.968589562257094, 34.030798908326688, 0.0 ], [ -117.968789668244796, 34.030941616547288, 0.0 ], [ -117.968809382249603, 34.030941616546052, 0.0 ], [ -117.969509090972707, 34.03142087143091, 0.0 ], [ -117.967310505433204, 34.033487584238557, 0.0 ] ], [ [ -117.972803643282901, 34.024472831727053, 0.0 ], [ -117.973036352386401, 34.024626257458209, 0.0 ], [ -117.971527688005196, 34.026145062545467, 0.0 ], [ -117.970678018440495, 34.027000611142547, 0.0 ] ], [ [ -117.972869443835293, 34.024379438855213, 0.0 ], [ -117.972789481582396, 34.024463494863923, 0.0 ], [ -117.972803643282901, 34.024472831727053, 0.0 ] ], [ [ -117.972894321986104, 34.024353287040022, 0.0 ], [ -117.972869443835293, 34.024379438855213, 0.0 ] ], [ [ -117.972918984584993, 34.024327361812013, 0.0 ], [ -117.972894321986104, 34.024353287040022, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7055", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.239312292079603, 33.945648868101493, 0.0 ], [ -118.239312462680701, 33.945723127362989, 0.0 ], [ -118.239305868794602, 33.945723075631648, 0.0 ] ], [ [ -118.239305868794602, 33.945723075631648, 0.0 ], [ -118.239157506342593, 33.945721911633271, 0.0 ] ], [ [ -118.239157506342593, 33.945721911633271, 0.0 ], [ -118.238975233495196, 33.94572048145114, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7054", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1950755583118, 33.961950224966138, 0.0 ], [ -118.195132842211606, 33.961956059353589, 0.0 ] ], [ [ -118.194960990537496, 33.961938556150137, 0.0 ], [ -118.1950755583118, 33.961950224966138, 0.0 ] ], [ [ -118.194899152381893, 33.961884686025378, 0.0 ], [ -118.194899067165807, 33.961884686025378, 0.0 ], [ -118.194892249884404, 33.961931554835182, 0.0 ], [ -118.194960990537496, 33.961938556150137, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7053", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.052544019603999, 33.956749240409827, 0.0 ], [ -118.052661664768095, 33.956770964956029, 0.0 ], [ -118.052566331509297, 33.956870916395147, 0.0 ] ], [ [ -118.052505363408002, 33.956727746947458, 0.0 ], [ -118.052502378885407, 33.956741550967422, 0.0 ], [ -118.052544019603999, 33.956749240409827, 0.0 ] ], [ [ -118.052399222898103, 33.95674385931234, 0.0 ], [ -118.052408568510202, 33.956707537451258, 0.0 ], [ -118.052489509742102, 33.956722283829578, 0.0 ], [ -118.052489003980995, 33.956725013144073, 0.0 ], [ -118.052505363408002, 33.956727746947458, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7051", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157574195669497, 33.958476471388707, 0.0 ], [ -118.157581012950899, 33.95847050626751, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7050", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157588511960498, 33.958487805119113, 0.0 ], [ -118.157604447355894, 33.958473914908161, 0.0 ], [ -118.157592346681298, 33.958464285498209, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7049", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.157727531256, 33.958617616522488, 0.0 ], [ -118.157720341140305, 33.958611879641118, 0.0 ], [ -118.157719829844098, 33.958592450389148, 0.0 ], [ -118.157588511960498, 33.958487805119113, 0.0 ] ], [ [ -118.157664927612601, 33.95851074405509, 0.0 ], [ -118.157750721944694, 33.958579112299759, 0.0 ] ], [ [ -118.157577938111004, 33.958441423400799, 0.0 ], [ -118.157664927612601, 33.95851074405509, 0.0 ] ], [ [ -118.157588511960498, 33.958487805119113, 0.0 ], [ -118.157586466776095, 33.958489594655461, 0.0 ], [ -118.157579308630602, 33.958483885182289, 0.0 ], [ -118.157572150484995, 33.958478260925069, 0.0 ], [ -118.157574195669497, 33.958476471388707, 0.0 ] ], [ [ -118.157574195669497, 33.958476471388707, 0.0 ], [ -118.157549227376194, 33.958456530840579, 0.0 ], [ -118.157571980053007, 33.958436675508317, 0.0 ], [ -118.157577938111004, 33.958441423400799, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7048", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.063657025808993, 33.918092600497133, 0.0 ], [ -118.063657027896596, 33.918089894506821, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7047", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.166645750834107, 33.889097475761247, 0.0 ], [ -118.166643225160399, 33.888915828986107, 0.0 ], [ -118.166647912041498, 33.888915402905937, 0.0 ], [ -118.166647656393295, 33.888837174601512, 0.0 ], [ -118.166642458216302, 33.888836748521463, 0.0 ], [ -118.166640327815898, 33.888622174588363, 0.0 ], [ -118.166635385286796, 33.887823530068403, 0.0 ], [ -118.166638426034993, 33.887146651970752, 0.0 ], [ -118.166633169670305, 33.887146659238091, 0.0 ], [ -118.166632147078104, 33.88683187126788, 0.0 ], [ -118.166608874634903, 33.885467904625607, 0.0 ], [ -118.166437549464604, 33.885468141342088, 0.0 ], [ -118.166045272764805, 33.885468682045058, 0.0 ], [ -118.165829498420905, 33.885468979462232, 0.0 ] ], [ [ -118.165735631644196, 33.885485595609133, 0.0 ], [ -118.165735647941503, 33.885493839078798, 0.0 ], [ -118.165608801380301, 33.885494013444358, 0.0 ], [ -118.165608951526096, 33.885485769665621, 0.0 ] ], [ [ -118.165608951526096, 33.885485769665621, 0.0 ], [ -118.165513238344104, 33.885485901226858, 0.0 ] ], [ [ -118.165829498420905, 33.885468979462232, 0.0 ], [ -118.165811377492105, 33.885469004439607, 0.0 ], [ -118.165811410101696, 33.885485491378901, 0.0 ], [ -118.165735631644196, 33.885485595609133, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7046", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.177393049524994, 33.889066480749847, 0.0 ], [ -118.177393090228605, 33.889085715515399, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7045", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.182312968904895, 33.889059139163002, 0.0 ], [ -118.182308742276504, 33.889063355479813, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7044", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.184449708616697, 33.888798401313373, 0.0 ], [ -118.184653971411606, 33.888798060449311, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7043", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.165300135481203, 33.889632230614893, 0.0 ], [ -118.165301669390303, 33.890084822319878, 0.0 ], [ -118.165341635702703, 33.896289059720438, 0.0 ], [ -118.163574539949295, 33.896296843647619, 0.0 ], [ -118.163574636470699, 33.896346304519298, 0.0 ], [ -118.162879361383105, 33.896347246030331, 0.0 ], [ -118.162879105086702, 33.896215350371492, 0.0 ] ], [ [ -118.162879105086702, 33.896215350371492, 0.0 ], [ -118.162878987617802, 33.896154898195057, 0.0 ] ], [ [ -118.162878987617802, 33.896154898195057, 0.0 ], [ -118.162878923544, 33.896121924280791, 0.0 ], [ -118.162724714832507, 33.896122132560073, 0.0 ] ], [ [ -118.193392788833194, 33.890644861989642, 0.0 ], [ -118.193359980666202, 33.890644776773613, 0.0 ], [ -118.193348987799993, 33.890638215140171, 0.0 ], [ -118.192760485980301, 33.890647674118213, 0.0 ], [ -118.192759804252006, 33.890577115255383, 0.0 ] ], [ [ -118.193392635356602, 33.89056850742633, 0.0 ], [ -118.193392788833194, 33.890644861989642, 0.0 ] ], [ [ -118.192759804252006, 33.890577115255383, 0.0 ], [ -118.191853361469398, 33.890585381209142, 0.0 ], [ -118.190811084354294, 33.890600805308303, 0.0 ], [ -118.190748365365096, 33.889741060903603, 0.0 ], [ -118.190746264148402, 33.889715670845177, 0.0 ] ], [ [ -118.193376109357104, 33.890560101915923, 0.0 ], [ -118.193392618401106, 33.890560072051812, 0.0 ], [ -118.193392635356602, 33.89056850742633, 0.0 ] ], [ [ -118.190746264148402, 33.889715670845177, 0.0 ], [ -118.190664683235497, 33.888729887634987, 0.0 ], [ -118.190486411326006, 33.888731421523289, 0.0 ], [ -118.190486496541993, 33.888715571343923, 0.0 ], [ -118.190481980093097, 33.888715741775947, 0.0 ], [ -118.190472435899096, 33.888715826991948, 0.0 ], [ -118.190419772400006, 33.888716423504107, 0.0 ], [ -118.189865612635501, 33.888802662114237, 0.0 ], [ -118.189175362890396, 33.888922731483532, 0.0 ], [ -118.188465598677098, 33.888988177385301, 0.0 ], [ -118.186788291796404, 33.889050299862348, 0.0 ], [ -118.186787865716298, 33.889097083456193, 0.0 ], [ -118.1855699583882, 33.889116086628221, 0.0 ], [ -118.185569787956197, 33.889049958998292, 0.0 ], [ -118.184801139474501, 33.889051237238533, 0.0 ], [ -118.184450305128806, 33.889051663318611, 0.0 ], [ -118.184449708616697, 33.888798401313373, 0.0 ] ], [ [ -118.166645750834107, 33.889097475761247, 0.0 ], [ -118.1663151731818, 33.889097934466648, 0.0 ], [ -118.166311138338699, 33.889341142131407, 0.0 ], [ -118.165389697536895, 33.889343783828068, 0.0 ], [ -118.165389697536895, 33.889363468728178, 0.0 ], [ -118.165299538989998, 33.889363213080173, 0.0 ], [ -118.165300135481203, 33.889632230614893, 0.0 ] ], [ [ -118.170739018407104, 33.889105710048909, 0.0 ], [ -118.168339936473899, 33.889119854001763, 0.0 ], [ -118.168339908883794, 33.889106114881322, 0.0 ], [ -118.168171698657105, 33.889106349702033, 0.0 ] ], [ [ -118.168171698657105, 33.889106349702033, 0.0 ], [ -118.168171676606903, 33.889095358405733, 0.0 ], [ -118.166645750834107, 33.889097475761247, 0.0 ] ], [ [ -118.176117812454805, 33.889073998997958, 0.0 ], [ -118.170739018407104, 33.889105710048909, 0.0 ] ], [ [ -118.177393049524994, 33.889066480749847, 0.0 ], [ -118.176117812454805, 33.889073998997958, 0.0 ] ], [ [ -118.182312968904895, 33.889059139163002, 0.0 ], [ -118.177393049524994, 33.889066480749847, 0.0 ] ], [ [ -118.182551004986095, 33.888825973139987, 0.0 ], [ -118.182312968904895, 33.889059139163002, 0.0 ] ], [ [ -118.182758011812595, 33.888824120482759, 0.0 ], [ -118.182553140921797, 33.888823880902649, 0.0 ], [ -118.182551004986095, 33.888825973139987, 0.0 ] ], [ [ -118.184449708616697, 33.888798401313373, 0.0 ], [ -118.183136018484504, 33.888804962946722, 0.0 ], [ -118.183136103700505, 33.888824562630838, 0.0 ], [ -118.182758011812595, 33.888824120482759, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7042", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.268016285292404, 33.867040110242172, 0.0 ], [ -118.2678746317426, 33.86704042526398, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7041", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.268016285292404, 33.867040110242172, 0.0 ], [ -118.268016285292404, 33.867043944962987, 0.0 ], [ -118.267874643993196, 33.86704425992945, 0.0 ], [ -118.2678746317426, 33.86704042526398, 0.0 ] ], [ [ -118.2678746317426, 33.86704042526398, 0.0 ], [ -118.267873992876901, 33.86684044723021, 0.0 ], [ -118.267883874803999, 33.866840425261273, 0.0 ], [ -118.267883839689404, 33.866829434013191, 0.0 ] ], [ [ -118.268015942984107, 33.866950181132943, 0.0 ], [ -118.268016285292404, 33.867040110242172, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7040", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.280582801152505, 33.842013030521827, 0.0 ], [ -118.280582659428603, 33.84200714232621, 0.0 ], [ -118.280428204604405, 33.84200740977991, 0.0 ], [ -118.280428162889606, 33.842013390615378, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7039", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.285368572686295, 33.842103413758998, 0.0 ], [ -118.285647990695793, 33.841029965956949, 0.0 ], [ -118.285760901919602, 33.840601670250933, 0.0 ], [ -118.285850549170405, 33.840247938560509, 0.0 ], [ -118.2858606898765, 33.840196382869678, 0.0 ], [ -118.285889322458601, 33.840034642867693, 0.0 ], [ -118.285909348222802, 33.839884321812157, 0.0 ], [ -118.285917699392499, 33.839799872738389, 0.0 ], [ -118.285922471489599, 33.839667873126629, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7038", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.117578683591205, 33.898319144845161, 0.0 ], [ -118.117601750146804, 33.898319122343239, 0.0 ], [ -118.117611333973699, 33.898343620960659, 0.0 ], [ -118.117677238437395, 33.898343556639873, 0.0 ], [ -118.117677215290598, 33.898327069668959, 0.0 ], [ -118.117706872293297, 33.898327040712758, 0.0 ] ], [ [ -118.117706872293297, 33.898327040712758, 0.0 ], [ -118.117706887728502, 33.898338032026743, 0.0 ], [ -118.117726659066193, 33.898338012718547, 0.0 ], [ -118.117726647487999, 33.898329769233086, 0.0 ] ], [ [ -118.117561515071301, 33.898266942888966, 0.0 ], [ -118.117578610354599, 33.898266936104072, 0.0 ], [ -118.117578683591205, 33.898319144845161, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7037", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.103684835249197, 33.917415135908861, 0.0 ], [ -118.103645671666598, 33.91741860166011, 0.0 ], [ -118.103646823040194, 33.917424012851917, 0.0 ] ], [ [ -118.103662596700502, 33.917309868266862, 0.0 ], [ -118.103675660848097, 33.917308442700268, 0.0 ], [ -118.103698112668894, 33.917413960933793, 0.0 ], [ -118.103684835249197, 33.917415135908861, 0.0 ] ], [ [ -118.103600153929705, 33.917152625400853, 0.0 ], [ -118.103615242691404, 33.917299068938227, 0.0 ], [ -118.103623338213097, 33.917314152173446, 0.0 ], [ -118.103662596700502, 33.917309868266862, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7036", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.114510281014404, 33.917192208051809, 0.0 ], [ -118.114510281014404, 33.917191100243528, 0.0 ], [ -118.114510195798402, 33.917163064173621, 0.0 ], [ -118.114477217199394, 33.91713579504794, 0.0 ], [ -118.114476961551404, 33.916950364992992, 0.0 ] ], [ [ -118.114476961551404, 33.916950364992992, 0.0 ], [ -118.114414753858298, 33.91694653027217, 0.0 ], [ -118.114155441515805, 33.916850150955803, 0.0 ], [ -118.113623011835799, 33.916845549290869, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7035", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.117002217747299, 33.858175704556608, 0.0 ], [ -118.116982455870698, 33.85817572374598, 0.0 ], [ -118.116982432871595, 33.858159236841622, 0.0 ], [ -118.116988819374598, 33.858159230639899, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7034", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.116988819374598, 33.858159230639899, 0.0 ], [ -118.116945103995107, 33.85810101596806, 0.0 ], [ -118.116944622927704, 33.857756050577997, 0.0 ], [ -118.1169968384973, 33.857755999842951, 0.0 ] ], [ [ -118.117001993962106, 33.858159217846662, 0.0 ], [ -118.116988819374598, 33.858159230639899, 0.0 ] ], [ [ -118.117188697735301, 33.857761309065729, 0.0 ], [ -118.117188739974395, 33.857791535055682, 0.0 ] ], [ [ -118.1169968384973, 33.857755999842951, 0.0 ], [ -118.117188690055499, 33.857755813431183, 0.0 ], [ -118.117188697735301, 33.857761309065729, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7033", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.116699711167598, 33.901861555840703, 0.0 ], [ -118.116707930409305, 33.901861547927233, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7032", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.116707930409305, 33.901861547927233, 0.0 ], [ -118.116716168813099, 33.90186153995073, 0.0 ], [ -118.116716254908198, 33.901923366113159, 0.0 ], [ -118.116909033699301, 33.901923179304433, 0.0 ], [ -118.116930239758304, 33.9019048257462, 0.0 ], [ -118.1169408066432, 33.901895680249879, 0.0 ], [ -118.117243980025407, 33.901895385749377, 0.0 ] ], [ [ -118.117243980025407, 33.901895385749377, 0.0 ], [ -118.117263752202405, 33.901895366529509, 0.0 ], [ -118.117263767579999, 33.901906357847167, 0.0 ], [ -118.117243995400401, 33.90190637707942, 0.0 ] ], [ [ -118.116699690347602, 33.901842321120327, 0.0 ], [ -118.116707903626093, 33.901842313121278, 0.0 ], [ -118.116707930409305, 33.901861547927233, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7031", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.116611180658893, 33.916939028279181, 0.0 ], [ -118.116601243942497, 33.916939036070268, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7030", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.117023201642198, 33.916968057219307, 0.0 ], [ -118.117023352406406, 33.917076019842362, 0.0 ] ], [ [ -118.117016572474299, 33.916941382412588, 0.0 ], [ -118.117023164383298, 33.916941376014627, 0.0 ], [ -118.117023201642198, 33.916968057219307, 0.0 ] ], [ [ -118.116611275454602, 33.916950017688762, 0.0 ], [ -118.116921005128702, 33.916952466475337, 0.0 ], [ -118.1169209897933, 33.916941475142544, 0.0 ], [ -118.116947357429396, 33.916941449569393, 0.0 ] ], [ [ -118.116601243942497, 33.916939036070268, 0.0 ], [ -118.116601311661995, 33.916949938912943, 0.0 ], [ -118.116611275454602, 33.916950017688762, 0.0 ] ], [ [ -118.116947357429396, 33.916941449569393, 0.0 ], [ -118.117016572474299, 33.916941382412588, 0.0 ] ], [ [ -118.116611038021205, 33.916922492653804, 0.0 ], [ -118.116601141230007, 33.916922499355067, 0.0 ], [ -118.116601243942497, 33.916939036070268, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7029", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.117494399112402, 33.893730277943448, 0.0 ], [ -118.117294208165106, 33.893730423864973, 0.0 ], [ -118.117050516335993, 33.894261682274603, 0.0 ], [ -118.116817641480296, 33.89490428151781, 0.0 ], [ -118.116708096832397, 33.895379217262537, 0.0 ], [ -118.116685217523894, 33.895594043299738, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7028", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.105801488304195, 33.887496160052663, 0.0 ], [ -118.105801018252606, 33.887482411965472, 0.0 ], [ -118.105799569008795, 33.887440019804693, 0.0 ], [ -118.105796790345394, 33.887358740488253, 0.0 ], [ -118.105785243430603, 33.887020979049588, 0.0 ], [ -118.105775359094906, 33.887020987724704, 0.0 ], [ -118.105775237158099, 33.887015493010942, 0.0 ] ], [ [ -118.105775237158099, 33.887015493010942, 0.0 ], [ -118.105788416271295, 33.887015481443953, 0.0 ], [ -118.105787623665194, 33.886979765810572, 0.0 ] ], [ [ -118.105787623665194, 33.886979765810572, 0.0 ], [ -118.105787513435203, 33.886974798143818, 0.0 ], [ -118.105790808212006, 33.88697479525193, 0.0 ], [ -118.105791417901202, 33.887002268820467, 0.0 ], [ -118.105878779599195, 33.887002192106387, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7027", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.116307486832298, 33.847135182344758, 0.0 ], [ -118.116290954924807, 33.847134671048629, 0.0 ], [ -118.116293170541198, 33.847151714252277, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7026", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.090723370334302, 33.93603563460097, 0.0 ], [ -118.090631488674006, 33.936035467901227, 0.0 ] ], [ [ -118.090723330929507, 33.936004034446043, 0.0 ], [ -118.090723370334302, 33.93603563460097, 0.0 ] ], [ [ -118.090631488674006, 33.936035467901227, 0.0 ], [ -118.090624895425606, 33.936035455939162, 0.0 ] ], [ [ -118.090631838881194, 33.936001106257017, 0.0 ], [ -118.090723333140502, 33.936001286620233, 0.0 ], [ -118.090723330929507, 33.936004034446043, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7025", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1147657817897, 33.84691311466559, 0.0 ], [ -118.114770871597202, 33.846913109402081, 0.0 ], [ -118.114770956813203, 33.846918563227192, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7024", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.117431885476293, 33.889477062173398, 0.0 ], [ -118.117451990139301, 33.889477061852332, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7023", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1175237750561, 33.889538076348913, 0.0 ], [ -118.117535620082506, 33.889547705758858, 0.0 ], [ -118.117552237205999, 33.889534326844121, 0.0 ], [ -118.117545334708495, 33.889528532154827, 0.0 ] ], [ [ -118.117451990139301, 33.889477061852332, 0.0 ], [ -118.117452534465002, 33.889534838140158, 0.0 ], [ -118.117519002959, 33.889534241628077, 0.0 ], [ -118.1175237750561, 33.889538076348913, 0.0 ] ], [ [ -118.117431799358798, 33.889471436126051, 0.0 ], [ -118.117451937952893, 33.889471522638893, 0.0 ], [ -118.117451990139301, 33.889477061852332, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7022", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.117339367593303, 33.87495045753753, 0.0 ], [ -118.117358370765203, 33.874950627969518, 0.0 ], [ -118.117359308141403, 33.874925063164241, 0.0 ], [ -118.117435832125494, 33.874924466652047, 0.0 ], [ -118.117435832125494, 33.874920717147248, 0.0 ], [ -118.117451941317896, 33.874920741779043, 0.0 ] ], [ [ -118.117451941317896, 33.874920741779043, 0.0 ], [ -118.117491563401202, 33.874920802363292, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7021", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.090644001307993, 33.946430931607892, 0.0 ], [ -118.090622952951506, 33.94655262008142, 0.0 ], [ -118.090587077007996, 33.946715808755798, 0.0 ], [ -118.090542594246699, 33.946867578483698, 0.0 ], [ -118.090519330273807, 33.946946658948399, 0.0 ], [ -118.090472461463904, 33.947076357727632, 0.0 ], [ -118.090500923613902, 33.947150325231107, 0.0 ], [ -118.090427808270505, 33.947307293136149, 0.0 ], [ -118.090323674296599, 33.947526980030297, 0.0 ], [ -118.090238713926695, 33.947682073182953, 0.0 ], [ -118.090141567666294, 33.947844154049072, 0.0 ], [ -118.090057885536694, 33.947983056158293, 0.0 ], [ -118.089539857363803, 33.948838454546127, 0.0 ], [ -118.089536619155098, 33.948837005873791, 0.0 ], [ -118.089533631947603, 33.948841872833142, 0.0 ] ], [ [ -118.090645753170193, 33.945749398724431, 0.0 ], [ -118.090645535196302, 33.945837402043068, 0.0 ], [ -118.090644001307993, 33.946430931607892, 0.0 ] ], [ [ -118.090436684239194, 33.944576531157438, 0.0 ], [ -118.090644455779994, 33.944576531157438, 0.0 ], [ -118.090646813436607, 33.945321333838578, 0.0 ], [ -118.090645753170193, 33.945749398724431, 0.0 ] ], [ [ -118.090437360513704, 33.944462669232827, 0.0 ], [ -118.090423703476702, 33.94446267859167, 0.0 ], [ -118.090423268924994, 33.944576531157438, 0.0 ], [ -118.090436684239194, 33.944576531157438, 0.0 ] ], [ [ -118.090631488674006, 33.936035467901227, 0.0 ], [ -118.0906197147429, 33.937190703136871, 0.0 ], [ -118.090633519737807, 33.940715834150119, 0.0 ], [ -118.090645194332197, 33.944462526809957, 0.0 ], [ -118.090437360513704, 33.944462669232827, 0.0 ] ], [ [ -118.090631838881194, 33.936001106257017, 0.0 ], [ -118.090631488674006, 33.936035467901227, 0.0 ] ], [ [ -118.090631791291003, 33.935928509628788, 0.0 ], [ -118.090631985849399, 33.935986686019739, 0.0 ], [ -118.090631838881194, 33.936001106257017, 0.0 ] ], [ [ -118.090618854070001, 33.932060052245568, 0.0 ], [ -118.090631791291003, 33.935928509628788, 0.0 ] ], [ [ -118.103600153929705, 33.917152625400853, 0.0 ], [ -118.103271310843098, 33.917153349547633, 0.0 ], [ -118.102523795934005, 33.917138095880418, 0.0 ], [ -118.102450680590593, 33.917212574680072, 0.0 ], [ -118.099186566240206, 33.917216409400893, 0.0 ], [ -118.099186821888296, 33.917127699526169, 0.0 ], [ -118.094862279411004, 33.917132386407182, 0.0 ], [ -118.094861768114797, 33.917301028906579, 0.0 ], [ -118.094389037445595, 33.917316705559912, 0.0 ], [ -118.0935183375924, 33.917439590151773, 0.0 ], [ -118.092771845275294, 33.917369457369077, 0.0 ], [ -118.091711417148403, 33.917309806156581, 0.0 ], [ -118.091596290308203, 33.917458763755803, 0.0 ], [ -118.091579417536593, 33.91745015693806, 0.0 ], [ -118.090587588304103, 33.918746377786547, 0.0 ], [ -118.090589036976397, 33.919879665608903, 0.0 ], [ -118.090598922034403, 33.922660179057551, 0.0 ], [ -118.090604801939705, 33.924432842662263, 0.0 ], [ -118.090611534005106, 33.928334031962663, 0.0 ], [ -118.090617499126395, 33.931654900180867, 0.0 ], [ -118.090618854070001, 33.932060052245568, 0.0 ] ], [ [ -118.114510281014404, 33.917192208051809, 0.0 ], [ -118.112139315747797, 33.917226379674943, 0.0 ], [ -118.112013451689293, 33.917247939327567, 0.0 ], [ -118.110684593105901, 33.917255438337058, 0.0 ], [ -118.110640110344605, 33.9172444454708, 0.0 ], [ -118.110202355660505, 33.917240099453863, 0.0 ], [ -118.107915157739598, 33.917214619864453, 0.0 ], [ -118.107898711048094, 33.917209336471373, 0.0 ], [ -118.106313863546902, 33.917208484311232, 0.0 ], [ -118.103727949815294, 33.917208673161248, 0.0 ], [ -118.103619588708398, 33.91715258260345, 0.0 ], [ -118.103600153929705, 33.917152625400853, 0.0 ] ], [ [ -118.116441786140101, 33.91718821680152, 0.0 ], [ -118.114510281014404, 33.917192208051809, 0.0 ] ], [ [ -118.116563807467699, 33.91718796480162, 0.0 ], [ -118.116441786140101, 33.91718821680152, 0.0 ] ], [ [ -118.116611431234205, 33.916968076824631, 0.0 ], [ -118.116613327120504, 33.917187862034901, 0.0 ], [ -118.116563807467699, 33.91718796480162, 0.0 ] ], [ [ -118.116611275454602, 33.916950017688762, 0.0 ], [ -118.116611431234205, 33.916968076824631, 0.0 ] ], [ [ -118.116611180658893, 33.916939028279181, 0.0 ], [ -118.116611275454602, 33.916950017688762, 0.0 ] ], [ [ -118.116611038021205, 33.916922492653804, 0.0 ], [ -118.116611180658893, 33.916939028279181, 0.0 ] ], [ [ -118.116699711167598, 33.901861555840703, 0.0 ], [ -118.116700077026806, 33.902199557507267, 0.0 ], [ -118.116712177701302, 33.903295776361723, 0.0 ], [ -118.1166987135705, 33.904748198171113, 0.0 ], [ -118.116705616068003, 33.908360164306607, 0.0 ], [ -118.1167177167425, 33.909602358199812, 0.0 ], [ -118.116605061166794, 33.909602528631829, 0.0 ], [ -118.116612048880299, 33.912327736884933, 0.0 ], [ -118.116602760334303, 33.914821498433312, 0.0 ], [ -118.116602760334303, 33.915962881777233, 0.0 ], [ -118.116611038021205, 33.916922492653804, 0.0 ] ], [ [ -118.116699690347602, 33.901842321120327, 0.0 ], [ -118.116699711167598, 33.901861555840703, 0.0 ] ], [ [ -118.117562110249196, 33.898319153208789, 0.0 ], [ -118.117562207480105, 33.898327682517127, 0.0 ], [ -118.116690788480895, 33.8983334772063, 0.0 ], [ -118.116697009250203, 33.89941384588154, 0.0 ], [ -118.116699480514697, 33.901648465519393, 0.0 ], [ -118.116699690347602, 33.901842321120327, 0.0 ] ], [ [ -118.117561515071301, 33.898266942888966, 0.0 ], [ -118.117562110249196, 33.898319153208789, 0.0 ] ], [ [ -118.117494399112402, 33.893730277943448, 0.0 ], [ -118.117497358090503, 33.893931729016707, 0.0 ], [ -118.117508080731298, 33.894514828580029, 0.0 ], [ -118.117514401294002, 33.894842858680363, 0.0 ], [ -118.1175361313786, 33.896040228948088, 0.0 ], [ -118.117561515071301, 33.898266942888966, 0.0 ] ], [ [ -118.117431885476293, 33.889477062173398, 0.0 ], [ -118.117435661693506, 33.889723762051879, 0.0 ], [ -118.117457306562002, 33.89120890681221, 0.0 ], [ -118.117434553885204, 33.891227313472051, 0.0 ], [ -118.117453386625201, 33.892485527976632, 0.0 ], [ -118.117476394950103, 33.892504531148667, 0.0 ], [ -118.117494399112402, 33.893730277943448, 0.0 ] ], [ [ -118.117431799358798, 33.889471436126051, 0.0 ], [ -118.117431885476293, 33.889477062173398, 0.0 ] ], [ [ -118.1174282683955, 33.88924075866128, 0.0 ], [ -118.117431799358798, 33.889471436126051, 0.0 ] ], [ [ -118.117345300283404, 33.875733784237468, 0.0 ], [ -118.117363568942295, 33.876753117180563, 0.0 ], [ -118.117353769100305, 33.878268172763157, 0.0 ], [ -118.117361864621898, 33.880145225989892, 0.0 ], [ -118.117365273262706, 33.882316870990429, 0.0 ], [ -118.117420237594303, 33.888164564572037, 0.0 ], [ -118.117427395739696, 33.889183748146408, 0.0 ], [ -118.1174282683955, 33.88924075866128, 0.0 ] ], [ [ -118.117339367593303, 33.87495045753753, 0.0 ], [ -118.117342179721803, 33.875559666849561, 0.0 ], [ -118.117345300283404, 33.875733784237468, 0.0 ] ], [ [ -118.117002217747299, 33.858175704556608, 0.0 ], [ -118.117023812678895, 33.85976666746479, 0.0 ], [ -118.117075709233802, 33.863313954642742, 0.0 ], [ -118.117168168613304, 33.869770005376203, 0.0 ], [ -118.117118658106804, 33.869770090592233, 0.0 ], [ -118.117123116735897, 33.870007612144903, 0.0 ], [ -118.117171475295706, 33.87000755465521, 0.0 ], [ -118.117201828940395, 33.871768065348363, 0.0 ], [ -118.117209498381996, 33.872841446310069, 0.0 ], [ -118.117329993831305, 33.872840764581873, 0.0 ], [ -118.117339367593303, 33.87495045753753, 0.0 ] ], [ [ -118.117001993962106, 33.858159217846662, 0.0 ], [ -118.117002217747299, 33.858175704556608, 0.0 ] ], [ [ -118.1169968384973, 33.857755999842951, 0.0 ], [ -118.117001315650199, 33.858098904778068, 0.0 ], [ -118.117001400866201, 33.858115521901553, 0.0 ], [ -118.117001993962106, 33.858159217846662, 0.0 ] ], [ [ -118.116308424208498, 33.847151799468307, 0.0 ], [ -118.116388186401196, 33.848130505434057, 0.0 ], [ -118.116450053230295, 33.84890307385254, 0.0 ], [ -118.116480901428702, 33.849280495595842, 0.0 ], [ -118.116523253789595, 33.849805085402203, 0.0 ], [ -118.116550693347406, 33.850147994658258, 0.0 ], [ -118.116587336235099, 33.850603048193918, 0.0 ], [ -118.116666075835695, 33.851579879407353, 0.0 ], [ -118.116692833665297, 33.851911369717037, 0.0 ], [ -118.116768505489205, 33.852657862033993, 0.0 ], [ -118.116906555438305, 33.854684213724042, 0.0 ], [ -118.116913760081303, 33.855182656488537, 0.0 ], [ -118.116919824699494, 33.855608265322523, 0.0 ], [ -118.116969259795198, 33.855643748311593, 0.0 ], [ -118.1169968384973, 33.857755999842951, 0.0 ] ], [ [ -118.116293170541198, 33.847151714252277, 0.0 ], [ -118.116308424208498, 33.847151799468307, 0.0 ] ], [ [ -118.114770956813203, 33.846918563227192, 0.0 ], [ -118.1147840800799, 33.846918563227192, 0.0 ], [ -118.1147840800799, 33.846935095134683, 0.0 ], [ -118.114840067003698, 33.846935009918681, 0.0 ], [ -118.114839555707604, 33.847142425706302, 0.0 ], [ -118.115126478039997, 33.847142255274314, 0.0 ], [ -118.116293170541198, 33.847151714252277, 0.0 ] ], [ [ -118.114765940512697, 33.846918563227192, 0.0 ], [ -118.114770956813203, 33.846918563227192, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7019", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.518291128254205, 34.186755185373293, 0.0 ], [ -118.518283117948499, 34.186755185373293, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7015", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.518749888728493, 34.221249777266557, 0.0 ], [ -118.518744392252998, 34.221249777266557, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7014", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.506633508613305, 34.271644203991329, 0.0 ], [ -118.506666214737805, 34.271809889369912, 0.0 ], [ -118.506665021713502, 34.27187686916006, 0.0 ] ], [ [ -118.506629997930105, 34.271626419283379, 0.0 ], [ -118.506633508613305, 34.271644203991329, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7013", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.506629997930105, 34.271626419283379, 0.0 ], [ -118.506629997930105, 34.271644229431061, 0.0 ], [ -118.506633508613305, 34.271644203991329, 0.0 ] ], [ [ -118.506633508613305, 34.271644203991329, 0.0 ], [ -118.506641757586607, 34.271644144216182, 0.0 ] ], [ [ -118.506642354252804, 34.271608438703637, 0.0 ], [ -118.506629997930105, 34.271608438703637, 0.0 ], [ -118.506629997930105, 34.271626419283379, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7012", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.527578601124901, 34.129382226756093, 0.0 ], [ -118.527552523006506, 34.12938509917447, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7011", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.520336537917103, 34.172556489397088, 0.0 ], [ -118.520384012095107, 34.172649191224387, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7010", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.520336537917103, 34.172556489397088, 0.0 ], [ -118.520336604003802, 34.172566864994792, 0.0 ], [ -118.520336635712098, 34.172571843188571, 0.0 ], [ -118.520336683274394, 34.172579310479243, 0.0 ], [ -118.5203367387643, 34.172588022394393, 0.0 ] ], [ [ -118.520336507293294, 34.172551681438179, 0.0 ], [ -118.520336524733196, 34.172554419510348, 0.0 ], [ -118.520336537917103, 34.172556489397088, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7006", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.518627135012807, 34.360438041862032, 0.0 ], [ -118.518642899976101, 34.360433781061033, 0.0 ], [ -118.518596883326396, 34.360309450890988, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7005", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.498202499874495, 34.395227109916739, 0.0 ], [ -118.498213467488398, 34.395233361082397, 0.0 ], [ -118.498208269311306, 34.395239581851698, 0.0 ] ], [ [ -118.498188499195095, 34.395219130007398, 0.0 ], [ -118.498202499874495, 34.395227109916739, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7004", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.498202474622005, 34.395227140313189, 0.0 ], [ -118.498202499874495, 34.395227109916739, 0.0 ] ], [ [ -118.498202499874495, 34.395227109916739, 0.0 ], [ -118.498211677952099, 34.395216062230823, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7003", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.4982645205789, 34.395082510432637, 0.0 ], [ -118.498223889621997, 34.395082727824459, 0.0 ], [ -118.498209876966797, 34.395075386264303, 0.0 ] ], [ [ -118.498209876966797, 34.395075386264303, 0.0 ], [ -118.498199999406594, 34.39507021117678, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7002", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.495543493339198, 34.318976250253719, 0.0 ], [ -118.495556022053805, 34.318972679189763, 0.0 ], [ -118.495532092322193, 34.318914883127498, 0.0 ] ], [ [ -118.495532092322193, 34.318914883127498, 0.0 ], [ -118.495512724351798, 34.318868104816843, 0.0 ], [ -118.495503327826299, 34.318870783111421, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7001", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.486343094289197, 34.049453997215821, 0.0 ], [ -118.486394533506001, 34.0494430526389, 0.0 ], [ -118.486358208345493, 34.049319308265147, 0.0 ], [ -118.486442841567694, 34.049302480011868, 0.0 ], [ -118.486417119078695, 34.049213857774767, 0.0 ] ], [ [ -118.486417119078695, 34.049213857774767, 0.0 ], [ -118.486373617110104, 34.049063979518444, 0.0 ], [ -118.486364972781701, 34.049066057831368, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7000", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.486343758251707, 34.049456280772247, 0.0 ], [ -118.486344152561699, 34.049457638880469, 0.0 ], [ -118.486348926529601, 34.049456671191336, 0.0 ], [ -118.4863536134105, 34.049472691802663, 0.0 ], [ -118.486366481029293, 34.04947013532211, 0.0 ], [ -118.486370997478204, 34.049485985501441, 0.0 ] ], [ [ -118.486343094289197, 34.049453997215821, 0.0 ], [ -118.486343758251707, 34.049456280772247, 0.0 ] ], [ [ -118.486337933663407, 34.049436219347037, 0.0 ], [ -118.486343094289197, 34.049453997215821, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6999", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.527631570762196, 34.129439062153402, 0.0 ], [ -118.527635831563103, 34.129438465641201, 0.0 ], [ -118.527637024587307, 34.129445709002752, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6995", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.230279905645503, 33.952340321586483, 0.0 ], [ -118.230279990861504, 33.952367761144217, 0.0 ], [ -118.230286637710904, 33.952367761144217, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6994", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.230218037492406, 33.95234051003581, 0.0 ], [ -118.230218124032504, 33.952346031059648, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6993", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.127105378894797, 33.960685270573137, 0.0 ], [ -118.127118416945507, 33.960668483017628, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6992", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.405511563259793, 33.983900329470593, 0.0 ], [ -118.405489833313794, 33.983901692918216, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6991", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.116561193013496, 33.972469611107464, 0.0 ], [ -118.116508956477205, 33.972452638323759, 0.0 ], [ -118.116528729125903, 33.972410397474178, 0.0 ] ], [ [ -118.116528729125903, 33.972410397474178, 0.0 ], [ -118.116546105071905, 33.972373276724269, 0.0 ] ], [ [ -118.116546105071905, 33.972373276724269, 0.0 ], [ -118.116552695945899, 33.972359196440209, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6990", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.116546105071905, 33.972373276724269, 0.0 ], [ -118.116532277769494, 33.972368783929767, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6989", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.116528729125903, 33.972410397474178, 0.0 ], [ -118.116580965639798, 33.972427370249207, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6988", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1852851759419, 33.960820338238626, 0.0 ], [ -118.185243613017903, 33.960816329722078, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6987", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.1852851759419, 33.960820338238626, 0.0 ], [ -118.185285166456296, 33.960820423177573, 0.0 ], [ -118.185284680459702, 33.960824563472158, 0.0 ] ], [ [ -118.185287041208696, 33.960803635622028, 0.0 ], [ -118.1852851759419, 33.960820338238626, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6986", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.172625387534794, 33.959517555167103, 0.0 ], [ -118.172622236625699, 33.959517214615587, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6985", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.172625387534794, 33.959517555167103, 0.0 ], [ -118.172624963538198, 33.959520367608206, 0.0 ] ], [ [ -118.1726260713465, 33.959513124246783, 0.0 ], [ -118.172625986130498, 33.959513550326832, 0.0 ], [ -118.172625387534794, 33.959517555167103, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6984", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378501173635499, 33.948307984834607, 0.0 ], [ -118.378501153356197, 33.948307984834607, 0.0 ] ], [ [ -118.378520241744297, 33.948307984834607, 0.0 ], [ -118.378501173635499, 33.948307984834607, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6983", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378501464350904, 33.948328863488101, 0.0 ], [ -118.378501579436303, 33.948337128712687, 0.0 ], [ -118.378508141069801, 33.948337128712687, 0.0 ] ], [ [ -118.378501173635499, 33.948307984834607, 0.0 ], [ -118.378501464350904, 33.948328863488101, 0.0 ] ], [ [ -118.378520071312195, 33.948269808058548, 0.0 ], [ -118.378500642060104, 33.948269808058548, 0.0 ], [ -118.378501173635499, 33.948307984834607, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6982", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.134812040839506, 33.964538760940741, 0.0 ], [ -118.1348154051432, 33.964534033943309, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6981", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.4526934321553, 34.033236547045128, 0.0 ], [ -118.4527121995946, 34.033257621644353, 0.0 ] ], [ [ -118.452619659693298, 34.033155784339677, 0.0 ], [ -118.452690900284196, 34.033238103013012, 0.0 ], [ -118.4526934321553, 34.033236547045128, 0.0 ] ], [ [ -118.4526866491004, 34.03322364213075, 0.0 ], [ -118.452683610356701, 34.033225517811843, 0.0 ], [ -118.4526934321553, 34.033236547045128, 0.0 ] ], [ [ -118.4526934321553, 34.033236547045128, 0.0 ], [ -118.452696527406303, 34.03323464629409, 0.0 ] ], [ [ -118.452696527406303, 34.03323464629409, 0.0 ], [ -118.452701648983606, 34.033231497372171, 0.0 ], [ -118.452699586492699, 34.033229253763508, 0.0 ] ], [ [ -118.452699586492699, 34.033229253763508, 0.0 ], [ -118.452691611861894, 34.03322057883905, 0.0 ], [ -118.4526866491004, 34.03322364213075, 0.0 ] ], [ [ -118.452648462707401, 34.033125873517427, 0.0 ], [ -118.452612331115702, 34.03314743316993, 0.0 ], [ -118.452619659693298, 34.033155784339677, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6978", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.452593498375805, 34.033062472800069, 0.0 ], [ -118.452641875531995, 34.033033762105077, 0.0 ] ], [ [ -118.452641875531995, 34.033033762105077, 0.0 ], [ -118.452700614910299, 34.032998901650643, 0.0 ], [ -118.452734530885394, 34.033037674938868, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6977", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.326187721684207, 33.94211976804538, 0.0 ], [ -118.326187892116295, 33.94219262774066, 0.0 ], [ -118.326146732779605, 33.942192712956647, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6976", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.326250185025302, 33.942119597613349, 0.0 ], [ -118.326250696321395, 33.942218618626143, 0.0 ], [ -118.326209366552703, 33.942218703842173, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6975", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.405493324024206, 33.983847328616442, 0.0 ], [ -118.405506535514704, 33.983836587889293, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6974", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.405493582679995, 33.98387536117739, 0.0 ], [ -118.405510711099595, 33.9838622379106, 0.0 ], [ -118.405493324024206, 33.983847328616442, 0.0 ] ], [ [ -118.405493324024206, 33.983847328616442, 0.0 ], [ -118.405472534323593, 33.98382951495973, 0.0 ], [ -118.405455576335996, 33.983842638226562, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6973", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256656217139394, 33.945501122327471, 0.0 ], [ -118.256657586616001, 33.94564217214598, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6972", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256705648450094, 33.945641660849887, 0.0 ], [ -118.256705648450094, 33.945560449984818, 0.0 ], [ -118.256705563233993, 33.945519716728249, 0.0 ], [ -118.256705013474601, 33.945500824198753, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6971", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378272774428197, 33.942045885757807, 0.0 ], [ -118.378253515608293, 33.942045970973808, 0.0 ], [ -118.3782533451771, 33.942056963775443, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6970", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3782533451771, 33.942056963775443, 0.0 ], [ -118.378221133521393, 33.942057049056167, 0.0 ], [ -118.378220963089305, 33.942040687580722, 0.0 ] ], [ [ -118.378285471614902, 33.942056878624072, 0.0 ], [ -118.3782533451771, 33.942056963775443, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6969", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378272774428197, 33.942045885757807, 0.0 ], [ -118.3782853863989, 33.942045885757807, 0.0 ], [ -118.378285471614902, 33.942056878624072, 0.0 ] ], [ [ -118.378285471614902, 33.942056878624072, 0.0 ], [ -118.378334129961104, 33.942056708192041, 0.0 ] ], [ [ -118.378272859644198, 33.942019724440257, 0.0 ], [ -118.378272774428197, 33.942045885757807, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6968", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3781502337945, 33.942040261500587, 0.0 ], [ -118.378150148578499, 33.942019724440257, 0.0 ], [ -118.378272859644198, 33.942019724440257, 0.0 ] ], [ [ -118.378272859644198, 33.942019724440257, 0.0 ], [ -118.378335152417193, 33.942019724440257, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6967", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.291690291955803, 33.943774270932437, 0.0 ], [ -118.291690232295906, 33.943752337085932, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6966", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.291751673726395, 33.943774227824363, 0.0 ], [ -118.291751587979206, 33.9437521660846, 0.0 ], [ -118.291690573310404, 33.943752336516631, 0.0 ], [ -118.291690232295906, 33.943752337085932, 0.0 ] ], [ [ -118.291690232295906, 33.943752337085932, 0.0 ], [ -118.291639528915695, 33.943752421732668, 0.0 ], [ -118.291639358483593, 33.943722255262273, 0.0 ], [ -118.291258889774099, 33.943723547403337, 0.0 ], [ -118.291258976763999, 33.943698476287643, 0.0 ], [ -118.291226580870401, 33.943698494459063, 0.0 ], [ -118.291215085063399, 33.943706328180127, 0.0 ], [ -118.291194646903193, 33.943706319544198, 0.0 ], [ -118.291194646903193, 33.943694112783717, 0.0 ] ], [ [ -118.291194646903193, 33.943694112783717, 0.0 ], [ -118.291194646903193, 33.943686166153043, 0.0 ], [ -118.291314140461296, 33.943685452758658, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6965", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.291698413184093, 33.943796222765869, 0.0 ], [ -118.291698327968106, 33.94380721563212, 0.0 ], [ -118.291690062014297, 33.94380721563212, 0.0 ] ], [ [ -118.291698444099296, 33.943774249639503, 0.0 ], [ -118.291698413184093, 33.943796222765869, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6964", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.291744520628598, 33.943774237033232, 0.0 ], [ -118.291744600265702, 33.943796137549832, 0.0 ], [ -118.291698413184093, 33.943796222765869, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6963", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.191709175967105, 33.961351318969221, 0.0 ], [ -118.191714288928196, 33.961319192530389, 0.0 ], [ -118.191668442710593, 33.961314164785414, 0.0 ], [ -118.191663159336997, 33.961346291104903, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6961", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.191866486380803, 33.961398756105041, 0.0 ], [ -118.191882576449899, 33.961400427786963, 0.0 ], [ -118.191891338312601, 33.961392820090239, 0.0 ] ], [ [ -118.191727412194993, 33.96138429756811, 0.0 ], [ -118.191744941647599, 33.9613861254916, 0.0 ], [ -118.191747278917603, 33.961386369215688, 0.0 ], [ -118.191771587729505, 33.961388896582079, 0.0 ], [ -118.191773223913003, 33.961389066574419, 0.0 ], [ -118.191827217970697, 33.9613946763115, 0.0 ], [ -118.191828854154295, 33.961394846303037, 0.0 ], [ -118.191866486380803, 33.961398756105041, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6960", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.191676112152194, 33.96134773989646, 0.0 ], [ -118.191676112152194, 33.961348251192632, 0.0 ], [ -118.191675856513797, 33.961350722362447, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6959", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.191695967484307, 33.961349870296843, 0.0 ], [ -118.191695882268306, 33.961350381593, 0.0 ], [ -118.1916955414043, 33.961352852857559, 0.0 ], [ -118.191675856513797, 33.961350722362447, 0.0 ] ], [ [ -118.191675856513797, 33.961350722362447, 0.0 ], [ -118.191669380086694, 33.961349955512873, 0.0 ], [ -118.191669550518796, 33.96134859205668, 0.0 ], [ -118.191653189043393, 33.961346802520247, 0.0 ], [ -118.191662477589304, 33.96128825911596, 0.0 ], [ -118.191631373742794, 33.961284850475231, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6958", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.185312024704203, 33.960782850682207, 0.0 ], [ -118.185311924285998, 33.960783439425867, 0.0 ], [ -118.185308686077207, 33.960805680806487, 0.0 ], [ -118.185287041208696, 33.960803635622028, 0.0 ] ], [ [ -118.185287041208696, 33.960803635622028, 0.0 ], [ -118.185266078068295, 33.960801675653563, 0.0 ], [ -118.185269145844998, 33.960778922976857, 0.0 ], [ -118.185269243544695, 33.960778331345907, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6957", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.228322242965504, 33.78236251225966, 0.0 ], [ -118.228323358780202, 33.782373841267763, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6924", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255572150381695, 33.777827070747072, 0.0 ], [ -118.255583889739199, 33.777826249052431, 0.0 ], [ -118.255587041573705, 33.777826009299247, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6923", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.255552585713403, 33.777769776572264, 0.0 ], [ -118.255551955138003, 33.777761404254314, 0.0 ] ], [ [ -118.255567593940896, 33.777768912850448, 0.0 ], [ -118.255552585713403, 33.777769776572264, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6922", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.255571592562205, 33.777819950802069, 0.0 ], [ -118.255567593940896, 33.777768912850448, 0.0 ] ], [ [ -118.255567593940896, 33.777768912850448, 0.0 ], [ -118.255563015161599, 33.777710469732178, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6921", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255716336444607, 33.777794409315469, 0.0 ], [ -118.255704634226305, 33.777795040832537, 0.0 ], [ -118.255698530875506, 33.777707001001723, 0.0 ], [ -118.255710095754694, 33.777706345439199, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6920", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255719765112403, 33.777841229183892, 0.0 ], [ -118.255708217805804, 33.777841894645412, 0.0 ], [ -118.255706640352997, 33.777819881441317, 0.0 ], [ -118.255718070640597, 33.777819180271592, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6919", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255699114791398, 33.777853785639842, 0.0 ], [ -118.255672806245499, 33.777855389810078, 0.0 ], [ -118.255670449885002, 33.777823571314173, 0.0 ], [ -118.255665796840304, 33.777823861738277, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6918", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.255611468274097, 33.777807577931547, 0.0 ], [ -118.255685763997107, 33.777803519555391, 0.0 ], [ -118.255689502211496, 33.777849429907789, 0.0 ], [ -118.255717008989294, 33.777848125543372, 0.0 ], [ -118.255720299683702, 33.777847969499483, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6916", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.255701036519696, 33.777879129122638, 0.0 ], [ -118.255722688007097, 33.777878083437137, 0.0 ], [ -118.255720299683702, 33.777847969499483, 0.0 ] ], [ [ -118.255720299683702, 33.777847969499483, 0.0 ], [ -118.255719765112403, 33.777841229183892, 0.0 ] ], [ [ -118.255719765112403, 33.777841229183892, 0.0 ], [ -118.255718070640597, 33.777819180271592, 0.0 ] ], [ [ -118.255718070640597, 33.777819180271592, 0.0 ], [ -118.255716430693099, 33.777795755545597, 0.0 ], [ -118.255716336444607, 33.777794409315469, 0.0 ] ], [ [ -118.255716336444607, 33.777794409315469, 0.0 ], [ -118.255716238061694, 33.777793021010673, 0.0 ], [ -118.2557101869549, 33.777707632387433, 0.0 ], [ -118.255710095754694, 33.777706345439199, 0.0 ] ], [ [ -118.255710095754694, 33.777706345439199, 0.0 ], [ -118.255709990775202, 33.777704864046029, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6904", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.114641513575705, 33.846896332510717, 0.0 ], [ -118.114641532522597, 33.846890403295397, 0.0 ] ], [ [ -118.114641532522597, 33.846890403295397, 0.0 ], [ -118.114641571524899, 33.846878197978171, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6885", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.444584523956806, 33.970258031394771, 0.0 ], [ -118.444683577160504, 33.970398703591577, 0.0 ], [ -118.444829296551205, 33.970614470548973, 0.0 ] ], [ [ -118.444561888686906, 33.970225885507219, 0.0 ], [ -118.444584523956806, 33.970258031394771, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6884", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.438914117074106, 33.964094033503393, 0.0 ], [ -118.438928598606395, 33.96416233975232, 0.0 ], [ -118.438819010807507, 33.964168134441493, 0.0 ], [ -118.438736180837907, 33.964181598572381, 0.0 ], [ -118.438760467403, 33.96434930369557, 0.0 ], [ -118.438772738509698, 33.96450039169536, 0.0 ], [ -118.438711809056898, 33.964565241084941, 0.0 ], [ -118.438664258518898, 33.964610576006557, 0.0 ], [ -118.438603414281999, 33.964622165384966, 0.0 ], [ -118.4384293179575, 33.964636737324028, 0.0 ], [ -118.438313594605106, 33.964656933520303, 0.0 ], [ -118.438272179620398, 33.964665625554161, 0.0 ], [ -118.438261271970106, 33.964687866934817, 0.0 ], [ -118.438178612432793, 33.965180585950442, 0.0 ], [ -118.440676975646099, 33.966409571360842, 0.0 ], [ -118.441522659407894, 33.966902205160387, 0.0 ], [ -118.442365531041105, 33.967405405746199, 0.0 ], [ -118.443460216007395, 33.96804793452138, 0.0 ], [ -118.444255025806399, 33.969028174375431, 0.0 ], [ -118.444027072958505, 33.969381565201708, 0.0 ], [ -118.444565467759702, 33.970223925538868, 0.0 ], [ -118.445474211374801, 33.969828864079773, 0.0 ], [ -118.445795220114306, 33.969950296905317, 0.0 ], [ -118.445709663232293, 33.97005613519957, 0.0 ], [ -118.445723212579196, 33.970066787201773, 0.0 ], [ -118.445831096057901, 33.969968107053077, 0.0 ], [ -118.445933099631304, 33.97005613519957, 0.0 ], [ -118.445910602648198, 33.970113229815958, 0.0 ] ], [ [ -118.438913629364606, 33.96409173308389, 0.0 ], [ -118.438914117074106, 33.964094033503393, 0.0 ] ], [ [ -118.438904226825301, 33.964047383344102, 0.0 ], [ -118.438913629364606, 33.96409173308389, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 6873", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.436733774849003, 33.963923308822068, 0.0 ], [ -118.4367316444485, 33.963919303669137, 0.0 ], [ -118.436685542582794, 33.963831445954682, 0.0 ], [ -118.436668499379195, 33.963838859748257, 0.0 ], [ -118.436679066109093, 33.963859396699078, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7113", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6408569007463, 34.172094451218612, 0.0 ], [ -118.6408635475957, 34.172094366002582, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7112", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.640832760116893, 34.171915525562, 0.0 ], [ -118.640832763333293, 34.17190992658368, 0.0 ], [ -118.640825967331807, 34.1719099585398, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7110", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.640857308773107, 34.172160421832942, 0.0 ], [ -118.640857393608499, 34.172174138407023, 0.0 ], [ -118.640744550159795, 34.172174785035452, 0.0 ] ], [ [ -118.640856985962301, 34.172102717172343, 0.0 ], [ -118.640857308773107, 34.172160421832942, 0.0 ] ], [ [ -118.6408569007463, 34.172094451218612, 0.0 ], [ -118.640856985962301, 34.172102717172343, 0.0 ] ], [ [ -118.640825967331807, 34.1719099585398, 0.0 ], [ -118.640827160356096, 34.172094621650643, 0.0 ], [ -118.6408569007463, 34.172094451218612, 0.0 ] ], [ [ -118.640825882115806, 34.171891381447857, 0.0 ], [ -118.640825967331807, 34.1719099585398, 0.0 ] ], [ [ -118.640825711683803, 34.171866668802757, 0.0 ], [ -118.640825882115806, 34.171891381447857, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7109", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571613790032401, 34.175629960991721, 0.0 ], [ -118.571613858442404, 34.17563815932369, 0.0 ], [ -118.571604650112306, 34.175638161285441, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7108", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571537257278294, 34.175839182509698, 0.0 ], [ -118.571449817607899, 34.175839865638139, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7107", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.571537257278294, 34.175839182509698, 0.0 ], [ -118.5715374196743, 34.175855801033507, 0.0 ], [ -118.571449391527906, 34.175856227113563, 0.0 ] ], [ [ -118.571604650112306, 34.175638161285441, 0.0 ], [ -118.571603206440201, 34.175802967102307, 0.0 ], [ -118.571536908378306, 34.175803478398521, 0.0 ], [ -118.571537257278294, 34.175839182509698, 0.0 ] ], [ [ -118.571604997507606, 34.175598503490797, 0.0 ], [ -118.571604650112306, 34.175638161285441, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7106", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.488085275341504, 34.15772653809951, 0.0 ], [ -118.488084760263703, 34.15761937200795, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7105", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.487961899984498, 34.15772694677748, 0.0 ], [ -118.488085275341504, 34.15772653809951, 0.0 ] ], [ [ -118.488085275341504, 34.15772653809951, 0.0 ], [ -118.4880918062169, 34.157726515356217, 0.0 ], [ -118.488091266717703, 34.157619349370982, 0.0 ], [ -118.488084760263703, 34.15761937200795, 0.0 ] ], [ [ -118.488084760263703, 34.15761937200795, 0.0 ], [ -118.487990922903506, 34.157619698433628, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7104", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.907527526273, 34.11417334467604, 0.0 ], [ -117.906669650477994, 34.114172669699968, 0.0 ], [ -117.906669681153303, 34.114145191040542, 0.0 ] ], [ [ -117.906527620773105, 34.114145081251998, 0.0 ], [ -117.906527593123997, 34.114169812040053, 0.0 ], [ -117.906444999855694, 34.114169748129498, 0.0 ] ], [ [ -117.906669681153303, 34.114145191040542, 0.0 ], [ -117.906669690355898, 34.114136947442731, 0.0 ], [ -117.906527629990293, 34.114136837648758, 0.0 ], [ -117.906527620773105, 34.114145081251998, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7103", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.933106512438201, 34.133751503956127, 0.0 ], [ -117.932743918282, 34.133745283186798, 0.0 ], [ -117.932743747849997, 34.133756276053177, 0.0 ], [ -117.928505699630804, 34.13373607985686, 0.0 ], [ -117.924490065218393, 34.133723979182392, 0.0 ], [ -117.924489980002406, 34.133741789330067, 0.0 ], [ -117.923950647824995, 34.133737613745197, 0.0 ], [ -117.923950733040996, 34.133726876526957, 0.0 ], [ -117.923937524558198, 34.133726791310963, 0.0 ], [ -117.923884690627105, 34.133715116716523, 0.0 ], [ -117.923606204680596, 34.133712645452, 0.0 ], [ -117.923601262151493, 34.133717247116891, 0.0 ], [ -117.922023317147804, 34.133702930825898, 0.0 ], [ -117.921191523596903, 34.133705316874419, 0.0 ], [ -117.921047764174602, 34.133696710056597, 0.0 ], [ -117.920913037650294, 34.133702760393867, 0.0 ], [ -117.920596971439807, 34.13369560224843, 0.0 ], [ -117.920456535442298, 34.133685461542278, 0.0 ], [ -117.920324706262605, 34.133695772680461, 0.0 ], [ -117.919090778323195, 34.133691256231437, 0.0 ], [ -117.919090863539097, 34.133674724323967, 0.0 ], [ -117.918925629680402, 34.133674127811886, 0.0 ], [ -117.9189255444644, 34.133679666853027, 0.0 ], [ -117.917912056176107, 34.133671912349868, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7102", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.937599526983007, 34.121516188103371, 0.0 ], [ -117.937599526983007, 34.121531186122603, 0.0 ], [ -117.937765170565299, 34.121530509282493, 0.0 ], [ -117.937902561144696, 34.121529947887723, 0.0 ], [ -117.938032586227294, 34.12152941658924, 0.0 ], [ -117.938161633510205, 34.121527774468483, 0.0 ], [ -117.938325323716697, 34.121508605540427, 0.0 ], [ -117.938433750148405, 34.121495735588773, 0.0 ], [ -117.938520887435701, 34.121471301981273, 0.0 ], [ -117.938606313775296, 34.121446854271021, 0.0 ], [ -117.938647589992598, 34.121429803288869, 0.0 ], [ -117.938699264798501, 34.121402396798992, 0.0 ], [ -117.938748983363695, 34.12137048873916, 0.0 ], [ -117.938770033865694, 34.121356979083927, 0.0 ], [ -117.938812402121499, 34.121316568330137, 0.0 ], [ -117.938867841748703, 34.121251577300342, 0.0 ], [ -117.938928333115697, 34.12115581074238, 0.0 ], [ -117.938973342271893, 34.121046041837303, 0.0 ], [ -117.938975428799907, 34.1210390752127, 0.0 ] ], [ [ -117.938975428799907, 34.1210390752127, 0.0 ], [ -117.938989276869705, 34.120992838448402, 0.0 ], [ -117.938992531190195, 34.120951798656833, 0.0 ], [ -117.938996743887003, 34.120876471674741, 0.0 ] ], [ [ -117.938996743887003, 34.120876471674741, 0.0 ], [ -117.939004483470399, 34.12073808064379, 0.0 ], [ -117.939009937295495, 34.119512077794028, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7101", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.940803946382701, 34.120886556529499, 0.0 ], [ -117.941241489156795, 34.120888998211562, 0.0 ], [ -117.941287335374497, 34.12087374454434, 0.0 ], [ -117.941335567640607, 34.120843237209883, 0.0 ], [ -117.941356275133003, 34.120793641487523, 0.0 ], [ -117.941367779295305, 34.120728792097808, 0.0 ], [ -117.9413666627824, 34.120582796868227, 0.0 ] ], [ [ -117.938996743887003, 34.120876471674741, 0.0 ], [ -117.939176511908201, 34.120877474725987, 0.0 ], [ -117.940803946382701, 34.120886556529499, 0.0 ] ], [ [ -117.9413666627824, 34.120582796868227, 0.0 ], [ -117.941365648894802, 34.12045022093524, 0.0 ], [ -117.941358490749394, 34.119494097214243, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7100", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.933353020298497, 34.128528154267357, 0.0 ], [ -117.933352531081894, 34.128746426359761, 0.0 ], [ -117.933820930047801, 34.128684931744239, 0.0 ] ], [ [ -117.933820930047801, 34.128684931744239, 0.0 ], [ -117.9339743523647, 34.128664789414557, 0.0 ], [ -117.936597301396304, 34.12832341404674, 0.0 ], [ -117.936644681502301, 34.128280465173773, 0.0 ] ], [ [ -117.933386121516804, 34.128518388271672, 0.0 ], [ -117.933353042378101, 34.128518303079773, 0.0 ], [ -117.933353020298497, 34.128528154267357, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7099", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.9331255156102, 34.127019438540607, 0.0 ], [ -117.933125647509897, 34.126854566491787, 0.0 ], [ -117.932495886026103, 34.126854214096802, 0.0 ] ], [ [ -117.932495886026103, 34.126854214096802, 0.0 ], [ -117.931647421954807, 34.126853739322577, 0.0 ] ], [ [ -117.931647421954807, 34.126853739322577, 0.0 ], [ -117.931605700456799, 34.12685371597658, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7098", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.928557136394801, 34.128633315938451, 0.0 ], [ -117.927490435993406, 34.12863658291262, 0.0 ], [ -117.927483874359993, 34.128658568645207, 0.0 ] ], [ [ -117.928853807064002, 34.128632407327743, 0.0 ], [ -117.928557136394801, 34.128633315938451, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7097", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.928853807064002, 34.128632407327743, 0.0 ], [ -117.928850582389799, 34.127901879647993, 0.0 ] ], [ [ -117.932327288085403, 34.128528959874423, 0.0 ], [ -117.929727015599596, 34.128585282869849, 0.0 ], [ -117.929727186031599, 34.128629765631118, 0.0 ], [ -117.928853807064002, 34.128632407327743, 0.0 ] ], [ [ -117.932436412839607, 34.128527223910517, 0.0 ], [ -117.932410127139804, 34.128527165545613, 0.0 ], [ -117.932327288085403, 34.128528959874423, 0.0 ] ], [ [ -117.933353020298497, 34.128528154267357, 0.0 ], [ -117.933139320605093, 34.128528784649937, 0.0 ], [ -117.933112960368604, 34.128528726119526, 0.0 ] ], [ [ -117.933112960368604, 34.128528726119526, 0.0 ], [ -117.932436412839607, 34.128527223910517, 0.0 ] ], [ [ -117.933399314675796, 34.128528017705747, 0.0 ], [ -117.933353020298497, 34.128528154267357, 0.0 ] ], [ [ -117.933386121516804, 34.128518388271672, 0.0 ], [ -117.933386106192998, 34.128523842120877, 0.0 ], [ -117.933399314675796, 34.128523927336907, 0.0 ], [ -117.933399314675796, 34.128528017705747, 0.0 ] ], [ [ -117.933387043569297, 34.12819022141074, 0.0 ], [ -117.933386121516804, 34.128518388271672, 0.0 ] ], [ [ -117.928850582389799, 34.127901879647993, 0.0 ], [ -117.928843922005896, 34.126393015592853, 0.0 ], [ -117.930032259375807, 34.126389351304113, 0.0 ] ], [ [ -117.930032259375807, 34.126389351304113, 0.0 ], [ -117.9300318356578, 34.126294382209437, 0.0 ] ], [ [ -117.9300318356578, 34.126294382209437, 0.0 ], [ -117.9300312883868, 34.126171720637103, 0.0 ] ], [ [ -117.9300312883868, 34.126171720637103, 0.0 ], [ -117.930031025247203, 34.126112742277662, 0.0 ] ], [ [ -117.930031025247203, 34.126112742277662, 0.0 ], [ -117.930029702895297, 34.125816358799618, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7096", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.976331400151196, 34.114933165503217, 0.0 ], [ -117.9763316557992, 34.114908367641931, 0.0 ], [ -117.976785431094697, 34.114910924122562, 0.0 ], [ -117.976785431094697, 34.114819828199387, 0.0 ], [ -117.976507541660197, 34.114819061255197, 0.0 ], [ -117.976148270928704, 34.114498052515657, 0.0 ], [ -117.976078990306206, 34.114470698173953, 0.0 ], [ -117.976020191253795, 34.114442150807882, 0.0 ], [ -117.975964289546098, 34.114409598289072, 0.0 ], [ -117.975877965719803, 34.114345430627573, 0.0 ], [ -117.974817367160895, 34.113441288677457, 0.0 ], [ -117.974176116625998, 34.1128108605769, 0.0 ] ], [ [ -117.974176116625998, 34.1128108605769, 0.0 ], [ -117.974127032199704, 34.112848696488903, 0.0 ], [ -117.973557533551997, 34.112359386113923, 0.0 ], [ -117.973521828040404, 34.112388359560093, 0.0 ], [ -117.973448030968896, 34.112299564469403, 0.0 ], [ -117.973379091210404, 34.112188101917937, 0.0 ], [ -117.973331114592298, 34.112077235878672, 0.0 ], [ -117.973292426520203, 34.111899390049203, 0.0 ], [ -117.973295238648802, 34.111705523608457, 0.0 ], [ -117.973306231515195, 34.111660359118993, 0.0 ], [ -117.973364263623296, 34.111489586219093, 0.0 ], [ -117.973470783645695, 34.111318472455103, 0.0 ], [ -117.973609174458801, 34.11115962979779, 0.0 ], [ -117.973698480845599, 34.111029419722342, 0.0 ], [ -117.973756683385901, 34.110907049520527, 0.0 ], [ -117.9737946897298, 34.110781100246157, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7095", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.983654033919805, 34.11776573497044, 0.0 ], [ -117.983611915858106, 34.117787476023388, 0.0 ], [ -117.983615921010895, 34.117792844632511, 0.0 ], [ -117.983583453708107, 34.11780963218802, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7094", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.983654033919805, 34.11776573497044, 0.0 ], [ -117.9836600629082, 34.117774608404702, 0.0 ] ], [ [ -117.982708603979901, 34.11417215230184, 0.0 ], [ -117.9827988029853, 34.114545658193578, 0.0 ], [ -117.982766999040393, 34.114550460366637, 0.0 ], [ -117.982870451286203, 34.115047440183218, 0.0 ], [ -117.982942373605397, 34.115393246783931, 0.0 ], [ -117.983019834965603, 34.115765725998202, 0.0 ], [ -117.983110504808707, 34.11620186157797, 0.0 ], [ -117.983194016506204, 34.116603314238397, 0.0 ], [ -117.983257417223598, 34.116892878267279, 0.0 ], [ -117.983338031576494, 34.117167614709039, 0.0 ], [ -117.983404414854405, 34.117323815669927, 0.0 ], [ -117.983450261072093, 34.117428801803989, 0.0 ], [ -117.983506162779904, 34.117524840256138, 0.0 ], [ -117.983585924972601, 34.117661611964863, 0.0 ], [ -117.983626828661201, 34.117725694410332, 0.0 ], [ -117.983654033919805, 34.11776573497044, 0.0 ] ], [ [ -117.982697159934702, 34.114165480884743, 0.0 ], [ -117.982698835651107, 34.114173546953637, 0.0 ], [ -117.982708603979901, 34.11417215230184, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7093", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.986298777144796, 34.113645621043091, 0.0 ], [ -117.986298691686997, 34.113659356467323, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7092", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9806671102439, 34.114642272387457, 0.0 ], [ -117.980672308444397, 34.114685306642379, 0.0 ], [ -117.979910732892293, 34.115177088281712, 0.0 ], [ -117.979633099105897, 34.115192341948998, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7091", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.9806671102439, 34.114642272387457, 0.0 ], [ -117.978645867197898, 34.114916548379703, 0.0 ], [ -117.978254214379504, 34.114968018854498, 0.0 ], [ -117.977691362581197, 34.115043008950238, 0.0 ], [ -117.977226594419506, 34.115092604672682, 0.0 ], [ -117.976585173452605, 34.115120981606637, 0.0 ], [ -117.976329610614798, 34.115117572966, 0.0 ], [ -117.976331400151196, 34.114933165503217, 0.0 ] ], [ [ -117.976331400151196, 34.114933165503217, 0.0 ], [ -117.975886487321603, 34.11492413260531, 0.0 ], [ -117.975887339481901, 34.114882888052662, 0.0 ], [ -117.9758844421372, 34.114882888052662, 0.0 ], [ -117.975883504761001, 34.114924047389273, 0.0 ], [ -117.975571273271399, 34.114900953848426, 0.0 ], [ -117.975250861044003, 34.114862777072368, 0.0 ], [ -117.974876507077298, 34.114805171044267, 0.0 ], [ -117.974729424230304, 34.114778583646697, 0.0 ], [ -117.974467725839304, 34.114725494067493, 0.0 ], [ -117.9742448007365, 34.114673938376647, 0.0 ], [ -117.9740449691744, 34.114623490494097, 0.0 ], [ -117.973762563291103, 34.114544154381377, 0.0 ], [ -117.973559237872195, 34.114481350176142, 0.0 ], [ -117.973568952498297, 34.114457745339259, 0.0 ], [ -117.973118330195604, 34.114300266138102, 0.0 ] ], [ [ -117.981000726637006, 34.114402099279502, 0.0 ], [ -117.981032853075803, 34.114592642295626, 0.0 ], [ -117.9806671102439, 34.114642272387457, 0.0 ] ], [ [ -117.982697159934702, 34.114165480884743, 0.0 ], [ -117.981000726637006, 34.114402099279502, 0.0 ] ], [ [ -117.983914946930298, 34.113986035609393, 0.0 ], [ -117.983915864496296, 34.113991476554439, 0.0 ], [ -117.982697159934702, 34.114165480884743, 0.0 ] ], [ [ -117.986298777144796, 34.113645621043091, 0.0 ], [ -117.9860058042335, 34.113687477753267, 0.0 ], [ -117.983914946930298, 34.113986035609393, 0.0 ] ], [ [ -117.990945265496094, 34.112920277943992, 0.0 ], [ -117.990959581787095, 34.112985723845682, 0.0 ], [ -117.989117637559801, 34.113237281530573, 0.0 ], [ -117.989118745368003, 34.113242735355712, 0.0 ], [ -117.986298777144796, 34.113645621043091, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7090", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.979651352622199, 34.108502782878318, 0.0 ], [ -117.980274998333002, 34.107644979430923, 0.0 ], [ -117.980376677160393, 34.107496991434672, 0.0 ], [ -117.980487416477203, 34.10736309753338, 0.0 ], [ -117.980667702439007, 34.107203220517754, 0.0 ], [ -117.981106564931295, 34.106946549871779, 0.0 ], [ -117.981629620849205, 34.106633210573989, 0.0 ], [ -117.981757018796102, 34.106557368317951, 0.0 ], [ -117.982870195638199, 34.106544671131289, 0.0 ], [ -117.982933852003498, 34.106561799550931, 0.0 ], [ -117.983508463612296, 34.106760864168812, 0.0 ], [ -117.983628703413601, 34.106518254165763, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7089", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -117.999079986566599, 34.111761595748277, 0.0 ], [ -117.999151653237703, 34.112008466552147, 0.0 ], [ -117.999128730128803, 34.112031389661013, 0.0 ], [ -117.999112624301503, 34.112067606468599, 0.0 ], [ -117.999112624301503, 34.112098113803007, 0.0 ], [ -117.999124128463905, 34.112128706353467, 0.0 ], [ -117.999163157400105, 34.112167053561478, 0.0 ], [ -117.999228006789806, 34.112205315553652, 0.0 ], [ -118.000525250230496, 34.112650313599147, 0.0 ], [ -118.000017174878096, 34.114015949158457, 0.0 ], [ -118.000180963254806, 34.114061749467133, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7088", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.984592876249593, 34.110320370516867, 0.0 ], [ -117.986470061099098, 34.110999338467977, 0.0 ], [ -117.988419036644999, 34.111706034904628, 0.0 ], [ -117.989240092977496, 34.112001904918799, 0.0 ], [ -117.990455955121206, 34.112464542680058, 0.0 ], [ -117.990875644009407, 34.112613755927413, 0.0 ], [ -117.990945265496094, 34.112920277943992, 0.0 ] ], [ [ -117.990945265496094, 34.112920277943992, 0.0 ], [ -117.992537271142794, 34.112754958869203, 0.0 ], [ -117.993297227590602, 34.112645711934213, 0.0 ], [ -117.993295778918295, 34.112640428541063, 0.0 ] ], [ [ -117.993295778918295, 34.112640428541063, 0.0 ], [ -117.993477118955397, 34.112614039948298, 0.0 ] ], [ [ -117.993477118955397, 34.112614039948298, 0.0 ], [ -117.995119912997893, 34.112374980645271, 0.0 ], [ -117.998162550917698, 34.111932965160257, 0.0 ], [ -117.998182150601806, 34.11189095366349, 0.0 ], [ -117.999079986566599, 34.111761595748277, 0.0 ] ], [ [ -117.999079986566599, 34.111761595748277, 0.0 ], [ -118.000322521323895, 34.111578040445679, 0.0 ], [ -118.000381320376206, 34.111605565219413, 0.0 ], [ -118.004085149379094, 34.111071772083243, 0.0 ], [ -118.004112929800897, 34.111076118100108, 0.0 ], [ -118.004178034838603, 34.111066744338181, 0.0 ], [ -118.004202321403696, 34.111054814095709, 0.0 ], [ -118.004274755018898, 34.111049445486472, 0.0 ], [ -118.004305773649506, 34.111039986508509, 0.0 ], [ -118.004435983724804, 34.111021324200649, 0.0 ], [ -118.004462656338404, 34.1109542591945, 0.0 ], [ -118.004569261576805, 34.110933807350207, 0.0 ], [ -118.004839439343399, 34.110380918222361, 0.0 ], [ -118.005072609270002, 34.10990376157465, 0.0 ], [ -118.005189082951304, 34.109665410977271, 0.0 ], [ -118.005310836346396, 34.109416256025597, 0.0 ], [ -118.005455543849607, 34.109120128012087, 0.0 ], [ -118.005735244011305, 34.108547752348507, 0.0 ], [ -118.005843093303994, 34.108327050615173, 0.0 ], [ -118.006032701868506, 34.107939037510967, 0.0 ], [ -118.006364397319501, 34.107260259197851, 0.0 ], [ -118.006915774661607, 34.106131926020559, 0.0 ], [ -118.007432263718599, 34.105074987887193, 0.0 ] ], [ [ -117.982244710066595, 34.109648579367928, 0.0 ], [ -117.9823154393615, 34.109496724424027, 0.0 ], [ -117.984004250404595, 34.110107467624438, 0.0 ], [ -117.984592876249593, 34.110320370516867, 0.0 ] ], [ [ -117.979651352622199, 34.108502782878318, 0.0 ], [ -117.979716947327105, 34.108526966140111, 0.0 ], [ -117.979628493100506, 34.108698165120181, 0.0 ], [ -117.982244710066595, 34.109648579367928, 0.0 ] ], [ [ -117.974044713526396, 34.10680696603449, 0.0 ], [ -117.974719283524195, 34.106941692558827, 0.0 ], [ -117.974724737349305, 34.106938709998147, 0.0 ], [ -117.976049675995995, 34.107422822195907, 0.0 ], [ -117.976170512309395, 34.1073561832699, 0.0 ], [ -117.977336523082599, 34.10778089990324, 0.0 ], [ -117.9773870561812, 34.107682731050637, 0.0 ], [ -117.979629345260605, 34.108494669269326, 0.0 ], [ -117.979651352622199, 34.108502782878318, 0.0 ] ], [ [ -117.973957707972104, 34.106796569680313, 0.0 ], [ -117.973966826085999, 34.106796484464319, 0.0 ], [ -117.973966911302, 34.106807477330577, 0.0 ], [ -117.974044713526396, 34.10680696603449, 0.0 ] ], [ [ -118.007432263718599, 34.105074987887193, 0.0 ], [ -118.007435199349999, 34.105068980439917, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7269", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376968528136103, 33.872542766599352, 0.0 ], [ -118.376899097454199, 33.872542473992688, 0.0 ] ], [ [ -118.376899097454199, 33.872542473992688, 0.0 ], [ -118.376863518134002, 33.872542324048268, 0.0 ] ], [ [ -118.376863518134002, 33.872542324048268, 0.0 ], [ -118.376856179594498, 33.872542307104872, 0.0 ], [ -118.376856346512497, 33.87245577292876, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7268", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.432061134731001, 34.010077832089721, 0.0 ], [ -118.432061158959399, 34.010077816174451, 0.0 ], [ -118.432068027435903, 34.010073406782119, 0.0 ], [ -118.432074589069202, 34.010069231197278, 0.0 ], [ -118.432080724622494, 34.01007562239861, 0.0 ], [ -118.432139012378698, 34.010062584347892, 0.0 ], [ -118.432144571782104, 34.010059614920948, 0.0 ] ], [ [ -118.432144571782104, 34.010059614920948, 0.0 ], [ -118.4321942376436, 34.010033087048157, 0.0 ] ], [ [ -118.4321942376436, 34.010033087048157, 0.0 ], [ -118.432300103685805, 34.009976541146763, 0.0 ], [ -118.432303774568993, 34.009981210392951, 0.0 ] ], [ [ -118.432303774568993, 34.009981210392951, 0.0 ], [ -118.4323291565521, 34.010013495447737, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7267", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.413830081237904, 33.991932801309133, 0.0 ], [ -118.413835551020696, 33.991929764190658, 0.0 ], [ -118.413849221821707, 33.991929261706048, 0.0 ], [ -118.413949313437499, 33.991856969301622, 0.0 ] ], [ [ -118.413949313437499, 33.991856969301622, 0.0 ], [ -118.414017725526193, 33.991805940441601, 0.0 ] ], [ [ -118.414017725526193, 33.991805940441601, 0.0 ], [ -118.414096171604399, 33.99174892519212, 0.0 ], [ -118.414098710617097, 33.991747079814949, 0.0 ], [ -118.414111169081806, 33.991738000222753, 0.0 ], [ -118.414113640287596, 33.991736179888832, 0.0 ], [ -118.414110551543203, 33.991732959679773, 0.0 ] ], [ [ -118.414110551543203, 33.991732959679773, 0.0 ], [ -118.414207416658002, 33.991695013175793, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7266", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3960035008445, 33.972073027911691, 0.0 ], [ -118.396013471118593, 33.972073113127678, 0.0 ], [ -118.396151241203896, 33.972072607157223, 0.0 ], [ -118.396150798861498, 33.971956964762363, 0.0 ] ], [ [ -118.396150798861498, 33.971956964762363, 0.0 ], [ -118.396150480370196, 33.971873700887883, 0.0 ], [ -118.396182158491598, 33.97187354623064, 0.0 ], [ -118.396182105673404, 33.971862381415647, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7265", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378507800205597, 33.945177744848358, 0.0 ], [ -118.378483087560497, 33.945177830064402, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7264", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.379321187096707, 33.94531272702072, 0.0 ], [ -118.379327748730105, 33.94531272702072, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7263", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.380100277759595, 33.945729277452948, 0.0 ], [ -118.380100765121, 33.945828160504732, 0.0 ] ], [ [ -118.380059438615902, 33.945564571809058, 0.0 ], [ -118.380099464988405, 33.945564369921676, 0.0 ], [ -118.380100277759595, 33.945729277452948, 0.0 ] ], [ [ -118.379321464648797, 33.945376756166553, 0.0 ], [ -118.379322294904995, 33.945568289858493, 0.0 ], [ -118.379977885786801, 33.945564983150057, 0.0 ] ], [ [ -118.379977885786801, 33.945564983150057, 0.0 ], [ -118.380059438615902, 33.945564571809058, 0.0 ] ], [ [ -118.379321187096707, 33.94531272702072, 0.0 ], [ -118.379321464648797, 33.945376756166553, 0.0 ] ], [ [ -118.378507800205597, 33.945177744848358, 0.0 ], [ -118.378509078445902, 33.945315113069228, 0.0 ], [ -118.378562843508405, 33.94531505098486, 0.0 ] ], [ [ -118.378562843508405, 33.94531505098486, 0.0 ], [ -118.378582875517495, 33.945315027853241, 0.0 ], [ -118.378714960345206, 33.945314601773191, 0.0 ], [ -118.379321187096707, 33.94531272702072, 0.0 ] ], [ [ -118.378524332113102, 33.945177659632357, 0.0 ], [ -118.378507800205597, 33.945177744848358, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7262", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.3305829423646, 33.988689103318997, 0.0 ], [ -118.330583050855793, 33.988716581675121, 0.0 ] ], [ [ -118.3305828230244, 33.988658877127257, 0.0 ], [ -118.3305829423646, 33.988689103318997, 0.0 ] ], [ [ -118.330577795279297, 33.98719913176415, 0.0 ], [ -118.330577795279297, 33.98721259087106, 0.0 ], [ -118.330584527344698, 33.98721259087106, 0.0 ], [ -118.3305828230244, 33.988658877127257, 0.0 ] ], [ [ -118.3302630073091, 33.987203387541157, 0.0 ], [ -118.3302630073091, 33.987210460470642, 0.0 ], [ -118.3302592578043, 33.987210460470642, 0.0 ], [ -118.330259195744105, 33.987203416637087, 0.0 ] ], [ [ -118.330259195744105, 33.987203416637087, 0.0 ], [ -118.330259087372298, 33.98719111643463, 0.0 ], [ -118.330577795279297, 33.987190008626349, 0.0 ], [ -118.330577795279297, 33.98719913176415, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7261", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.380274924769296, 33.988879160533543, 0.0 ], [ -118.380274839553195, 33.988865185106562, 0.0 ], [ -118.380434619586794, 33.98886441816245, 0.0 ], [ -118.380434619586794, 33.988859049553369, 0.0 ], [ -118.380444675077001, 33.988859049553369, 0.0 ] ], [ [ -118.380444675077001, 33.988859049553369, 0.0 ], [ -118.380443737700702, 33.988684271500617, 0.0 ], [ -118.380451918438396, 33.988558066577987, 0.0 ], [ -118.380465808649305, 33.988469953215542, 0.0 ], [ -118.380492310831002, 33.988378942508383, 0.0 ], [ -118.380541906553404, 33.988257168818762, 0.0 ], [ -118.380605136838696, 33.988139570714068, 0.0 ], [ -118.380651750000496, 33.988073954380219, 0.0 ], [ -118.380703305691299, 33.988011320607093, 0.0 ], [ -118.380708418652404, 33.988014814463767, 0.0 ], [ -118.380710719484895, 33.988011746687192, 0.0 ], [ -118.380747703236693, 33.98803782278862, 0.0 ], [ -118.380913533607497, 33.987837479930477, 0.0 ], [ -118.380824848979103, 33.987763588415888, 0.0 ], [ -118.380817876999501, 33.987769438827968, 0.0 ] ], [ [ -118.380825882179394, 33.987797744885107, 0.0 ], [ -118.380891296434498, 33.987851658822862, 0.0 ], [ -118.380798059331198, 33.98796579187227, 0.0 ], [ -118.380748264047995, 33.98793583467431, 0.0 ], [ -118.380777957395395, 33.987899486633729, 0.0 ] ], [ [ -118.380817876999501, 33.987769438827968, 0.0 ], [ -118.380804825882194, 33.987780390431872, 0.0 ], [ -118.380825882179394, 33.987797744885107, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7260", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376974927004397, 33.872524698156397, 0.0 ], [ -118.376975366045301, 33.872598622734152, 0.0 ] ], [ [ -118.376988830185894, 33.872483666326829, 0.0 ], [ -118.376974684326896, 33.872483836758057, 0.0 ], [ -118.376974927004397, 33.872524698156397, 0.0 ] ], [ [ -118.376898702078194, 33.87245836400907, 0.0 ], [ -118.376988744972095, 33.872458271953377, 0.0 ], [ -118.376988830185894, 33.872483666326829, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7259", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394501568528696, 33.872653971070648, 0.0 ], [ -118.394501483312695, 33.872648517245423, 0.0 ], [ -118.394633312492303, 33.872648091165367, 0.0 ], [ -118.394633312492303, 33.872653459774611, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7258", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.394419590719394, 33.872697686887861, 0.0 ], [ -118.394426322784796, 33.872697686887861, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7257", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.384983269913207, 33.872757877458433, 0.0 ], [ -118.387780325547396, 33.872767137942454, 0.0 ], [ -118.388616039035099, 33.872754014675579, 0.0 ], [ -118.388623964124804, 33.8727616841173, 0.0 ], [ -118.388636232993903, 33.872761431674107, 0.0 ] ], [ [ -118.388636232993903, 33.872761431674107, 0.0 ], [ -118.389506035126303, 33.872743533105407, 0.0 ], [ -118.3895058646942, 33.87271847959618, 0.0 ], [ -118.391206094683696, 33.87269035831028, 0.0 ], [ -118.391206179899797, 33.872717542219959, 0.0 ], [ -118.394419590719394, 33.872697686887861, 0.0 ] ], [ [ -118.381435232119401, 33.87274601413467, 0.0 ], [ -118.382272217797194, 33.872748901714637, 0.0 ], [ -118.384983269913207, 33.872757877458433, 0.0 ] ], [ [ -118.379010370757499, 33.872727017954681, 0.0 ], [ -118.379010404279299, 33.872735096719687, 0.0 ], [ -118.380971565715697, 33.872744896561791, 0.0 ], [ -118.381040761122307, 33.872744726129767, 0.0 ], [ -118.381407701295501, 33.872745919154042, 0.0 ], [ -118.381435232119401, 33.87274601413467, 0.0 ] ], [ [ -118.379006825206602, 33.872691295686487, 0.0 ], [ -118.379010233847197, 33.87269402259907, 0.0 ], [ -118.379010370757499, 33.872727017954681, 0.0 ] ], [ [ -118.394419590719394, 33.872697686887861, 0.0 ], [ -118.394419335071404, 33.87265431193471, 0.0 ], [ -118.394501568528696, 33.872653971070648, 0.0 ] ], [ [ -118.394633312492303, 33.872653459774611, 0.0 ], [ -118.394633482924405, 33.872678172419739, 0.0 ], [ -118.394709239964399, 33.872677916771721, 0.0 ] ], [ [ -118.394501568528696, 33.872653971070648, 0.0 ], [ -118.394633312492303, 33.872653459774611, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7256", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.228522580923993, 33.79485711532017, 0.0 ], [ -118.228196714871402, 33.794780420904111, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7255", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.379010370757499, 33.872727017954681, 0.0 ], [ -118.380995426200798, 33.872736630608031, 0.0 ], [ -118.381005311258903, 33.87274208443322, 0.0 ], [ -118.381074506665399, 33.872741828785202, 0.0 ], [ -118.381084306507404, 33.872736289743983, 0.0 ], [ -118.3814352260692, 33.87273756798421, 0.0 ], [ -118.381435232119401, 33.87274601413467, 0.0 ] ], [ [ -118.379006825206602, 33.872699732072213, 0.0 ], [ -118.379006910422603, 33.872727001197923, 0.0 ], [ -118.379010370757499, 33.872727017954681, 0.0 ] ], [ [ -118.379006825206602, 33.872691295686487, 0.0 ], [ -118.379006825206602, 33.872699732072213, 0.0 ] ], [ [ -118.378992400229293, 33.87189445397388, 0.0 ], [ -118.379002649621697, 33.871910802178391, 0.0 ], [ -118.379006825206602, 33.872691295686487, 0.0 ] ], [ [ -118.378992338483599, 33.871894355486901, 0.0 ], [ -118.378992400229293, 33.87189445397388, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7254", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378997025364498, 33.872699732072213, 0.0 ], [ -118.3789575704849, 33.872699817288002, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7253", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378992400229293, 33.87189445397388, 0.0 ], [ -118.378997025364498, 33.872699732072213, 0.0 ] ], [ [ -118.378997025364498, 33.872699732072213, 0.0 ], [ -118.379006825206602, 33.872699732072213, 0.0 ] ], [ [ -118.378992338483599, 33.871883703484698, 0.0 ], [ -118.378992400229293, 33.87189445397388, 0.0 ] ], [ [ -118.378773046521403, 33.858367175990963, 0.0 ], [ -118.378895618303204, 33.858367761314668, 0.0 ], [ -118.378910275458296, 33.858375430756269, 0.0 ], [ -118.378958592940407, 33.858586084752559, 0.0 ], [ -118.378965665869899, 33.861394378623089, 0.0 ], [ -118.378982027345401, 33.862472531681718, 0.0 ], [ -118.378990719379203, 33.868812177334803, 0.0 ], [ -118.378994128019897, 33.870994303905597, 0.0 ], [ -118.378992338483599, 33.871883703484698, 0.0 ] ], [ [ -118.378770101747307, 33.858367161928612, 0.0 ], [ -118.378773046521403, 33.858367175990963, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7251", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.376899097454199, 33.872542473992688, 0.0 ], [ -118.376900881755802, 33.872922060663022, 0.0 ], [ -118.376904460828399, 33.873736299714288, 0.0 ], [ -118.376964112041094, 33.873847762265633, 0.0 ], [ -118.376976468363694, 33.874783860222543, 0.0 ], [ -118.376995215887504, 33.874799199105709, 0.0 ], [ -118.377001862737004, 33.87758243946697, 0.0 ], [ -118.377004163569495, 33.880948386958742, 0.0 ], [ -118.377023933685606, 33.88469141532979, 0.0 ], [ -118.377027597974404, 33.887417390527041, 0.0 ], [ -118.378751177152793, 33.88741193670181, 0.0 ], [ -118.378756016988802, 33.888189758369961, 0.0 ], [ -118.378924051936494, 33.888189230197419, 0.0 ] ], [ [ -118.378924051936494, 33.888189230197419, 0.0 ], [ -118.379065728459196, 33.888188784693497, 0.0 ] ], [ [ -118.379065728459196, 33.888188784693497, 0.0 ], [ -118.379151393332705, 33.888188515238213, 0.0 ] ], [ [ -118.376898702078194, 33.87245836400907, 0.0 ], [ -118.376899097454199, 33.872542473992688, 0.0 ] ], [ [ -118.376898617531097, 33.872440376674803, 0.0 ], [ -118.376898702078194, 33.87245836400907, 0.0 ] ], [ [ -118.376898294922498, 33.872371745936547, 0.0 ], [ -118.376898617531097, 33.872440376674803, 0.0 ] ], [ [ -118.378992338483599, 33.871883703484698, 0.0 ], [ -118.376896024442701, 33.87188873122976, 0.0 ], [ -118.376898294922498, 33.872371745936547, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7250", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378838524528106, 33.901806595514493, 0.0 ], [ -118.378838499687802, 33.901801099756639, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7249", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378834843726594, 33.901574391282807, 0.0 ], [ -118.378834589794494, 33.90151393667621, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7248", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378835909151505, 33.901806582711131, 0.0 ], [ -118.378835909150098, 33.901798316757329, 0.0 ], [ -118.378825938874797, 33.901791499477071, 0.0 ], [ -118.378828253068505, 33.901574411995199, 0.0 ], [ -118.378834843726594, 33.901574391282807, 0.0 ] ], [ [ -118.378834843726594, 33.901574391282807, 0.0 ], [ -118.378844729713805, 33.901574360214063, 0.0 ], [ -118.378844456472805, 33.901513908357018, 0.0 ], [ -118.378834589794494, 33.90151393667621, 0.0 ] ], [ [ -118.378834589794494, 33.90151393667621, 0.0 ], [ -118.3788279798394, 33.901513960138161, 0.0 ], [ -118.378827656932899, 33.901442517034837, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7247", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.378514020974904, 33.901907522213797, 0.0 ], [ -118.378507374125604, 33.901907522213797, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7246", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378514020974904, 33.901907522213797, 0.0 ], [ -118.378603234034998, 33.901911973378049, 0.0 ], [ -118.378670392367795, 33.901807137744711, 0.0 ], [ -118.378838524528106, 33.901806595514493, 0.0 ] ], [ [ -118.378093683455305, 33.901844992679607, 0.0 ], [ -118.378314359845007, 33.901844803224677, 0.0 ], [ -118.378405540984204, 33.901858096923469, 0.0 ], [ -118.378514020974904, 33.901907522213797, 0.0 ] ], [ [ -118.378838524528106, 33.901806595514493, 0.0 ], [ -118.378841819865798, 33.901806585023721, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7245", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.357100983591806, 33.9022654944742, 0.0 ], [ -118.357101541061098, 33.902334936503728, 0.0 ], [ -118.357104836422593, 33.902334926741659, 0.0 ] ], [ [ -118.357100553637395, 33.902211936587157, 0.0 ], [ -118.357100983591806, 33.9022654944742, 0.0 ] ], [ [ -118.357141583583001, 33.901862118789147, 0.0 ], [ -118.357142822863906, 33.902137805189767, 0.0 ], [ -118.357099959207204, 33.902137890401967, 0.0 ], [ -118.357100553637395, 33.902211936587157, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7244", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378426476420799, 33.906580857970667, 0.0 ], [ -118.378426540921197, 33.906595142969209, 0.0 ], [ -118.378466009158501, 33.9065950190652, 0.0 ] ], [ [ -118.378466009158501, 33.9065950190652, 0.0 ], [ -118.378479269345306, 33.906594977437059, 0.0 ], [ -118.378479145257202, 33.906567499306973, 0.0 ], [ -118.378558237866997, 33.906567250965672, 0.0 ] ], [ [ -118.378640278921495, 33.906561497614348, 0.0 ], [ -118.378426392036303, 33.906562169213117, 0.0 ], [ -118.378426476420799, 33.906580857970667, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7243", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.308988122271401, 33.902235814533817, 0.0 ], [ -118.308988375520499, 33.902304509993897, 0.0 ], [ -118.308994966251802, 33.902304493100011, 0.0 ] ], [ [ -118.308988061491604, 33.902219327623463, 0.0 ], [ -118.308978175404803, 33.902219352963392, 0.0 ], [ -118.308978236182696, 33.902235839873818, 0.0 ], [ -118.308988122271401, 33.902235814533817, 0.0 ] ], [ [ -118.308997198448694, 33.901978791831418, 0.0 ], [ -118.308997179605498, 33.901994016472052, 0.0 ], [ -118.308987294547407, 33.901994016472052, 0.0 ], [ -118.308988061491604, 33.902219327623463, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7242", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.339529596039498, 33.901961670122077, 0.0 ], [ -118.339528418102802, 33.901670875641948, 0.0 ] ], [ [ -118.339528418102802, 33.901670875641948, 0.0 ], [ -118.3395514855644, 33.901670810666133, 0.0 ] ], [ [ -118.3395514855644, 33.901670810666133, 0.0 ], [ -118.339551505753903, 33.901670810609289, 0.0 ], [ -118.339567962152103, 33.90167076425525, 0.0 ], [ -118.339567806301901, 33.901632295708858, 0.0 ] ], [ [ -118.339567806301901, 33.901632295708858, 0.0 ], [ -118.339567772901106, 33.901624051391003, 0.0 ], [ -118.339534819544994, 33.901624144213983, 0.0 ], [ -118.339534396555194, 33.901519727223892, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7241", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378771619348399, 33.966517675147998, 0.0 ], [ -118.378789663890004, 33.96651749719711, 0.0 ] ], [ [ -118.378789663890004, 33.96651749719711, 0.0 ], [ -118.378793130297296, 33.966517463012288, 0.0 ], [ -118.378792981567003, 33.966486476110973, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7240", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378856347853599, 33.960214406053957, 0.0 ], [ -118.378920685609302, 33.960214204429171, 0.0 ], [ -118.378920405377997, 33.960151191074679, 0.0 ] ], [ [ -118.378920405377997, 33.960151191074679, 0.0 ], [ -118.378920356670903, 33.960140238709783, 0.0 ] ], [ [ -118.378920356670903, 33.960140238709783, 0.0 ], [ -118.378916927869199, 33.960140249480368, 0.0 ], [ -118.378916878142505, 33.960130597561538, 0.0 ], [ -118.378920182037206, 33.960130587098789, 0.0 ] ], [ [ -118.378920182037206, 33.960130587098789, 0.0 ], [ -118.378920146286305, 33.960119645348527, 0.0 ] ], [ [ -118.378920146286305, 33.960119645348527, 0.0 ], [ -118.378919856279794, 33.960030887378153, 0.0 ], [ -118.379057354231193, 33.960030503529438, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7239", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -118.378468093169801, 33.952539404797193, 0.0 ], [ -118.378468085569594, 33.952546273074979, 0.0 ] ], [ [ -118.378504324982998, 33.952539257381517, 0.0 ], [ -118.378468093169801, 33.952539404797193, 0.0 ] ], [ [ -118.378620370565301, 33.952525240345381, 0.0 ], [ -118.378620336926602, 33.952529702948709, 0.0 ], [ -118.378610044720403, 33.952529716082573, 0.0 ], [ -118.378602545023995, 33.952535656818817, 0.0 ], [ -118.3785214582701, 33.952535911312047, 0.0 ], [ -118.378521464852795, 33.95253920943447, 0.0 ], [ -118.378504324982998, 33.952539257381517, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7238", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.379981008925895, 33.947424429585368, 0.0 ], [ -118.380181771205301, 33.947424179725957, 0.0 ], [ -118.380181847312002, 33.947440949226433, 0.0 ], [ -118.380264749340199, 33.947440687878199, 0.0 ], [ -118.380264675247005, 33.947424365564501, 0.0 ], [ -118.381918777966604, 33.94741889533443, 0.0 ], [ -118.381918861878702, 33.94743581355965, 0.0 ], [ -118.382001234732002, 33.947435552693562, 0.0 ], [ -118.382001160852496, 33.947419351451018, 0.0 ], [ -118.383917577206802, 33.947434250255533, 0.0 ], [ -118.383917535130394, 33.94741441807215, 0.0 ], [ -118.384410651234404, 33.947413254230689, 0.0 ], [ -118.384410742334495, 33.947433106598879, 0.0 ], [ -118.386528823105706, 33.947418526342148, 0.0 ], [ -118.386559204651604, 33.947401505393017, 0.0 ], [ -118.389299991616198, 33.947392436821488, 0.0 ], [ -118.389307106087003, 33.947400270696242, 0.0 ], [ -118.389636598134899, 33.947399451855802, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7237", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "LineString", "coordinates": [ [ -118.379981099939499, 33.947461108048472, 0.0 ], [ -118.379981099939499, 33.94746664708962, 0.0 ] ] } },
{ "type": "Feature", "properties": { "Name": "Line 7236", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": -1, "vi
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment